| 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 .file-system-header { | 7 .file-system-header { |
| 8 display: flex; | 8 display: flex; |
| 9 flex-direction: row; | 9 flex-direction: row; |
| 10 align-items: center; | 10 align-items: center; |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 } | 35 } |
| 36 | 36 |
| 37 .file-system-list-item { | 37 .file-system-list-item { |
| 38 padding: 3px 5px 3px 5px; | 38 padding: 3px 5px 3px 5px; |
| 39 height: 30px; | 39 height: 30px; |
| 40 display: flex; | 40 display: flex; |
| 41 align-items: center; | 41 align-items: center; |
| 42 flex: auto 1 1; | 42 flex: auto 1 1; |
| 43 } | 43 } |
| 44 | 44 |
| 45 .file-system-value { | 45 .list-item .file-system-value { |
| 46 white-space: nowrap; | 46 white-space: nowrap; |
| 47 text-overflow: ellipsis; | 47 text-overflow: ellipsis; |
| 48 -webkit-user-select: none; | 48 -webkit-user-select: none; |
| 49 color: #222; | 49 overflow: hidden; |
| 50 } |
| 51 |
| 52 .file-system-value { |
| 50 flex: 1 1 0px; | 53 flex: 1 1 0px; |
| 51 overflow: hidden; | |
| 52 } | 54 } |
| 53 | 55 |
| 54 .file-system-separator { | 56 .file-system-separator { |
| 55 flex: 0 0 1px; | 57 flex: 0 0 1px; |
| 56 background-color: rgb(231, 231, 231); | 58 background-color: rgb(231, 231, 231); |
| 57 height: 30px; | 59 height: 30px; |
| 58 margin: 0 4px; | 60 margin: 0 4px; |
| 59 } | 61 } |
| 60 | 62 |
| 61 .file-system-separator-invisible { | 63 .file-system-separator-invisible { |
| 62 visibility: hidden; | 64 visibility: hidden; |
| 63 height: 100% !important; | 65 height: 100% !important; |
| 64 } | 66 } |
| 65 | 67 |
| 66 .file-system-edit-row { | 68 .file-system-edit-row { |
| 67 flex: none; | 69 flex: none; |
| 68 display: flex; | 70 display: flex; |
| 69 flex-direction: row; | 71 flex-direction: row; |
| 70 margin: 6px 5px; | 72 margin: 6px 5px; |
| 71 align-items: center; | 73 align-items: center; |
| 72 } | 74 } |
| 73 | 75 |
| 74 .file-system-edit-row input { | 76 .file-system-edit-row input { |
| 75 width: 100%; | 77 width: 100%; |
| 76 text-align: inherit; | 78 text-align: inherit; |
| 77 } | 79 } |
| OLD | NEW |