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

Side by Side Diff: Source/devtools/front_end/elements/elementsTreeOutline.css

Issue 1167573003: Devtools: Resize glpyhs and add animation icons (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 6 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 | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2014 The Chromium Authors. All rights reserved. 2 * Copyright (c) 2014 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 .elements-disclosure { 7 .elements-disclosure {
8 width: 100%; 8 width: 100%;
9 display: inline-block; 9 display: inline-block;
10 line-height: normal; 10 line-height: normal;
(...skipping 12 matching lines...) Expand all
23 23
24 .elements-disclosure li.parent::before { 24 .elements-disclosure li.parent::before {
25 float: left; 25 float: left;
26 width: 10px; 26 width: 10px;
27 box-sizing: border-box; 27 box-sizing: border-box;
28 } 28 }
29 29
30 .elements-disclosure li.parent::before { 30 .elements-disclosure li.parent::before {
31 -webkit-user-select: none; 31 -webkit-user-select: none;
32 -webkit-mask-image: url(Images/toolbarButtonGlyphs.png); 32 -webkit-mask-image: url(Images/toolbarButtonGlyphs.png);
33 -webkit-mask-size: 320px 144px; 33 -webkit-mask-size: 352px 144px;
34 content: "a"; 34 content: "a";
35 color: transparent; 35 color: transparent;
36 text-shadow: none; 36 text-shadow: none;
37 margin-right: 1px; 37 margin-right: 1px;
38 } 38 }
39 39
40 @media (-webkit-min-device-pixel-ratio: 1.5) { 40 @media (-webkit-min-device-pixel-ratio: 1.5) {
41 .elements-disclosure li.parent::before { 41 .elements-disclosure li.parent::before {
42 -webkit-mask-image: url(Images/toolbarButtonGlyphs_2x.png); 42 -webkit-mask-image: url(Images/toolbarButtonGlyphs_2x.png);
43 } 43 }
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after
293 } 293 }
294 294
295 ol:hover > li > .elements-tree-shortcut-link { 295 ol:hover > li > .elements-tree-shortcut-link {
296 display: initial; 296 display: initial;
297 } 297 }
298 298
299 .elements-tree-shortcut-link { 299 .elements-tree-shortcut-link {
300 color: rgb(87, 87, 87); 300 color: rgb(87, 87, 87);
301 display: none; 301 display: none;
302 } 302 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/elements/elementsPanel.css ('k') | Source/devtools/front_end/emulation/devicesSettingsTab.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698