| 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='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 449 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 460 position: relative; | 460 position: relative; |
| 461 width: 180px; | 461 width: 180px; |
| 462 } | 462 } |
| 463 | 463 |
| 464 /* Container for the ok/cancel buttons. */ | 464 /* Container for the ok/cancel buttons. */ |
| 465 .dialog-footer { | 465 .dialog-footer { |
| 466 -webkit-box-align: center; | 466 -webkit-box-align: center; |
| 467 -webkit-box-orient: horizontal; | 467 -webkit-box-orient: horizontal; |
| 468 border-top: 1px solid rgb(225, 225, 225); | 468 border-top: 1px solid rgb(225, 225, 225); |
| 469 display: -webkit-box; | 469 display: -webkit-box; |
| 470 outline: none; |
| 470 padding: 10px; | 471 padding: 10px; |
| 471 } | 472 } |
| 472 | 473 |
| 473 .progressable:not([progress]) .progress-bar, | 474 .progressable:not([progress]) .progress-bar, |
| 474 .progressable:not([progress]) .preparing-label { | 475 .progressable:not([progress]) .preparing-label { |
| 475 display: none; | 476 display: none; |
| 476 } | 477 } |
| 477 | 478 |
| 478 .progressable[progress] .ok, | 479 .progressable[progress] .ok, |
| 479 .progressable[progress] #filename-input-box, | 480 .progressable[progress] #filename-input-box, |
| (...skipping 1401 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1881 } | 1882 } |
| 1882 | 1883 |
| 1883 .share-dialog-webview-wrapper:not(.loaded) .share-dialog-webview { | 1884 .share-dialog-webview-wrapper:not(.loaded) .share-dialog-webview { |
| 1884 visibility: hidden; | 1885 visibility: hidden; |
| 1885 } | 1886 } |
| 1886 | 1887 |
| 1887 .share-dialog-frame .cr-dialog-text, | 1888 .share-dialog-frame .cr-dialog-text, |
| 1888 .share-dialog-frame .cr-dialog-buttons { | 1889 .share-dialog-frame .cr-dialog-buttons { |
| 1889 display: none; | 1890 display: none; |
| 1890 } | 1891 } |
| OLD | NEW |