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

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

Issue 1290883006: Devtools: Add new row in toolbarButtonGlyphs and layout editor icon (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 5 years, 4 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 .tree-outline { 7 .tree-outline {
8 padding: 0 0 4px 4px; 8 padding: 0 0 4px 4px;
9 margin: 0; 9 margin: 0;
10 z-index: 0; 10 z-index: 0;
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 } 78 }
79 79
80 ol.tree-outline:focus li.selected * { 80 ol.tree-outline:focus li.selected * {
81 color: inherit; 81 color: inherit;
82 } 82 }
83 83
84 .tree-outline li::before { 84 .tree-outline li::before {
85 float: left; 85 float: left;
86 -webkit-user-select: none; 86 -webkit-user-select: none;
87 -webkit-mask-image: url(Images/toolbarButtonGlyphs.png); 87 -webkit-mask-image: url(Images/toolbarButtonGlyphs.png);
88 -webkit-mask-size: 352px 144px; 88 -webkit-mask-size: 352px 168px;
89 content: "a"; 89 content: "a";
90 color: transparent; 90 color: transparent;
91 text-shadow: none; 91 text-shadow: none;
92 position: relative; 92 position: relative;
93 margin-right: 1px; 93 margin-right: 1px;
94 top: 1px; 94 top: 1px;
95 width: 10px; 95 width: 10px;
96 height: 10px; 96 height: 10px;
97 } 97 }
98 98
(...skipping 16 matching lines...) Expand all
115 -webkit-mask-position: -20px -96px; 115 -webkit-mask-position: -20px -96px;
116 } 116 }
117 117
118 .tree-outline ol.children { 118 .tree-outline ol.children {
119 display: none; 119 display: none;
120 } 120 }
121 121
122 .tree-outline ol.children.expanded { 122 .tree-outline ol.children.expanded {
123 display: block; 123 display: block;
124 } 124 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/ui/toolbar.css ('k') | Source/devtools/front_end/ui_lazy/dataGrid.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698