Changeset 205307 in webkit


Ignore:
Timestamp:
Sep 1, 2016 12:32:46 PM (8 years ago)
Author:
Nikita Vasilyev
Message:

REGRESSION (r201454): Web Inspector: Text caret isn't visible when editing an attribute
https://bugs.webkit.org/show_bug.cgi?id=160986
<rdar://problem/27916207>

Reviewed by Brian Burg.

  • UserInterface/Views/DOMTreeOutline.css:

(.tree-outline.dom li .selection-area):
(.tree-outline.dom li > span):
Place selection area under the edited field, the way it was before r201454.

Location:
trunk/Source/WebInspectorUI
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r205300 r205307  
     12016-09-01  Nikita Vasilyev  <nvasilyev@apple.com>
     2
     3        REGRESSION (r201454): Web Inspector: Text caret isn't visible when editing an attribute
     4        https://bugs.webkit.org/show_bug.cgi?id=160986
     5        <rdar://problem/27916207>
     6
     7        Reviewed by Brian Burg.
     8
     9        * UserInterface/Views/DOMTreeOutline.css:
     10        (.tree-outline.dom li .selection-area):
     11        (.tree-outline.dom li > span):
     12        Place selection area under the edited field, the way it was before r201454.
     13
    1142016-09-01  Brian Burg  <bburg@apple.com>
    215
  • trunk/Source/WebInspectorUI/UserInterface/Views/DOMTreeOutline.css

    r202634 r205307  
    4949    right: 0;
    5050    height: 15px;
    51     z-index: 10;
     51    z-index: -1;
    5252}
    5353
     
    6363.tree-outline.dom:focus li.selected .selection-area {
    6464    background-color: hsl(209, 100%, 49%);
    65 }
    66 
    67 .tree-outline.dom li > span {
    68     position: relative;
    69     z-index: 20;
    7065}
    7166
Note: See TracChangeset for help on using the changeset viewer.