| 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-size: 84%; | 7 font-size: 84%; |
| 8 margin: 0; | 8 margin: 0; |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 373 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 384 flex-direction: column; | 384 flex-direction: column; |
| 385 } | 385 } |
| 386 | 386 |
| 387 /* Toolbar buttons */ | 387 /* Toolbar buttons */ |
| 388 | 388 |
| 389 .gallery .button-spacer { | 389 .gallery .button-spacer { |
| 390 align-items: center; | 390 align-items: center; |
| 391 display: flex; | 391 display: flex; |
| 392 flex: none; | 392 flex: none; |
| 393 justify-content: flex-end; | 393 justify-content: flex-end; |
| 394 width: 252px; /* 42px button x 6 */ | |
| 395 } | 394 } |
| 396 | 395 |
| 397 /* Thumbnails */ | 396 /* Thumbnails */ |
| 398 | 397 |
| 399 .gallery .ribbon-spacer { | 398 .gallery .ribbon-spacer { |
| 400 height: 55px; | 399 height: 55px; |
| 401 position: relative; | 400 position: relative; |
| 402 } | 401 } |
| 403 | 402 |
| 404 .gallery .toolbar .ribbon { | 403 .gallery .toolbar .ribbon { |
| (...skipping 1073 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1478 .thumbnail-view .animation-thumbnail { | 1477 .thumbnail-view .animation-thumbnail { |
| 1479 background-repeat: no-repeat; | 1478 background-repeat: no-repeat; |
| 1480 background-size: cover; | 1479 background-size: cover; |
| 1481 display: none; | 1480 display: none; |
| 1482 position: absolute; | 1481 position: absolute; |
| 1483 } | 1482 } |
| 1484 | 1483 |
| 1485 .thumbnail-view .animation-thumbnail.animating { | 1484 .thumbnail-view .animation-thumbnail.animating { |
| 1486 display: block; | 1485 display: block; |
| 1487 } | 1486 } |
| OLD | NEW |