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 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 Loading... |
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 } |
OLD | NEW |