Changeset 195910 in webkit


Ignore:
Timestamp:
Jan 30, 2016 1:49:31 PM (8 years ago)
Author:
commit-queue@webkit.org
Message:

Web Inspector: Object tree parent items are misaligned
https://bugs.webkit.org/show_bug.cgi?id=153699
<rdar://problem/24423683>

Patch by Devin Rousso <Devin Rousso> on 2016-01-30
Reviewed by Darin Adler.

  • UserInterface/Views/ObjectTreeView.css:

(.object-tree .object-tree):
Ensure that toplevel Object preview trees are displayed properly while also
making child trees inline.

  • UserInterface/Views/TreeOutline.css:

(.tree-outline:not(.hide-disclosure-buttons) .item:not(.parent) > .icon):
(.tree-outline:not(.hide-disclosure-buttons) .item:not(.parent) .icon): Deleted.
This would apply to all .icon elements contained within a non-parent item,
which is not the desired effect. Instead, this should only apply to only the
.icon element of that particular non-parent item.

Location:
trunk/Source/WebInspectorUI
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r195881 r195910  
     12016-01-30  Devin Rousso  <dcrousso+webkit@gmail.com>
     2
     3        Web Inspector: Object tree parent items are misaligned
     4        https://bugs.webkit.org/show_bug.cgi?id=153699
     5        <rdar://problem/24423683>
     6
     7        Reviewed by Darin Adler.
     8
     9        * UserInterface/Views/ObjectTreeView.css:
     10        (.object-tree .object-tree):
     11        Ensure that toplevel Object preview trees are displayed properly while also
     12        making child trees inline.
     13
     14        * UserInterface/Views/TreeOutline.css:
     15        (.tree-outline:not(.hide-disclosure-buttons) .item:not(.parent) > .icon):
     16        (.tree-outline:not(.hide-disclosure-buttons) .item:not(.parent) .icon): Deleted.
     17        This would apply to all .icon elements contained within a non-parent item,
     18        which is not the desired effect. Instead, this should only apply to only the
     19        .icon element of that particular non-parent item.
     20
    1212016-01-29  Joseph Pecoraro  <pecoraro@apple.com>
    222
  • trunk/Source/WebInspectorUI/UserInterface/Views/ObjectTreeView.css

    r195880 r195910  
    7070}
    7171
     72.object-tree .object-tree {
     73    display: inline-block;
     74}
     75
    7276.object-tree .tree-outline.object {
    7377    display: none;
  • trunk/Source/WebInspectorUI/UserInterface/Views/TreeOutline.css

    r195534 r195910  
    6969}
    7070
    71 .tree-outline:not(.hide-disclosure-buttons) .item:not(.parent) .icon {
     71.tree-outline:not(.hide-disclosure-buttons) .item:not(.parent) > .icon {
    7272    margin-left: 16px;
    7373}
Note: See TracChangeset for help on using the changeset viewer.