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 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
118 -webkit-mask-position: -20px -96px; | 118 -webkit-mask-position: -20px -96px; |
119 } | 119 } |
120 | 120 |
121 .tree-outline ol.children { | 121 .tree-outline ol.children { |
122 display: none; | 122 display: none; |
123 } | 123 } |
124 | 124 |
125 .tree-outline ol.children.expanded { | 125 .tree-outline ol.children.expanded { |
126 display: block; | 126 display: block; |
127 } | 127 } |
| 128 |
| 129 .tree-outline.tree-outline-dense li { |
| 130 margin-top: 1px; |
| 131 min-height: 12px; |
| 132 } |
| 133 |
| 134 .tree-outline.tree-outline-dense li.parent { |
| 135 margin-top: 0; |
| 136 } |
| 137 |
| 138 .tree-outline.tree-outline-dense li.parent::before { |
| 139 top: 0; |
| 140 } |
| 141 |
| 142 .tree-outline.tree-outline-dense ol { |
| 143 padding-left: 10px; |
| 144 } |
OLD | NEW |