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 834 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
845 background-image: -webkit-image-set( | 845 background-image: -webkit-image-set( |
846 url(../images/100/contrast.png) 1x, | 846 url(../images/100/contrast.png) 1x, |
847 url(../images/200/contrast.png) 2x); | 847 url(../images/200/contrast.png) 2x); |
848 } | 848 } |
849 | 849 |
850 /* Crop frame */ | 850 /* Crop frame */ |
851 | 851 |
852 .gallery .crop-overlay { | 852 .gallery .crop-overlay { |
853 -webkit-box-orient: vertical; | 853 -webkit-box-orient: vertical; |
854 display: -webkit-box; | 854 display: -webkit-box; |
| 855 height: 100%; |
855 pointer-events: none; | 856 pointer-events: none; |
856 position: absolute; | 857 position: absolute; |
| 858 width: 100%; |
857 } | 859 } |
858 | 860 |
859 .gallery .crop-overlay .shadow { | 861 .gallery .crop-overlay .shadow { |
860 background-color: rgba(0, 0, 0, 0.65); | 862 background-color: rgba(0, 0, 0, 0.65); |
861 } | 863 } |
862 | 864 |
863 .gallery .crop-overlay .middle-box { | 865 .gallery .crop-overlay .middle-box { |
864 -webkit-box-flex: 1; | 866 -webkit-box-flex: 1; |
865 -webkit-box-orient: horizontal; | 867 -webkit-box-orient: horizontal; |
866 display: -webkit-box; | 868 display: -webkit-box; |
(...skipping 515 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1382 .thumbnail-view .animation-thumbnail { | 1384 .thumbnail-view .animation-thumbnail { |
1383 background-repeat: no-repeat; | 1385 background-repeat: no-repeat; |
1384 background-size: cover; | 1386 background-size: cover; |
1385 display: none; | 1387 display: none; |
1386 position: absolute; | 1388 position: absolute; |
1387 } | 1389 } |
1388 | 1390 |
1389 .thumbnail-view .animation-thumbnail.animating { | 1391 .thumbnail-view .animation-thumbnail.animating { |
1390 display: block; | 1392 display: block; |
1391 } | 1393 } |
OLD | NEW |