Title: [195910] trunk/Source/WebInspectorUI
- Revision
- 195910
- Author
- [email protected]
- Date
- 2016-01-30 13:49:31 -0800 (Sat, 30 Jan 2016)
Log 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 <[email protected]> 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.
Modified Paths
Diff
Modified: trunk/Source/WebInspectorUI/ChangeLog (195909 => 195910)
--- trunk/Source/WebInspectorUI/ChangeLog 2016-01-30 21:39:00 UTC (rev 195909)
+++ trunk/Source/WebInspectorUI/ChangeLog 2016-01-30 21:49:31 UTC (rev 195910)
@@ -1,3 +1,23 @@
+2016-01-30 Devin Rousso <[email protected]>
+
+ Web Inspector: Object tree parent items are misaligned
+ https://bugs.webkit.org/show_bug.cgi?id=153699
+ <rdar://problem/24423683>
+
+ 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.
+
2016-01-29 Joseph Pecoraro <[email protected]>
Web Inspector: Add support for variable size timeline graphs
Modified: trunk/Source/WebInspectorUI/UserInterface/Views/ObjectTreeView.css (195909 => 195910)
--- trunk/Source/WebInspectorUI/UserInterface/Views/ObjectTreeView.css 2016-01-30 21:39:00 UTC (rev 195909)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/ObjectTreeView.css 2016-01-30 21:49:31 UTC (rev 195910)
@@ -69,6 +69,10 @@
width: 0px;
}
+.object-tree .object-tree {
+ display: inline-block;
+}
+
.object-tree .tree-outline.object {
display: none;
}
Modified: trunk/Source/WebInspectorUI/UserInterface/Views/TreeOutline.css (195909 => 195910)
--- trunk/Source/WebInspectorUI/UserInterface/Views/TreeOutline.css 2016-01-30 21:39:00 UTC (rev 195909)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/TreeOutline.css 2016-01-30 21:49:31 UTC (rev 195910)
@@ -68,7 +68,7 @@
display: none;
}
-.tree-outline:not(.hide-disclosure-buttons) .item:not(.parent) .icon {
+.tree-outline:not(.hide-disclosure-buttons) .item:not(.parent) > .icon {
margin-left: 16px;
}
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes