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 background-color: black; | 6 background-color: black; |
7 font-size: 84%; | 7 font-size: 84%; |
8 margin: 0; | 8 margin: 0; |
9 user-select: none; | 9 user-select: none; |
10 } | 10 } |
(...skipping 1252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1263 right: 0; | 1263 right: 0; |
1264 } | 1264 } |
1265 | 1265 |
1266 .gallery[tools][slideshow] .slideshow-toolbar { | 1266 .gallery[tools][slideshow] .slideshow-toolbar { |
1267 display: flex; | 1267 display: flex; |
1268 } | 1268 } |
1269 | 1269 |
1270 .slideshow-toolbar > div { | 1270 .slideshow-toolbar > div { |
1271 background-position: center; | 1271 background-position: center; |
1272 background-repeat: no-repeat; | 1272 background-repeat: no-repeat; |
| 1273 cursor: pointer; |
1273 height: 48px; | 1274 height: 48px; |
1274 opacity: 0.8; | 1275 opacity: 0.8; |
1275 pointer-events: auto; | 1276 pointer-events: auto; |
1276 width: 48px; | 1277 width: 48px; |
1277 } | 1278 } |
1278 | 1279 |
1279 .slideshow-toolbar > div:hover { | 1280 .slideshow-toolbar > div:hover { |
1280 opacity: 1; | 1281 opacity: 1; |
1281 } | 1282 } |
1282 | 1283 |
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1423 .thumbnail-view .animation-thumbnail { | 1424 .thumbnail-view .animation-thumbnail { |
1424 background-repeat: no-repeat; | 1425 background-repeat: no-repeat; |
1425 background-size: cover; | 1426 background-size: cover; |
1426 display: none; | 1427 display: none; |
1427 position: absolute; | 1428 position: absolute; |
1428 } | 1429 } |
1429 | 1430 |
1430 .thumbnail-view .animation-thumbnail.animating { | 1431 .thumbnail-view .animation-thumbnail.animating { |
1431 display: block; | 1432 display: block; |
1432 } | 1433 } |
OLD | NEW |