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 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 415 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
426 } | 426 } |
427 | 427 |
428 .gallery .toolbar .ribbon.fade-left.fade-right { | 428 .gallery .toolbar .ribbon.fade-left.fade-right { |
429 -webkit-mask-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0, | 429 -webkit-mask-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0, |
430 rgba(0, 0, 0, 1) 40px, | 430 rgba(0, 0, 0, 1) 40px, |
431 rgba(0, 0, 0, 1) 230px, | 431 rgba(0, 0, 0, 1) 230px, |
432 rgba(0, 0, 0, 0) 100%); | 432 rgba(0, 0, 0, 0) 100%); |
433 } | 433 } |
434 | 434 |
435 .gallery .image-wrapper { | 435 .gallery .image-wrapper { |
| 436 background-size: 45px 45px; |
436 border: 1px solid rgba(0, 0, 0, 0); /* transparent black */ | 437 border: 1px solid rgba(0, 0, 0, 0); /* transparent black */ |
437 height: 45px; | 438 height: 45px; |
438 overflow: hidden; | 439 overflow: hidden; |
439 position: relative; | 440 position: relative; |
440 width: 45px; | 441 width: 45px; |
441 } | 442 } |
442 | 443 |
443 .gallery .image-wrapper > img { | 444 .gallery .image-wrapper > img { |
444 position: absolute; | 445 position: absolute; |
445 } | 446 } |
(...skipping 463 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
909 } | 910 } |
910 | 911 |
911 .gallery .share-menu > div > img { | 912 .gallery .share-menu > div > img { |
912 display: block; | 913 display: block; |
913 margin-right: 5px; | 914 margin-right: 5px; |
914 } | 915 } |
915 | 916 |
916 /* Load spinner and error banner */ | 917 /* Load spinner and error banner */ |
917 | 918 |
918 .gallery .spinner { | 919 .gallery .spinner { |
919 background-image: url(../images/gallery/spinner_white.svg); | 920 background-image: url(../images/common/spinner_white.svg); |
920 background-size: 100%; | 921 background-size: 100%; |
921 height: 32px; | 922 height: 32px; |
922 left: 50%; | 923 left: 50%; |
923 margin-left: -16px; | 924 margin-left: -16px; |
924 margin-top: -16px; | 925 margin-top: -16px; |
925 opacity: 0.5; | 926 opacity: 0.5; |
926 position: absolute; | 927 position: absolute; |
927 top: 50%; | 928 top: 50%; |
928 width: 32px; | 929 width: 32px; |
929 } | 930 } |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
992 | 993 |
993 .gallery[video] .video-controls { | 994 .gallery[video] .video-controls { |
994 -webkit-box-flex: 1; | 995 -webkit-box-flex: 1; |
995 display: -webkit-box; | 996 display: -webkit-box; |
996 } | 997 } |
997 | 998 |
998 .gallery[video] > .toolbar .button.edit, | 999 .gallery[video] > .toolbar .button.edit, |
999 .gallery[video] > .toolbar .edit-bar { | 1000 .gallery[video] > .toolbar .edit-bar { |
1000 display: none; | 1001 display: none; |
1001 } | 1002 } |
OLD | NEW |