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 .properties-tree { | 7 .properties-tree { |
8 margin: 0; | 8 margin: 0; |
9 padding: 0 6px 2px; | 9 padding: 0 6px 2px; |
10 list-style: none; | 10 list-style: none; |
(...skipping 22 matching lines...) Expand all Loading... |
33 line-height: 12px; | 33 line-height: 12px; |
34 } | 34 } |
35 | 35 |
36 .properties-tree li.parent { | 36 .properties-tree li.parent { |
37 margin-left: 1px; | 37 margin-left: 1px; |
38 } | 38 } |
39 | 39 |
40 .properties-tree li.parent::before { | 40 .properties-tree li.parent::before { |
41 -webkit-user-select: none; | 41 -webkit-user-select: none; |
42 background-image: url(Images/toolbarButtonGlyphs.png); | 42 background-image: url(Images/toolbarButtonGlyphs.png); |
43 background-size: 352px 144px; | 43 background-size: 352px 168px; |
44 opacity: 0.5; | 44 opacity: 0.5; |
45 content: "a"; | 45 content: "a"; |
46 width: 8px; | 46 width: 8px; |
47 float: left; | 47 float: left; |
48 margin-right: 4px; | 48 margin-right: 4px; |
49 color: transparent; | 49 color: transparent; |
50 text-shadow: none; | 50 text-shadow: none; |
51 } | 51 } |
52 | 52 |
53 @media (-webkit-min-device-pixel-ratio: 1.5) { | 53 @media (-webkit-min-device-pixel-ratio: 1.5) { |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 color: blue; | 101 color: blue; |
102 } | 102 } |
103 | 103 |
104 .properties-tree .keyword { | 104 .properties-tree .keyword { |
105 color: rgb(136, 19, 79); | 105 color: rgb(136, 19, 79); |
106 } | 106 } |
107 | 107 |
108 .properties-tree .color { | 108 .properties-tree .color { |
109 color: rgb(118, 15, 21); | 109 color: rgb(118, 15, 21); |
110 } | 110 } |
OLD | NEW |