| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 * Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
| 4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
| 5 */ | 5 */ |
| 6 | 6 |
| 7 /* Outer frame of the dialog. */ | 7 /* Outer frame of the dialog. */ |
| 8 body { | 8 body { |
| 9 -webkit-box-flex: 1; | 9 -webkit-box-flex: 1; |
| 10 -webkit-box-orient: vertical; | 10 -webkit-box-orient: vertical; |
| (...skipping 675 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 686 | 686 |
| 687 /* cr.ui.Table has a black focus border by default, which we don't want. */ | 687 /* cr.ui.Table has a black focus border by default, which we don't want. */ |
| 688 .detail-table:focus { | 688 .detail-table:focus { |
| 689 border: 0; | 689 border: 0; |
| 690 } | 690 } |
| 691 | 691 |
| 692 /* Table splitter element */ | 692 /* Table splitter element */ |
| 693 .table-header-splitter { | 693 .table-header-splitter { |
| 694 -webkit-border-start: 1px #aaa solid; | 694 -webkit-border-start: 1px #aaa solid; |
| 695 background-color: inherit; | 695 background-color: inherit; |
| 696 height: 28px; | 696 height: 27px; |
| 697 } | 697 } |
| 698 | 698 |
| 699 /* Container for a table header. */ | 699 /* Container for a table header. */ |
| 700 .table-header { | 700 .table-header { |
| 701 -webkit-box-sizing: border-box; | 701 -webkit-box-sizing: border-box; |
| 702 border-bottom: 1px #aaa solid; | 702 border-bottom: 1px #aaa solid; |
| 703 background-image: -webkit-linear-gradient(top, #f9f9f9, #e8e8e8); | 703 background-image: -webkit-linear-gradient(top, #f9f9f9, #e8e8e8); |
| 704 height: 28px; | 704 height: 27px; |
| 705 } | 705 } |
| 706 | 706 |
| 707 .list-container .table-header { | 707 .list-container .table-header { |
| 708 border-radius: 4px 0 0 0; | 708 border-radius: 4px 0 0 0; |
| 709 } | 709 } |
| 710 | 710 |
| 711 .preview-container .table-header { | 711 .preview-container .table-header { |
| 712 border-radius: 0 4px 0 0; | 712 border-radius: 0 4px 0 0; |
| 713 } | 713 } |
| 714 | 714 |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 759 opacity: 0.5; | 759 opacity: 0.5; |
| 760 } | 760 } |
| 761 | 761 |
| 762 .file-checkbox:hover, | 762 .file-checkbox:hover, |
| 763 li.table-row[selected] .file-checkbox, | 763 li.table-row[selected] .file-checkbox, |
| 764 li.thumbnail-item[selected] .file-checkbox { | 764 li.thumbnail-item[selected] .file-checkbox { |
| 765 opacity: 1 !important; | 765 opacity: 1 !important; |
| 766 } | 766 } |
| 767 | 767 |
| 768 li.table-row { | 768 li.table-row { |
| 769 line-height: 38px; |
| 769 padding-top: 1px; | 770 padding-top: 1px; |
| 770 padding-bottom: 1px; | 771 padding-bottom: 1px; |
| 771 } | 772 } |
| 772 | 773 |
| 773 /* The icon in the name column. */ | 774 /* The icon in the name column. */ |
| 774 .detail-icon { | 775 .detail-icon { |
| 775 background-image: url(../images/filetype_generic.png); | 776 background-image: url(../images/filetype_generic.png); |
| 776 background-position: center; | 777 background-position: center; |
| 777 background-repeat: no-repeat; | 778 background-repeat: no-repeat; |
| 778 height: 24px; | 779 height: 24px; |
| (...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 956 left: 0; | 957 left: 0; |
| 957 width: 100%; | 958 width: 100%; |
| 958 height: 100%; | 959 height: 100%; |
| 959 border: none; | 960 border: none; |
| 960 z-index: 100; | 961 z-index: 100; |
| 961 } | 962 } |
| 962 | 963 |
| 963 menu.file-context-menu { | 964 menu.file-context-menu { |
| 964 z-index: 4; | 965 z-index: 4; |
| 965 } | 966 } |
| OLD | NEW |