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 html.col-resize * { | 5 html.col-resize * { |
6 cursor: col-resize !important; | 6 cursor: col-resize !important; |
7 } | 7 } |
8 | 8 |
9 /* Outer frame of the dialog. */ | 9 /* Outer frame of the dialog. */ |
10 body { | 10 body { |
(...skipping 697 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
708 pointer-events: none; | 708 pointer-events: none; |
709 position: absolute; | 709 position: absolute; |
710 z-index: 1; | 710 z-index: 1; |
711 } | 711 } |
712 | 712 |
713 .preview-thumbnails > * { | 713 .preview-thumbnails > * { |
714 -webkit-transition: all 180ms ease-in; | 714 -webkit-transition: all 180ms ease-in; |
715 -webkit-transition-delay: 300ms; | 715 -webkit-transition-delay: 300ms; |
716 } | 716 } |
717 | 717 |
718 .preview-thumbnails:hover > .popup { | 718 .preview-thumbnails.has-zoom:hover > .popup { |
719 -webkit-transform: translate(0, 0) scale(1.0); | 719 -webkit-transform: translate(0, 0) scale(1.0); |
720 opacity: 1; | 720 opacity: 1; |
721 pointer-events: auto; | 721 pointer-events: auto; |
722 } | 722 } |
723 | 723 |
724 .preview-thumbnails:hover > .thumbnail { | 724 .preview-thumbnails.has-zoom:hover > .thumbnail { |
725 opacity: 0; | 725 opacity: 0; |
726 } | 726 } |
727 | 727 |
728 /* cr.ui.Table has a black focus border by default, which we don't want. */ | 728 /* cr.ui.Table has a black focus border by default, which we don't want. */ |
729 .detail-table:focus { | 729 .detail-table:focus { |
730 border: 0; | 730 border: 0; |
731 } | 731 } |
732 | 732 |
733 /* Table splitter element */ | 733 /* Table splitter element */ |
734 .table-header-splitter { | 734 .table-header-splitter { |
(...skipping 550 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1285 } | 1285 } |
1286 | 1286 |
1287 #no-search-results { | 1287 #no-search-results { |
1288 bottom: 0; | 1288 bottom: 0; |
1289 left: 0; | 1289 left: 0; |
1290 padding: 10px; | 1290 padding: 10px; |
1291 position: absolute; | 1291 position: absolute; |
1292 right: 0; | 1292 right: 0; |
1293 top: 28px; /* Leave room for the file list header. */ | 1293 top: 28px; /* Leave room for the file list header. */ |
1294 } | 1294 } |
OLD | NEW |