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 15 matching lines...) Expand all Loading... |
26 } | 26 } |
27 | 27 |
28 .shadow-xml-view li { | 28 .shadow-xml-view li { |
29 display: flex; | 29 display: flex; |
30 align-items: center; | 30 align-items: center; |
31 } | 31 } |
32 | 32 |
33 .shadow-xml-view li.parent::before { | 33 .shadow-xml-view li.parent::before { |
34 -webkit-user-select: none; | 34 -webkit-user-select: none; |
35 -webkit-mask-image: url(Images/toolbarButtonGlyphs.png); | 35 -webkit-mask-image: url(Images/toolbarButtonGlyphs.png); |
36 -webkit-mask-size: 352px 144px; | 36 -webkit-mask-size: 352px 168px; |
37 -webkit-mask-position: -4px -97px; | 37 -webkit-mask-position: -4px -97px; |
38 background-color: rgb(110, 110, 110); | 38 background-color: rgb(110, 110, 110); |
39 content: ""; | 39 content: ""; |
40 width: 10px; /* arrow width */ | 40 width: 10px; /* arrow width */ |
41 height: 10px; | 41 height: 10px; |
42 } | 42 } |
43 | 43 |
44 .shadow-xml-view li.parent.expanded::before { | 44 .shadow-xml-view li.parent.expanded::before { |
45 -webkit-mask-position: -20px -97px; | 45 -webkit-mask-position: -20px -97px; |
46 } | 46 } |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
80 } | 80 } |
81 | 81 |
82 .shadow-xml-view-text { | 82 .shadow-xml-view-text { |
83 color: rgb(0, 0, 0); | 83 color: rgb(0, 0, 0); |
84 white-space: pre; | 84 white-space: pre; |
85 } | 85 } |
86 | 86 |
87 .shadow-xml-view-cdata { | 87 .shadow-xml-view-cdata { |
88 color: rgb(0, 0, 0); | 88 color: rgb(0, 0, 0); |
89 } | 89 } |
OLD | NEW |