Changeset 182989 in webkit


Ignore:
Timestamp:
Apr 18, 2015, 9:19:54 PM (10 years ago)
Author:
Nikita Vasilyev
Message:

Web Inspector: Make prototype pill’s background semi-transparent
https://bugs.webkit.org/show_bug.cgi?id=143928

Reviewed by Timothy Hatcher.

  • UserInterface/Views/ObjectTreePropertyTreeElement.css:

(.object-tree-property.prototype-property):

(.object-tree-property.prototype-property:hover, .object-tree-property.prototype-property:focus):
Slightly highlight the prototype pill when hovering over.

Location:
trunk/Source/WebInspectorUI
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r182982 r182989  
     12015-04-18  Nikita Vasilyev  <nvasilyev@apple.com>
     2
     3        Web Inspector: Make prototype pill’s background semi-transparent
     4        https://bugs.webkit.org/show_bug.cgi?id=143928
     5
     6        Reviewed by Timothy Hatcher.
     7
     8        * UserInterface/Views/ObjectTreePropertyTreeElement.css:
     9        (.object-tree-property.prototype-property):
     10
     11        (.object-tree-property.prototype-property:hover, .object-tree-property.prototype-property:focus):
     12        Slightly highlight the prototype pill when hovering over.
     13
    1142015-04-17  Jono Wells  <jonowells@apple.com>
    215
  • trunk/Source/WebInspectorUI/UserInterface/Views/ObjectTreePropertyTreeElement.css

    r182982 r182989  
    134134    display: inline-block;
    135135
    136     border: 1px solid rgb(222, 222, 222);
    137     background-color: rgb(242, 242, 242);
     136    border: 1px solid hsla(0, 0%, 0%, 0.06);
     137    background-color: hsla(0, 0%, 0%, 0.03);
    138138    border-radius: 3px;
    139139
    140140    padding: 0 10px 1px 0;
    141141    margin: 3px 0 2px 0;
     142}
     143
     144.object-tree-property.prototype-property:hover, .object-tree-property.prototype-property:focus {
     145    border-color: hsla(0, 0%, 0%, 0.1);
    142146}
    143147
Note: See TracChangeset for help on using the changeset viewer.