OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2015 The Chromium Authors. All rights reserved. | 2 * Copyright 2015 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 .tree-outline { | 7 .tree-outline { |
8 padding: 0 0 4px 4px; | 8 padding: 0 0 4px 4px; |
9 margin: 0; | 9 margin: 0; |
10 z-index: 0; | 10 z-index: 0; |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
78 } | 78 } |
79 | 79 |
80 ol.tree-outline:focus li.selected * { | 80 ol.tree-outline:focus li.selected * { |
81 color: inherit; | 81 color: inherit; |
82 } | 82 } |
83 | 83 |
84 .tree-outline li::before { | 84 .tree-outline li::before { |
85 float: left; | 85 float: left; |
86 -webkit-user-select: none; | 86 -webkit-user-select: none; |
87 -webkit-mask-image: url(Images/toolbarButtonGlyphs.png); | 87 -webkit-mask-image: url(Images/toolbarButtonGlyphs.png); |
88 -webkit-mask-size: 352px 144px; | 88 -webkit-mask-size: 352px 168px; |
89 content: "a"; | 89 content: "a"; |
90 color: transparent; | 90 color: transparent; |
91 text-shadow: none; | 91 text-shadow: none; |
92 position: relative; | 92 position: relative; |
93 margin-right: 1px; | 93 margin-right: 1px; |
94 top: 1px; | 94 top: 1px; |
95 width: 10px; | 95 width: 10px; |
96 height: 10px; | 96 height: 10px; |
97 } | 97 } |
98 | 98 |
(...skipping 16 matching lines...) Expand all Loading... |
115 -webkit-mask-position: -20px -96px; | 115 -webkit-mask-position: -20px -96px; |
116 } | 116 } |
117 | 117 |
118 .tree-outline ol.children { | 118 .tree-outline ol.children { |
119 display: none; | 119 display: none; |
120 } | 120 } |
121 | 121 |
122 .tree-outline ol.children.expanded { | 122 .tree-outline ol.children.expanded { |
123 display: block; | 123 display: block; |
124 } | 124 } |
OLD | NEW |