⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 238671 in webkit


Ignore:
Timestamp:
Nov 29, 2018, 9:50:21 AM (8 years ago)
Author:
Matt Baker
Message:

Web Inspector: Elements: selecting more than one DOM node causes the scope highlight to contrast
https://bugs.webkit.org/show_bug.cgi?id=192118
<rdar://problem/46325664>

Reviewed by Devin Rousso.

Use an alpha blended border for the "selected" DOM scope highlight,
matching the "hovered" scope highlight.

  • UserInterface/Views/DOMTreeOutline.css:

(.tree-outline.dom li.selected + ol.children.expanded):

Location:
trunk/Source/WebInspectorUI
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r238660 r238671  
     12018-11-29  Matt Baker  <mattbaker@apple.com>
     2
     3        Web Inspector: Elements: selecting more than one DOM node causes the scope highlight to contrast
     4        https://bugs.webkit.org/show_bug.cgi?id=192118
     5        <rdar://problem/46325664>
     6
     7        Reviewed by Devin Rousso.
     8
     9        Use an alpha blended border for the "selected" DOM scope highlight,
     10        matching the "hovered" scope highlight.
     11
     12        * UserInterface/Views/DOMTreeOutline.css:
     13        (.tree-outline.dom li.selected + ol.children.expanded):
     14
    1152018-11-28  Joseph Pecoraro  <pecoraro@apple.com>
    216
  • trunk/Source/WebInspectorUI/UserInterface/Views/DOMTreeOutline.css

    r237613 r238671  
    128128
    129129.tree-outline.dom li.selected + ol.children.expanded {
    130     border-color: hsl(0, 0%, 83%);
     130    border-color: hsl(0, 0%, 65%, 0.5);
    131131}
    132132
     
    326326    }
    327327
    328     .tree-outline.dom li.selected + ol.children.expanded {
    329         border-color: hsl(0, 0%, 27%);
    330     }
    331 
    332328    .tree-outline.dom .shadow {
    333329        color: var(--text-color);
Note: See TracChangeset for help on using the changeset viewer.