Chromium Code Reviews| 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 background-color: black; | 7 background-color: black; |
| 8 font-size: 84%; | 8 font-size: 84%; |
| 9 margin: 0; | 9 margin: 0; |
| 10 } | 10 } |
| (...skipping 446 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 457 overflow: hidden; | 457 overflow: hidden; |
| 458 position: absolute; | 458 position: absolute; |
| 459 width: 100%; | 459 width: 100%; |
| 460 } | 460 } |
| 461 | 461 |
| 462 .gallery .image-wrapper > img { | 462 .gallery .image-wrapper > img { |
| 463 position: absolute; | 463 position: absolute; |
| 464 } | 464 } |
| 465 | 465 |
| 466 .gallery .image-wrapper > img:not(.cached) { | 466 .gallery .image-wrapper > img:not(.cached) { |
| 467 -webkit-animation: fadeIn 500ms ease-in; | 467 animation: fadeIn 500ms ease-in; |
| 468 } | 468 } |
| 469 | 469 |
| 470 @-webkit-keyframes fadeIn { | 470 @keyframes fadeIn { |
| 471 from { | 471 from { |
| 472 opacity: 0; | 472 opacity: 0; |
| 473 } | 473 } |
| 474 to { | 474 to { |
| 475 opacity: 1; | 475 opacity: 1; |
| 476 } | 476 } |
| 477 } | 477 } |
| 478 | 478 |
| 479 .gallery .ribbon-image > .indicator { | 479 .gallery .ribbon-image > .indicator { |
| 480 -webkit-transition: opacity 500ms ease-in; | 480 transition: opacity 500ms ease-in; |
|
Dan Beam
2016/11/29 06:17:12
alphabetize
Eric Willigers
2016/11/30 04:04:56
Done.
| |
| 481 background-image: -webkit-image-set( | 481 background-image: -webkit-image-set( |
| 482 url(../images/100/slide_view.png) 1x, | 482 url(../images/100/slide_view.png) 1x, |
| 483 url(../images/200/slide_view.png) 2x); | 483 url(../images/200/slide_view.png) 2x); |
| 484 background-position: center; | 484 background-position: center; |
| 485 background-repeat: no-repeat; | 485 background-repeat: no-repeat; |
| 486 height: 100%; | 486 height: 100%; |
| 487 opacity: 0; | 487 opacity: 0; |
| 488 position: absolute; | 488 position: absolute; |
| 489 width: 100%; | 489 width: 100%; |
| 490 } | 490 } |
| (...skipping 932 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1423 .thumbnail-view .animation-thumbnail { | 1423 .thumbnail-view .animation-thumbnail { |
| 1424 background-repeat: no-repeat; | 1424 background-repeat: no-repeat; |
| 1425 background-size: cover; | 1425 background-size: cover; |
| 1426 display: none; | 1426 display: none; |
| 1427 position: absolute; | 1427 position: absolute; |
| 1428 } | 1428 } |
| 1429 | 1429 |
| 1430 .thumbnail-view .animation-thumbnail.animating { | 1430 .thumbnail-view .animation-thumbnail.animating { |
| 1431 display: block; | 1431 display: block; |
| 1432 } | 1432 } |
| OLD | NEW |