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

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

Issue 2580163002: DevTools: migrate navigator icons to UI.Icon (Closed)
Patch Set: fix formatting Created 3 years, 12 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 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 { 91 .tree-outline li .leading-icons {
92 align-self: center;
93 display: flex;
94 align-items: center;
dgozman 2016/12/19 20:24:37 margin-right: 4px;
lushnikov 2016/12/19 20:42:40 Done.
95 }
96
97 .tree-outline li .trailing-icons {
92 margin-left: 4px; 98 margin-left: 4px;
93 align-self: center; 99 align-self: center;
94 } 100 }
95 101
96 .tree-outline li::before { 102 .tree-outline li::before {
97 -webkit-user-select: none; 103 -webkit-user-select: none;
98 -webkit-mask-image: url(Images/toolbarButtonGlyphs.png); 104 -webkit-mask-image: url(Images/toolbarButtonGlyphs.png);
99 -webkit-mask-size: 352px 168px; 105 -webkit-mask-size: 352px 168px;
100 content: "aa"; 106 content: "aa";
101 color: transparent; 107 color: transparent;
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 margin-top: 0; 146 margin-top: 0;
141 } 147 }
142 148
143 .tree-outline.tree-outline-dense li.parent::before { 149 .tree-outline.tree-outline-dense li.parent::before {
144 top: 0; 150 top: 0;
145 } 151 }
146 152
147 .tree-outline.tree-outline-dense ol { 153 .tree-outline.tree-outline-dense ol {
148 padding-left: 10px; 154 padding-left: 10px;
149 } 155 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698