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 /* Outer frame of the dialog. */ | 5 /* Outer frame of the dialog. */ |
6 body { | 6 body { |
7 -webkit-box-flex: 1; | 7 -webkit-box-flex: 1; |
8 -webkit-box-orient: vertical; | 8 -webkit-box-orient: vertical; |
9 -webkit-transition: opacity 70ms linear; | 9 -webkit-transition: opacity 70ms linear; |
10 -webkit-user-select: none; | 10 -webkit-user-select: none; |
(...skipping 684 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
695 } | 695 } |
696 | 696 |
697 /* Text box used for renaming in the thumbnail list. */ | 697 /* Text box used for renaming in the thumbnail list. */ |
698 .thumbnail-grid input.rename { | 698 .thumbnail-grid input.rename { |
699 -webkit-box-sizing: border-box; | 699 -webkit-box-sizing: border-box; |
700 -webkit-margin-start: -1px; | 700 -webkit-margin-start: -1px; |
701 height: 20px; | 701 height: 20px; |
702 width: 114px; | 702 width: 114px; |
703 } | 703 } |
704 | 704 |
705 .thumbnail-grid li, | |
706 .detail-table list li { | |
707 -webkit-user-drag: element; | |
708 } | |
709 | |
710 /* The cr.ui.Table representing the detailed file list. */ | 705 /* The cr.ui.Table representing the detailed file list. */ |
711 .detail-table { | 706 .detail-table { |
712 border: 0; | 707 border: 0; |
713 width: 100%; | 708 width: 100%; |
714 } | 709 } |
715 | 710 |
716 /* Bottom pane describing current selection. */ | 711 /* Bottom pane describing current selection. */ |
717 .preview-panel { | 712 .preview-panel { |
718 -webkit-box-align: center; | 713 -webkit-box-align: center; |
719 -webkit-box-orient: horizontal; | 714 -webkit-box-orient: horizontal; |
(...skipping 499 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1219 } | 1214 } |
1220 | 1215 |
1221 body[ash] .dialog-title, | 1216 body[ash] .dialog-title, |
1222 body[type='full-page'] [invisibleif='full-page'], | 1217 body[type='full-page'] [invisibleif='full-page'], |
1223 body:not([type='full-page']) [visibleif='full-page'], | 1218 body:not([type='full-page']) [visibleif='full-page'], |
1224 body:not([type='saveas-file']) [visibleif='saveas-file'], | 1219 body:not([type='saveas-file']) [visibleif='saveas-file'], |
1225 body:not([type='saveas-file']):not([type='full-page']) | 1220 body:not([type='saveas-file']):not([type='full-page']) |
1226 [visibleif='saveas-file full-page'] { | 1221 [visibleif='saveas-file full-page'] { |
1227 display: none; | 1222 display: none; |
1228 } | 1223 } |
OLD | NEW |