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 { | 5 html { |
6 height: 100%; | 6 height: 100%; |
7 } | 7 } |
8 | 8 |
9 html.col-resize * { | 9 html.col-resize * { |
10 cursor: col-resize !important; | 10 cursor: col-resize !important; |
(...skipping 1029 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1040 #list-container li.thumbnail-item:hover .file-checkbox { | 1040 #list-container li.thumbnail-item:hover .file-checkbox { |
1041 opacity: 0.5; | 1041 opacity: 0.5; |
1042 } | 1042 } |
1043 | 1043 |
1044 .file-checkbox:hover, | 1044 .file-checkbox:hover, |
1045 .pin:hover, | 1045 .pin:hover, |
1046 #list-container li.table-row[selected] .file-checkbox, | 1046 #list-container li.table-row[selected] .file-checkbox, |
1047 #list-container li.table-row[selected] .pin, | 1047 #list-container li.table-row[selected] .pin, |
1048 #list-container li.table-row .pin:checked, | 1048 #list-container li.table-row .pin:checked, |
1049 #list-container li.thumbnail-item[selected] .file-checkbox { | 1049 #list-container li.thumbnail-item[selected] .file-checkbox { |
1050 opacity: 1 !important; | 1050 opacity: 0.8 !important; |
1051 } | 1051 } |
1052 | 1052 |
1053 #list-container li.table-row, | 1053 #list-container li.table-row, |
1054 #default-actions-list li { | 1054 #default-actions-list li { |
1055 border: none; | 1055 border: none; |
1056 border-top: 1px solid transparent; | 1056 border-top: 1px solid transparent; |
1057 height: 39px; | 1057 height: 39px; |
1058 padding-bottom: 1px; | 1058 padding-bottom: 1px; |
1059 padding-top: 1px; | 1059 padding-top: 1px; |
1060 } | 1060 } |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1129 | 1129 |
1130 .detail-name > * { | 1130 .detail-name > * { |
1131 -webkit-box-align: center; | 1131 -webkit-box-align: center; |
1132 display: -webkit-box; | 1132 display: -webkit-box; |
1133 } | 1133 } |
1134 | 1134 |
1135 /* Overriding input.common[type='checkbox'] rule in common.css. */ | 1135 /* Overriding input.common[type='checkbox'] rule in common.css. */ |
1136 .detail-name > input.common[type='checkbox'] { | 1136 .detail-name > input.common[type='checkbox'] { |
1137 -webkit-margin-end: 4px; | 1137 -webkit-margin-end: 4px; |
1138 -webkit-margin-start: -1px; | 1138 -webkit-margin-start: -1px; |
| 1139 border-color: #444; |
1139 } | 1140 } |
1140 | 1141 |
1141 list .detail-name > .file-checkbox::before, | 1142 list .detail-name > .file-checkbox::before, |
1142 .pin::before { | 1143 .pin::before { |
1143 /* Invisible area that reacts on mouse events. */ | 1144 /* Invisible area that reacts on mouse events. */ |
1144 content: ''; | 1145 content: ''; |
1145 display: -webkit-box; | 1146 display: -webkit-box; |
1146 height: 38px; | 1147 height: 38px; |
1147 left: -8px; | 1148 left: -8px; |
1148 position: absolute; | 1149 position: absolute; |
(...skipping 367 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1516 height: 100%; | 1517 height: 100%; |
1517 } | 1518 } |
1518 | 1519 |
1519 #list-container .table-header-cell:hover { | 1520 #list-container .table-header-cell:hover { |
1520 background-color: #f2f2f2; | 1521 background-color: #f2f2f2; |
1521 } | 1522 } |
1522 | 1523 |
1523 button:focus { | 1524 button:focus { |
1524 outline-color: rgb(77, 144, 254); | 1525 outline-color: rgb(77, 144, 254); |
1525 } | 1526 } |
OLD | NEW |