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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/elements/stylesSectionTree.css

Issue 2744643003: DevTools: [Icons] normalize icon sizes (Closed)
Patch Set: Created 3 years, 9 months 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 2016 The Chromium Authors. All rights reserved. 2 * Copyright 2016 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 .tree-outline { 7 .tree-outline {
8 padding: 0; 8 padding: 0;
9 } 9 }
10 10
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 } 174 }
175 175
176 /* Matched styles */ 176 /* Matched styles */
177 177
178 :host-context(.matched-styles) .tree-outline li { 178 :host-context(.matched-styles) .tree-outline li {
179 margin-left: 0 !important; 179 margin-left: 0 !important;
180 } 180 }
181 181
182 .expand-icon { 182 .expand-icon {
183 -webkit-user-select: none; 183 -webkit-user-select: none;
184 background-color: #777;
185 margin-left: -6px; 184 margin-left: -6px;
186 margin-right: 2px; 185 margin-right: 2px;
186 margin-bottom: -2px;
187 } 187 }
188 188
189 .tree-outline li:not(.parent) .expand-icon { 189 .tree-outline li:not(.parent) .expand-icon {
190 display: none; 190 display: none;
191 } 191 }
192 192
193 :host-context(.matched-styles:not(.read-only):hover) .enabled-button { 193 :host-context(.matched-styles:not(.read-only):hover) .enabled-button {
194 visibility: visible; 194 visibility: visible;
195 } 195 }
196 196
197 :host-context(.matched-styles:not(.read-only)) .tree-outline li.disabled .enable d-button { 197 :host-context(.matched-styles:not(.read-only)) .tree-outline li.disabled .enable d-button {
198 visibility: visible; 198 visibility: visible;
199 } 199 }
200 200
201 :host-context(.matched-styles) ol.expanded { 201 :host-context(.matched-styles) ol.expanded {
202 margin-left: 16px; 202 margin-left: 16px;
203 } 203 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698