Changeset 202335 in webkit


Ignore:
Timestamp:
Jun 22, 2016 11:10:45 AM (8 years ago)
Author:
Nikita Vasilyev
Message:

Web Inspector: Simplify CSS rule for ContentBrowser navigation bar items
https://bugs.webkit.org/show_bug.cgi?id=159000

Reviewed by Timothy Hatcher.

  • UserInterface/Views/ContentBrowser.css:

(.content-browser > .navigation-bar > .item):
Both these values result in 28px, but 100% is simplier.

Location:
trunk/Source/WebInspectorUI
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r202294 r202335  
     12016-06-22  Nikita Vasilyev  <nvasilyev@apple.com>
     2
     3        Web Inspector: Simplify CSS rule for ContentBrowser navigation bar items
     4        https://bugs.webkit.org/show_bug.cgi?id=159000
     5
     6        Reviewed by Timothy Hatcher.
     7
     8        * UserInterface/Views/ContentBrowser.css:
     9        (.content-browser > .navigation-bar > .item):
     10        Both these values result in 28px, but `100%` is simplier.
     11
    1122016-06-21  Nikita Vasilyev  <nvasilyev@apple.com>
    213
  • trunk/Source/WebInspectorUI/UserInterface/Views/ContentBrowser.css

    r202294 r202335  
    3535
    3636.content-browser > .navigation-bar > .item {
    37     height: calc(var(--navigation-bar-height) - 1px);
     37    height: 100%;
    3838}
Note: See TracChangeset for help on using the changeset viewer.