OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |