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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/ui/treeoutline.css

Issue 2564433004: DevTools: migrate last usages of samllIcons.png to UI.Icon (Closed)
Patch Set: rebaseline Created 4 years 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright 2015 The Chromium Authors. All rights reserved. 2 * Copyright 2015 The Chromium Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be 3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file. 4 * found in the LICENSE file.
5 */ 5 */
6 6
7 :host { 7 :host {
8 flex: 1 1; 8 flex: 1 1;
9 padding: 2px 0 0 0; 9 padding: 2px 0 0 0;
10 } 10 }
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 } 81 }
82 82
83 ol.tree-outline:focus li.selected { 83 ol.tree-outline:focus li.selected {
84 color: white; 84 color: white;
85 } 85 }
86 86
87 ol.tree-outline:focus li.selected * { 87 ol.tree-outline:focus li.selected * {
88 color: inherit; 88 color: inherit;
89 } 89 }
90 90
91 .tree-outline li .icons-container {
92 margin-left: 4px;
93 align-self: center;
94 }
95
91 .tree-outline li::before { 96 .tree-outline li::before {
92 -webkit-user-select: none; 97 -webkit-user-select: none;
93 -webkit-mask-image: url(Images/toolbarButtonGlyphs.png); 98 -webkit-mask-image: url(Images/toolbarButtonGlyphs.png);
94 -webkit-mask-size: 352px 168px; 99 -webkit-mask-size: 352px 168px;
95 content: "aa"; 100 content: "aa";
96 color: transparent; 101 color: transparent;
97 text-shadow: none; 102 text-shadow: none;
98 margin-right: -2px; 103 margin-right: -2px;
99 height: 12px; 104 height: 12px;
100 } 105 }
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 margin-top: 0; 140 margin-top: 0;
136 } 141 }
137 142
138 .tree-outline.tree-outline-dense li.parent::before { 143 .tree-outline.tree-outline-dense li.parent::before {
139 top: 0; 144 top: 0;
140 } 145 }
141 146
142 .tree-outline.tree-outline-dense ol { 147 .tree-outline.tree-outline-dense ol {
143 padding-left: 10px; 148 padding-left: 10px;
144 } 149 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698