| OLD | NEW |
| 1 /* Copyright (c) 2014 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2014 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 body { | 5 body { |
| 6 -webkit-user-select: none; | 6 -webkit-user-select: none; |
| 7 font-family: Open Sans, Droid Sans Fallback, sans-serif; | 7 font-family: Open Sans, Droid Sans Fallback, sans-serif; |
| 8 font-size: 84%; | 8 font-size: 84%; |
| 9 margin: 0; | 9 margin: 0; |
| 10 } | 10 } |
| (...skipping 1210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1221 position: absolute; | 1221 position: absolute; |
| 1222 right: 4px; | 1222 right: 4px; |
| 1223 top: 4px; | 1223 top: 4px; |
| 1224 } | 1224 } |
| 1225 | 1225 |
| 1226 /* Selected and hover state are only visible when zoom transition is over. */ | 1226 /* Selected and hover state are only visible when zoom transition is over. */ |
| 1227 .mosaic[visible='normal'] .mosaic-tile[selected] .img-border { | 1227 .mosaic[visible='normal'] .mosaic-tile[selected] .img-border { |
| 1228 outline-color: rgb(51, 153, 255); | 1228 outline-color: rgb(51, 153, 255); |
| 1229 } | 1229 } |
| 1230 | 1230 |
| 1231 .mosaic[visible='normal'].hover-visible .mosaic-tile:hover { | |
| 1232 -webkit-transform: scale(1.05); | |
| 1233 z-index: 50; | |
| 1234 } | |
| 1235 | |
| 1236 .mosaic[visible='normal'].hover-visible | 1231 .mosaic[visible='normal'].hover-visible |
| 1237 .mosaic-tile:hover:not([selected]) .img-border { | 1232 .mosaic-tile:hover:not([selected]) .img-border { |
| 1238 outline-color: rgb(182, 212, 252); | 1233 outline-color: rgb(182, 212, 252); |
| 1239 } | 1234 } |
| 1240 | 1235 |
| 1241 .mosaic-tile .img-wrapper { | 1236 .mosaic-tile .img-wrapper { |
| 1242 bottom: 0; | 1237 bottom: 0; |
| 1243 left: 0; | 1238 left: 0; |
| 1244 position: absolute; | 1239 position: absolute; |
| 1245 right: 0; | 1240 right: 0; |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1355 url(chrome://resources/images/2x/apps/topbar_button_maximize.png) 2x) | 1350 url(chrome://resources/images/2x/apps/topbar_button_maximize.png) 2x) |
| 1356 center; | 1351 center; |
| 1357 } | 1352 } |
| 1358 | 1353 |
| 1359 .gallery > .header > .close-button { | 1354 .gallery > .header > .close-button { |
| 1360 background: -webkit-image-set( | 1355 background: -webkit-image-set( |
| 1361 url(chrome://resources/images/apps/topbar_button_close.png) 1x, | 1356 url(chrome://resources/images/apps/topbar_button_close.png) 1x, |
| 1362 url(chrome://resources/images/2x/apps/topbar_button_close.png) 2x) | 1357 url(chrome://resources/images/2x/apps/topbar_button_close.png) 2x) |
| 1363 center; | 1358 center; |
| 1364 } | 1359 } |
| OLD | NEW |