| 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 1189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1200 #list-container list:focus > li[selected], | 1200 #list-container list:focus > li[selected], |
| 1201 #list-container grid:focus > li[selected], | 1201 #list-container grid:focus > li[selected], |
| 1202 #default-actions-list:focus > li[selected] { | 1202 #default-actions-list:focus > li[selected] { |
| 1203 background-color: rgb(203, 219, 241); | 1203 background-color: rgb(203, 219, 241); |
| 1204 } | 1204 } |
| 1205 | 1205 |
| 1206 body[new-ui] #list-container list:focus > li[selected], | 1206 body[new-ui] #list-container list:focus > li[selected], |
| 1207 body[new-ui] #list-container grid:focus > li[selected], | 1207 body[new-ui] #list-container grid:focus > li[selected], |
| 1208 body[new-ui] #default-actions-list:focus > li[selected] { | 1208 body[new-ui] #default-actions-list:focus > li[selected] { |
| 1209 background-color: rgb(77, 144, 254); | 1209 background-color: rgb(77, 144, 254); |
| 1210 color: white; |
| 1210 } | 1211 } |
| 1211 | 1212 |
| 1212 #list-container list > li.accepts[selected], | 1213 #list-container list > li.accepts[selected], |
| 1213 #list-container grid > li.accepts[selected], | 1214 #list-container grid > li.accepts[selected], |
| 1214 #list-container list > li[selected]:hover, | 1215 #list-container list > li[selected]:hover, |
| 1215 #list-container grid > li[selected]:hover, | 1216 #list-container grid > li[selected]:hover, |
| 1216 #default-actions-list > li[selected]:hover { | 1217 #default-actions-list > li[selected]:hover { |
| 1217 background-color: rgb(193, 211, 236); | 1218 background-color: rgb(193, 211, 236); |
| 1218 } | 1219 } |
| 1219 | 1220 |
| (...skipping 1004 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2224 body[new-ui] #iframe-drag-area { | 2225 body[new-ui] #iframe-drag-area { |
| 2225 -webkit-app-region: drag; | 2226 -webkit-app-region: drag; |
| 2226 height: 45px; | 2227 height: 45px; |
| 2227 left: 64px; | 2228 left: 64px; |
| 2228 position: absolute; | 2229 position: absolute; |
| 2229 right: 70px; | 2230 right: 70px; |
| 2230 top: 0; | 2231 top: 0; |
| 2231 width: auto; | 2232 width: auto; |
| 2232 z-index: 101; | 2233 z-index: 101; |
| 2233 } | 2234 } |
| OLD | NEW |