OLD | NEW |
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 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='saveas-file'] [invisibleif~='saveas-file'], | 8 body[type='saveas-file'] [invisibleif~='saveas-file'], |
8 body[type='open-file'] [invisibleif~='open-file'], | 9 body[type='open-file'] [invisibleif~='open-file'], |
9 body[type='open-multi-file'] [invisibleif~='open-multi-file'], | 10 body[type='open-multi-file'] [invisibleif~='open-multi-file'], |
10 body[type='full-page'] [invisibleif~='full-page'], | 11 body[type='full-page'] [invisibleif~='full-page'], |
11 | 12 |
12 body[type='folder'] [visibleif]:not([visibleif~='folder']), | 13 body[type='folder'] [visibleif]:not([visibleif~='folder']), |
| 14 body[type='upload-folder'] [visibleif]:not([visibleif~='upload-folder']), |
13 body[type='saveas-file'] [visibleif]:not([visibleif~='saveas-file']), | 15 body[type='saveas-file'] [visibleif]:not([visibleif~='saveas-file']), |
14 body[type='open-file'] [visibleif]:not([visibleif~='open-file']), | 16 body[type='open-file'] [visibleif]:not([visibleif~='open-file']), |
15 body[type='open-multi-file'] [visibleif]:not([visibleif~='open-multi-file']), | 17 body[type='open-multi-file'] [visibleif]:not([visibleif~='open-multi-file']), |
16 body[type='full-page'] [visibleif]:not([visibleif~='full-page']) { | 18 body[type='full-page'] [visibleif]:not([visibleif~='full-page']) { |
17 display: none !important; | 19 display: none !important; |
18 } | 20 } |
19 | 21 |
20 html { | 22 html { |
21 height: 100%; | 23 height: 100%; |
22 } | 24 } |
(...skipping 1421 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1444 /* A vertical spring. */ | 1446 /* A vertical spring. */ |
1445 .vertical-spacer { | 1447 .vertical-spacer { |
1446 -webkit-box-flex: 1; | 1448 -webkit-box-flex: 1; |
1447 -webkit-box-orient: vertical; | 1449 -webkit-box-orient: vertical; |
1448 display: -webkit-box; | 1450 display: -webkit-box; |
1449 } | 1451 } |
1450 | 1452 |
1451 /* Dimmed items */ | 1453 /* Dimmed items */ |
1452 | 1454 |
1453 body[type='folder'] .file, | 1455 body[type='folder'] .file, |
| 1456 body[type='upload-folder'] .file, |
1454 body[drive] .dialog-container[connection='offline'] .dim-offline { | 1457 body[drive] .dialog-container[connection='offline'] .dim-offline { |
1455 opacity: 0.4; | 1458 opacity: 0.4; |
1456 } | 1459 } |
1457 | 1460 |
1458 /* Overlay pane covering the entire file manager window (e.g. image editor)*/ | 1461 /* Overlay pane covering the entire file manager window (e.g. image editor)*/ |
1459 .overlay-pane { | 1462 .overlay-pane { |
1460 border: none; | 1463 border: none; |
1461 height: 100%; | 1464 height: 100%; |
1462 left: 0; | 1465 left: 0; |
1463 position: absolute; | 1466 position: absolute; |
(...skipping 415 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1879 } | 1882 } |
1880 | 1883 |
1881 .error-dialog-frame .cr-dialog-close, | 1884 .error-dialog-frame .cr-dialog-close, |
1882 .error-dialog-frame .cr-dialog-title { | 1885 .error-dialog-frame .cr-dialog-title { |
1883 display: none; | 1886 display: none; |
1884 } | 1887 } |
1885 | 1888 |
1886 .error-dialog-frame .cr-dialog-text { | 1889 .error-dialog-frame .cr-dialog-text { |
1887 text-align: center; | 1890 text-align: center; |
1888 } | 1891 } |
OLD | NEW |