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

Side by Side Diff: Source/devtools/front_end/network/xmlView.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 (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 .shadow-xml-view { 7 .shadow-xml-view {
8 -webkit-user-select: text; 8 -webkit-user-select: text;
9 overflow: auto; 9 overflow: auto;
10 padding: 2px 4px; 10 padding: 2px 4px;
(...skipping 10 matching lines...) Expand all
21 -webkit-padding-start: 0; 21 -webkit-padding-start: 0;
22 } 22 }
23 23
24 .shadow-xml-view ol.children:not(.expanded) { 24 .shadow-xml-view ol.children:not(.expanded) {
25 display: none; 25 display: none;
26 } 26 }
27 27
28 .shadow-xml-view li.parent::before { 28 .shadow-xml-view li.parent::before {
29 -webkit-user-select: none; 29 -webkit-user-select: none;
30 -webkit-mask-image: url(Images/toolbarButtonGlyphs.png); 30 -webkit-mask-image: url(Images/toolbarButtonGlyphs.png);
31 -webkit-mask-size: 352px 144px; 31 -webkit-mask-size: 352px 168px;
32 -webkit-mask-position: -4px -97px; 32 -webkit-mask-position: -4px -97px;
33 background-color: rgb(110, 110, 110); 33 background-color: rgb(110, 110, 110);
34 content: " "; 34 content: " ";
35 width: 10px;/* arrow width */ 35 width: 10px;/* arrow width */
36 height: 10px; 36 height: 10px;
37 display: inline-block; 37 display: inline-block;
38 position: relative; 38 position: relative;
39 top: 2px; 39 top: 2px;
40 } 40 }
41 41
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 } 78 }
79 79
80 .shadow-xml-view-text { 80 .shadow-xml-view-text {
81 color: rgb(0, 0, 0); 81 color: rgb(0, 0, 0);
82 white-space: pre; 82 white-space: pre;
83 } 83 }
84 84
85 .shadow-xml-view-cdata { 85 .shadow-xml-view-cdata {
86 color: rgb(0, 0, 0); 86 color: rgb(0, 0, 0);
87 } 87 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/inspectorStyle.css ('k') | Source/devtools/front_end/profiler/profilesPanel.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698