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 :host { | 7 :host { |
8 flex: 1 1; | 8 flex: 1 1; |
9 padding: 2px 0 0 0; | 9 padding: 2px 0 0 0; |
10 } | 10 } |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 | 82 |
83 ol.tree-outline:focus li.selected { | 83 ol.tree-outline:focus li.selected { |
84 color: white; | 84 color: white; |
85 } | 85 } |
86 | 86 |
87 ol.tree-outline:focus li.selected * { | 87 ol.tree-outline:focus li.selected * { |
88 color: inherit; | 88 color: inherit; |
89 } | 89 } |
90 | 90 |
91 .tree-outline li .icons-container { | 91 .tree-outline li .icons-container { |
| 92 align-self: center; |
| 93 display: flex; |
| 94 align-items: center; |
| 95 } |
| 96 |
| 97 .tree-outline li .leading-icons { |
| 98 margin-right: 4px; |
| 99 } |
| 100 |
| 101 .tree-outline li .trailing-icons { |
92 margin-left: 4px; | 102 margin-left: 4px; |
93 align-self: center; | |
94 } | 103 } |
95 | 104 |
96 .tree-outline li::before { | 105 .tree-outline li::before { |
97 -webkit-user-select: none; | 106 -webkit-user-select: none; |
98 -webkit-mask-image: url(Images/toolbarButtonGlyphs.png); | 107 -webkit-mask-image: url(Images/toolbarButtonGlyphs.png); |
99 -webkit-mask-size: 352px 168px; | 108 -webkit-mask-size: 352px 168px; |
100 content: "aa"; | 109 content: "aa"; |
101 color: transparent; | 110 color: transparent; |
102 text-shadow: none; | 111 text-shadow: none; |
103 margin-right: -2px; | 112 margin-right: -2px; |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
140 margin-top: 0; | 149 margin-top: 0; |
141 } | 150 } |
142 | 151 |
143 .tree-outline.tree-outline-dense li.parent::before { | 152 .tree-outline.tree-outline-dense li.parent::before { |
144 top: 0; | 153 top: 0; |
145 } | 154 } |
146 | 155 |
147 .tree-outline.tree-outline-dense ol { | 156 .tree-outline.tree-outline-dense ol { |
148 padding-left: 10px; | 157 padding-left: 10px; |
149 } | 158 } |
OLD | NEW |