| OLD | NEW |
| 1 /* Copyright (c) 2014 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2014 The Chromium Authors. All rights reserved. |
| 2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
| 3 * found in the LICENSE file. */ | 3 * found in the LICENSE file. */ |
| 4 | 4 |
| 5 /* Special attribute used in HTML to hide elements. */ | 5 /* Special attribute used in HTML to hide elements. */ |
| 6 body[type='folder'] [invisibleif~='folder'], | 6 body[type='folder'] [invisibleif~='folder'], |
| 7 body[type='upload-folder'] [invisibleif~='upload-folder'], | 7 body[type='upload-folder'] [invisibleif~='upload-folder'], |
| 8 body[type='saveas-file'] [invisibleif~='saveas-file'], | 8 body[type='saveas-file'] [invisibleif~='saveas-file'], |
| 9 body[type='open-file'] [invisibleif~='open-file'], | 9 body[type='open-file'] [invisibleif~='open-file'], |
| 10 body[type='open-multi-file'] [invisibleif~='open-multi-file'], | 10 body[type='open-multi-file'] [invisibleif~='open-multi-file'], |
| (...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 #directory-tree .tree-row > .expand-icon { | 182 #directory-tree .tree-row > .expand-icon { |
| 183 flex: none; | 183 flex: none; |
| 184 height: 36px; | 184 height: 36px; |
| 185 left: 3px; | 185 left: 3px; |
| 186 margin: -12px -2px; | 186 margin: -12px -2px; |
| 187 right: 3px; | 187 right: 3px; |
| 188 top: 0; | 188 top: 0; |
| 189 width: 36px; | 189 width: 36px; |
| 190 } | 190 } |
| 191 | 191 |
| 192 #directory-tree .tree-row > .volume-icon { | 192 #directory-tree .tree-row > .item-icon { |
| 193 flex: none; | 193 flex: none; |
| 194 height: 16px; | 194 height: 16px; |
| 195 width: 16px; | 195 width: 16px; |
| 196 } | 196 } |
| 197 | 197 |
| 198 #directory-tree .tree-row > .label { | 198 #directory-tree .tree-row > .label { |
| 199 display: block; | 199 display: block; |
| 200 flex: auto; | 200 flex: auto; |
| 201 margin: 0 6px; | 201 margin: 0 6px; |
| 202 overflow-x: hidden; | 202 overflow-x: hidden; |
| (...skipping 1820 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2023 padding: 20px 15px; | 2023 padding: 20px 15px; |
| 2024 } | 2024 } |
| 2025 | 2025 |
| 2026 .text-measure { | 2026 .text-measure { |
| 2027 pointer-events: none; | 2027 pointer-events: none; |
| 2028 position: absolute; | 2028 position: absolute; |
| 2029 top: 0; | 2029 top: 0; |
| 2030 visibility: hidden; | 2030 visibility: hidden; |
| 2031 z-index: -1; | 2031 z-index: -1; |
| 2032 } | 2032 } |
| OLD | NEW |