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

Unified Diff: third_party/WebKit/Source/devtools/front_end/resources/resourcesPanel.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/resources/resourcesPanel.css
diff --git a/third_party/WebKit/Source/devtools/front_end/resources/resourcesPanel.css b/third_party/WebKit/Source/devtools/front_end/resources/resourcesPanel.css
index 1de87097f8c3f652a24390bc5b70c0442b600969..8b5a725d1a6c8d71fba7044e48ba5434abe78487 100644
--- a/third_party/WebKit/Source/devtools/front_end/resources/resourcesPanel.css
+++ b/third_party/WebKit/Source/devtools/front_end/resources/resourcesPanel.css
@@ -36,6 +36,7 @@
.resources.panel .sidebar li {
height: 18px;
white-space: nowrap;
+ padding-top: 1px;
}
.resources.panel .sidebar li.selected {
@@ -62,15 +63,16 @@ body.inactive .resources.panel .sidebar li.selected .selection {
.resources.panel .sidebar .icon {
width: 16px;
height: 16px;
- float: left;
+ position: relative;
+ top: 3px;
+ margin-top: -3px;
}
.resources.panel .base-storage-tree-element-title {
overflow: hidden;
- position: relative;
text-overflow: ellipsis;
padding-left: 2px;
- top: 1px;
+ display: inline;
}
.resources-toolbar {

Powered by Google App Engine
This is Rietveld 408576698