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 629 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
640 background-color: rgb(193, 211, 236); | 640 background-color: rgb(193, 211, 236); |
641 } | 641 } |
642 | 642 |
643 .list-container list > .accepts, | 643 .list-container list > .accepts, |
644 .list-container list > :hover, | 644 .list-container list > :hover, |
645 .list-container grid > :hover { | 645 .list-container grid > :hover { |
646 background-color: rgb(242, 246, 250); | 646 background-color: rgb(242, 246, 250); |
647 border-color: rgb(242, 246, 250); | 647 border-color: rgb(242, 246, 250); |
648 } | 648 } |
649 | 649 |
| 650 .list-container.nohover list > :not([selected]):hover, |
| 651 .list-container.nohover grid > :not([selected]):hover { |
| 652 background-color: transparent; |
| 653 border-color: transparent; |
| 654 } |
| 655 |
650 .table-row-cell .filename-label, | 656 .table-row-cell .filename-label, |
651 .thumbnail-item .filename-label, | 657 .thumbnail-item .filename-label, |
652 /* Show ellipsis in cells. The name column has different structure and overrides | 658 /* Show ellipsis in cells. The name column has different structure and overrides |
653 this rule. */ | 659 this rule. */ |
654 .table-row-cell > div { | 660 .table-row-cell > div { |
655 display: block; | 661 display: block; |
656 overflow: hidden; | 662 overflow: hidden; |
657 text-overflow: ellipsis; | 663 text-overflow: ellipsis; |
658 white-space: nowrap; | 664 white-space: nowrap; |
659 } | 665 } |
(...skipping 580 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1240 top: 0; | 1246 top: 0; |
1241 width: 40px; | 1247 width: 40px; |
1242 } | 1248 } |
1243 | 1249 |
1244 .unmounted-panel:not([loading]) > .gdata.loading, | 1250 .unmounted-panel:not([loading]) > .gdata.loading, |
1245 .unmounted-panel:not([error]) > .gdata.error, | 1251 .unmounted-panel:not([error]) > .gdata.error, |
1246 .unmounted-panel:not([retry]) > .gdata.retry, | 1252 .unmounted-panel:not([retry]) > .gdata.retry, |
1247 .unmounted-panel:not([retry]) > .gdata.learn-more { | 1253 .unmounted-panel:not([retry]) > .gdata.learn-more { |
1248 display: none; | 1254 display: none; |
1249 } | 1255 } |
OLD | NEW |