Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(410)

Unified Diff: third_party/WebKit/Source/devtools/front_end/components/objectPropertiesSection.css

Issue 1461783003: [DevTools] Get rid of floats in treeoutline. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebaseline Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/devtools/front_end/components/objectPropertiesSection.css
diff --git a/third_party/WebKit/Source/devtools/front_end/components/objectPropertiesSection.css b/third_party/WebKit/Source/devtools/front_end/components/objectPropertiesSection.css
index 002d4e6bb6aeff4aa660f2cd0f80e460ec8bd328..e37a6ed9bed72cc0c6f7682587cdfc7afd899262 100644
--- a/third_party/WebKit/Source/devtools/front_end/components/objectPropertiesSection.css
+++ b/third_party/WebKit/Source/devtools/front_end/components/objectPropertiesSection.css
@@ -20,6 +20,8 @@
.object-properties-section {
padding: 0 0 0px 0px;
color: rgb(33,33,33) !important;
+ display: flex;
+ flex-direction: column;
}
.object-properties-section li {
@@ -50,3 +52,16 @@
.object-properties-section .synthetic-property {
font-style: italic;
}
+
+.object-properties-section-root-element {
+ display: flex;
+ flex-direction: row;
+}
+
+.object-properties-section-root-element::before {
+ -webkit-mask-position: -4px -97px !important;
+}
+
+.object-properties-section-root-element.expanded::before {
+ -webkit-mask-position: -20px -97px !important;
+}

Powered by Google App Engine
This is Rietveld 408576698