| 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 1427 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1450 /* A vertical spring. */ | 1452 /* A vertical spring. */ |
| 1451 .vertical-spacer { | 1453 .vertical-spacer { |
| 1452 -webkit-box-flex: 1; | 1454 -webkit-box-flex: 1; |
| 1453 -webkit-box-orient: vertical; | 1455 -webkit-box-orient: vertical; |
| 1454 display: -webkit-box; | 1456 display: -webkit-box; |
| 1455 } | 1457 } |
| 1456 | 1458 |
| 1457 /* Dimmed items */ | 1459 /* Dimmed items */ |
| 1458 | 1460 |
| 1459 body[type='folder'] .file, | 1461 body[type='folder'] .file, |
| 1462 body[type='upload-folder'] .file, |
| 1460 body[drive] .dialog-container[connection='offline'] .dim-offline { | 1463 body[drive] .dialog-container[connection='offline'] .dim-offline { |
| 1461 opacity: 0.4; | 1464 opacity: 0.4; |
| 1462 } | 1465 } |
| 1463 | 1466 |
| 1464 /* Overlay pane covering the entire file manager window (e.g. image editor)*/ | 1467 /* Overlay pane covering the entire file manager window (e.g. image editor)*/ |
| 1465 .overlay-pane { | 1468 .overlay-pane { |
| 1466 border: none; | 1469 border: none; |
| 1467 height: 100%; | 1470 height: 100%; |
| 1468 left: 0; | 1471 left: 0; |
| 1469 position: absolute; | 1472 position: absolute; |
| (...skipping 442 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1912 } | 1915 } |
| 1913 | 1916 |
| 1914 .share-dialog-webview-wrapper:not(.loaded) .share-dialog-webview { | 1917 .share-dialog-webview-wrapper:not(.loaded) .share-dialog-webview { |
| 1915 visibility: hidden; | 1918 visibility: hidden; |
| 1916 } | 1919 } |
| 1917 | 1920 |
| 1918 .share-dialog-frame .cr-dialog-text, | 1921 .share-dialog-frame .cr-dialog-text, |
| 1919 .share-dialog-frame .cr-dialog-buttons { | 1922 .share-dialog-frame .cr-dialog-buttons { |
| 1920 display: none; | 1923 display: none; |
| 1921 } | 1924 } |
| OLD | NEW |