OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2015 The Chromium Authors. All rights reserved. | 2 * Copyright (c) 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 .computed-properties { | 7 .computed-properties { |
8 -webkit-user-select: text; | 8 -webkit-user-select: text; |
9 } | 9 } |
10 | 10 |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 /* FIXME: Patch TreeElement styles to use flex for title layout. */ | 82 /* FIXME: Patch TreeElement styles to use flex for title layout. */ |
83 | 83 |
84 .tree-outline li { | 84 .tree-outline li { |
85 display: flex; | 85 display: flex; |
86 align-items: baseline; | 86 align-items: baseline; |
87 } | 87 } |
88 | 88 |
89 .tree-outline li::before { | 89 .tree-outline li::before { |
90 float: none; | 90 float: none; |
91 flex: none; | 91 flex: none; |
92 -webkit-mask-position: -3px -97px; | |
93 background-color: rgb(110, 110, 110); | 92 background-color: rgb(110, 110, 110); |
94 margin-left: 4px; | 93 margin-left: 4px; |
95 } | 94 } |
96 | |
97 .tree-outline li.parent.expanded::before { | |
98 -webkit-mask-position: -19px -97px; | |
99 } | |
OLD | NEW |