| 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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 } | 81 } |
| 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 .leading-icons { |
| 92 align-self: center; |
| 93 display: flex; |
| 94 align-items: center; |
| 95 } |
| 96 |
| 97 .tree-outline li .trailing-icons { |
| 92 margin-left: 4px; | 98 margin-left: 4px; |
| 93 align-self: center; | 99 align-self: center; |
| 94 } | 100 } |
| 95 | 101 |
| 96 .tree-outline li::before { | 102 .tree-outline li::before { |
| 97 -webkit-user-select: none; | 103 -webkit-user-select: none; |
| 98 -webkit-mask-image: url(Images/toolbarButtonGlyphs.png); | 104 -webkit-mask-image: url(Images/toolbarButtonGlyphs.png); |
| 99 -webkit-mask-size: 352px 168px; | 105 -webkit-mask-size: 352px 168px; |
| 100 content: "aa"; | 106 content: "aa"; |
| 101 color: transparent; | 107 color: transparent; |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 140 margin-top: 0; | 146 margin-top: 0; |
| 141 } | 147 } |
| 142 | 148 |
| 143 .tree-outline.tree-outline-dense li.parent::before { | 149 .tree-outline.tree-outline-dense li.parent::before { |
| 144 top: 0; | 150 top: 0; |
| 145 } | 151 } |
| 146 | 152 |
| 147 .tree-outline.tree-outline-dense ol { | 153 .tree-outline.tree-outline-dense ol { |
| 148 padding-left: 10px; | 154 padding-left: 10px; |
| 149 } | 155 } |
| OLD | NEW |