⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 185759 in webkit


Ignore:
Timestamp:
Jun 19, 2015, 12:07:24 PM (11 years ago)
Author:
commit-queue@webkit.org
Message:

Web Inspector: Overlapping dashboard views causing lots of layers in source view
https://bugs.webkit.org/show_bug.cgi?id=146153

Patch by Joseph Pecoraro <Joseph Pecoraro> on 2015-06-19
Reviewed by Darin Adler.

  • UserInterface/Views/DashboardContainerView.css:

(.toolbar .dashboard:not(.visible)):
Hide non-visible dashboard views. The !important is used
to override more specific toolbar .dashboard.foo styles.

Location:
trunk/Source/WebInspectorUI
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r185757 r185759  
     12015-06-19  Joseph Pecoraro  <pecoraro@apple.com>
     2
     3        Web Inspector: Overlapping dashboard views causing lots of layers in source view
     4        https://bugs.webkit.org/show_bug.cgi?id=146153
     5
     6        Reviewed by Darin Adler.
     7
     8        * UserInterface/Views/DashboardContainerView.css:
     9        (.toolbar .dashboard:not(.visible)):
     10        Hide non-visible dashboard views. The !important is used
     11        to override more specific toolbar .dashboard.foo styles.
     12
    1132015-06-19  Devin Rousso  <drousso@apple.com>
    214
  • trunk/Source/WebInspectorUI/UserInterface/Views/DashboardContainerView.css

    r185135 r185759  
    7474
    7575.toolbar .dashboard:not(.visible) {
    76     opacity: 0;
     76    display: none !important;
    7777}
    7878
Note: See TracChangeset for help on using the changeset viewer.