Changeset 182989 in webkit
- Timestamp:
- Apr 18, 2015, 9:19:54 PM (10 years ago)
- Location:
- trunk/Source/WebInspectorUI
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebInspectorUI/ChangeLog
r182982 r182989 1 2015-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 1 14 2015-04-17 Jono Wells <jonowells@apple.com> 2 15 -
trunk/Source/WebInspectorUI/UserInterface/Views/ObjectTreePropertyTreeElement.css
r182982 r182989 134 134 display: inline-block; 135 135 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); 138 138 border-radius: 3px; 139 139 140 140 padding: 0 10px 1px 0; 141 141 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); 142 146 } 143 147
Note:
See TracChangeset
for help on using the changeset viewer.