Changeset 172285 in webkit


Ignore:
Timestamp:
Aug 7, 2014 3:14:44 PM (10 years ago)
Author:
commit-queue@webkit.org
Message:

Web Inspector: Dashboard contents shift when window changes active state
https://bugs.webkit.org/show_bug.cgi?id=135724

Patch by Joseph Pecoraro <Joseph Pecoraro> on 2014-08-07
Reviewed by Timothy Hatcher.

The container was getting a 1px border when inactive and none when active.
Give it a transparent border when active so contents don't change size.

  • UserInterface/Views/DashboardContainerView.css:

(.toolbar .dashboard-container):

Location:
trunk/Source/WebInspectorUI
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r172263 r172285  
     12014-08-07  Joseph Pecoraro  <pecoraro@apple.com>
     2
     3        Web Inspector: Dashboard contents shift when window changes active state
     4        https://bugs.webkit.org/show_bug.cgi?id=135724
     5
     6        Reviewed by Timothy Hatcher.
     7
     8        The container was getting a 1px border when inactive and none when active.
     9        Give it a transparent border when active so contents don't change size.
     10
     11        * UserInterface/Views/DashboardContainerView.css:
     12        (.toolbar .dashboard-container):
     13
    1142014-08-07  Timothy Hatcher  <timothy@apple.com>
    215
  • trunk/Source/WebInspectorUI/UserInterface/Views/DashboardContainerView.css

    r172044 r172285  
    3232    background-color: rgb(252, 252, 252);
    3333
     34    border: 1px solid transparent;
    3435    box-shadow: rgba(0, 0, 0, 0.15) 0 1px 0, inset white 0 1px 0;
    3536
Note: See TracChangeset for help on using the changeset viewer.