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 1169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1180 #list-container list:focus > li[selected], | 1180 #list-container list:focus > li[selected], |
1181 #list-container grid:focus > li[selected], | 1181 #list-container grid:focus > li[selected], |
1182 #default-actions-list:focus > li[selected] { | 1182 #default-actions-list:focus > li[selected] { |
1183 background-color: rgb(203, 219, 241); | 1183 background-color: rgb(203, 219, 241); |
1184 } | 1184 } |
1185 | 1185 |
1186 body[new-ui] #list-container list:focus > li[selected], | 1186 body[new-ui] #list-container list:focus > li[selected], |
1187 body[new-ui] #list-container grid:focus > li[selected], | 1187 body[new-ui] #list-container grid:focus > li[selected], |
1188 body[new-ui] #default-actions-list:focus > li[selected] { | 1188 body[new-ui] #default-actions-list:focus > li[selected] { |
1189 background-color: rgb(77, 144, 254); | 1189 background-color: rgb(77, 144, 254); |
| 1190 color: white; |
1190 } | 1191 } |
1191 | 1192 |
1192 #list-container list > li.accepts[selected], | 1193 #list-container list > li.accepts[selected], |
1193 #list-container grid > li.accepts[selected], | 1194 #list-container grid > li.accepts[selected], |
1194 #list-container list > li[selected]:hover, | 1195 #list-container list > li[selected]:hover, |
1195 #list-container grid > li[selected]:hover, | 1196 #list-container grid > li[selected]:hover, |
1196 #default-actions-list > li[selected]:hover { | 1197 #default-actions-list > li[selected]:hover { |
1197 background-color: rgb(193, 211, 236); | 1198 background-color: rgb(193, 211, 236); |
1198 } | 1199 } |
1199 | 1200 |
(...skipping 1016 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2216 | 2217 |
2217 body[new-ui] #iframe-drag-area { | 2218 body[new-ui] #iframe-drag-area { |
2218 -webkit-app-region: drag; | 2219 -webkit-app-region: drag; |
2219 height: 45px; | 2220 height: 45px; |
2220 left: 64px; | 2221 left: 64px; |
2221 position: absolute; | 2222 position: absolute; |
2222 right: 0; | 2223 right: 0; |
2223 top: 0; | 2224 top: 0; |
2224 z-index: 101; | 2225 z-index: 101; |
2225 } | 2226 } |
OLD | NEW |