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

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

Issue 1101073002: Gallery: Set opacity=1 when printing image. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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 | no next file » | 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 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 display: -webkit-box; 131 display: -webkit-box;
132 } 132 }
133 133
134 /* Do not print the screen resolution image. */ 134 /* Do not print the screen resolution image. */
135 .gallery .image-container > canvas.image { 135 .gallery .image-container > canvas.image {
136 display: none !important; 136 display: none !important;
137 } 137 }
138 138
139 /* Print the full resolution image instead. */ 139 /* Print the full resolution image instead. */
140 .gallery .image-container > canvas.fullres { 140 .gallery .image-container > canvas.fullres {
141 display: block !important;
142 height: auto !important; 141 height: auto !important;
143 max-height: 100%; 142 max-height: 100%;
144 max-width: 100%; 143 max-width: 100%;
144 opacity: 1 !important;
145 position: static !important; 145 position: static !important;
146 transform: none !important; 146 transform: none !important;
147 visibility: visible !important; 147 visibility: visible !important;
148 width: auto !important; 148 width: auto !important;
149 } 149 }
150 } 150 }
151 151
152 /* Toolbar */ 152 /* Toolbar */
153 153
154 .gallery > .header, 154 .gallery > .header,
(...skipping 1206 matching lines...) Expand 10 before | Expand all | Expand 10 after
1361 background-color: rgba(255, 0, 0, 0.3); 1361 background-color: rgba(255, 0, 0, 0.3);
1362 } 1362 }
1363 1363
1364 .debug-me .load-target-external-metadata::before { 1364 .debug-me .load-target-external-metadata::before {
1365 background-color: rgba(0, 255, 0, 0.3); 1365 background-color: rgba(0, 255, 0, 0.3);
1366 } 1366 }
1367 1367
1368 .debug-me .load-target-file-entry::before { 1368 .debug-me .load-target-file-entry::before {
1369 background-color: rgba(0, 0, 255, 0.3); 1369 background-color: rgba(0, 0, 255, 0.3);
1370 } 1370 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698