Changeset 196236 in webkit


Ignore:
Timestamp:
Feb 6, 2016 9:55:12 PM (8 years ago)
Author:
Nikita Vasilyev
Message:

REGRESSION (r195432): Web Inspector: bottom right section of the styles sidebar is 1px taller than the console prompt
https://bugs.webkit.org/show_bug.cgi?id=153959
<rdar://problem/24541053>

Reviewed by Timothy Hatcher.

  • UserInterface/Views/CSSStyleDetailsSidebarPanel.css:

(.sidebar > .panel.details.css-style > .content ~ .options-container):
(.sidebar > .panel.details.css-style > .content ~ .class-list-container)::
Revert the height to what it used to be prior r195432.

Location:
trunk/Source/WebInspectorUI
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r196207 r196236  
     12016-02-06  Nikita Vasilyev  <nvasilyev@apple.com>
     2
     3        REGRESSION (r195432): Web Inspector: bottom right section of the styles sidebar is 1px taller than the console prompt
     4        https://bugs.webkit.org/show_bug.cgi?id=153959
     5        <rdar://problem/24541053>
     6
     7        Reviewed by Timothy Hatcher.
     8
     9        * UserInterface/Views/CSSStyleDetailsSidebarPanel.css:
     10        (.sidebar > .panel.details.css-style > .content ~ .options-container):
     11        (.sidebar > .panel.details.css-style > .content ~ .class-list-container)::
     12        Revert the height to what it used to be prior r195432.
     13
    1142016-02-05  Devin Rousso  <dcrousso+webkit@gmail.com>
    215
  • trunk/Source/WebInspectorUI/UserInterface/Views/CSSStyleDetailsSidebarPanel.css

    r195432 r196236  
    7777.sidebar > .panel.details.css-style > .content ~ .options-container {
    7878    bottom: 0;
    79     height: 30px;
     79    height: 29px;
    8080}
    8181
     
    124124.sidebar > .panel.details.css-style > .content ~ .class-list-container {
    125125    flex-wrap: wrap;
    126     bottom: 30px;
     126    bottom: 29px;
    127127    max-height: 65px;
    128128    padding: 3px 2px;
Note: See TracChangeset for help on using the changeset viewer.