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 544 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
990 | 991 |
991 .gallery[video] .video-controls { | 992 .gallery[video] .video-controls { |
992 -webkit-box-flex: 1; | 993 -webkit-box-flex: 1; |
993 display: -webkit-box; | 994 display: -webkit-box; |
994 } | 995 } |
995 | 996 |
996 .gallery[video] > .toolbar .button.edit, | 997 .gallery[video] > .toolbar .button.edit, |
997 .gallery[video] > .toolbar .edit-bar { | 998 .gallery[video] > .toolbar .edit-bar { |
998 display: none; | 999 display: none; |
999 } | 1000 } |
OLD | NEW |