Changeset 186163 in webkit


Ignore:
Timestamp:
Jun 30, 2015 7:07:37 PM (9 years ago)
Author:
commit-queue@webkit.org
Message:

Web Inspector: add " = $0" hint after selected element in main DOMTreeOutline
https://bugs.webkit.org/show_bug.cgi?id=145739

Patch by Devin Rousso <Devin Rousso> on 2015-06-30
Reviewed by Timothy Hatcher.

  • UserInterface/Views/DOMTreeOutline.css: Adds a semi-opaque " = $0" to the selected element in the DOM tree.

(.dom-tree-outline li.selected > span::after):
(.dom-tree-outline:focus li.selected > span::after):

Location:
trunk/Source/WebInspectorUI
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r186141 r186163  
     12015-06-30  Devin Rousso  <drousso@apple.com>
     2
     3        Web Inspector: add " = $0" hint after selected element in main DOMTreeOutline
     4        https://bugs.webkit.org/show_bug.cgi?id=145739
     5
     6        Reviewed by Timothy Hatcher.
     7
     8        * UserInterface/Views/DOMTreeOutline.css: Adds a semi-opaque " = $0" to the selected element in the DOM tree.
     9        (.dom-tree-outline li.selected > span::after):
     10        (.dom-tree-outline:focus li.selected > span::after):
     11
    1122015-06-30  Joseph Pecoraro  <pecoraro@apple.com>
    213
  • trunk/Source/WebInspectorUI/UserInterface/Views/DOMTreeOutline.css

    r183579 r186163  
    7171.dom-tree-outline:focus li.selected .selection {
    7272    background-color: rgb(0, 128, 252);
     73}
     74
     75.dom-tree-outline li.selected > span::after {
     76    content: " = $0";
     77    opacity: 0.33;
     78}
     79
     80.dom-tree-outline:focus li.selected > span::after {
     81    opacity: 0.9;
    7382}
    7483
Note: See TracChangeset for help on using the changeset viewer.