Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(30)

Side by Side Diff: ui/file_manager/gallery/css/gallery.css

Issue 1281823002: Gallery: change size of crop overlay to cover entire window. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | ui/file_manager/gallery/js/image_editor/image_editor.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | ui/file_manager/gallery/js/image_editor/image_editor.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698