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

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

Issue 387313010: Gallery: Remove CSS hover zoom in the mosaic view of Gallery.app. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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 | Annotate | Revision Log
« 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-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 1210 matching lines...) Expand 10 before | Expand all | Expand 10 after
1221 position: absolute; 1221 position: absolute;
1222 right: 4px; 1222 right: 4px;
1223 top: 4px; 1223 top: 4px;
1224 } 1224 }
1225 1225
1226 /* Selected and hover state are only visible when zoom transition is over. */ 1226 /* Selected and hover state are only visible when zoom transition is over. */
1227 .mosaic[visible='normal'] .mosaic-tile[selected] .img-border { 1227 .mosaic[visible='normal'] .mosaic-tile[selected] .img-border {
1228 outline-color: rgb(51, 153, 255); 1228 outline-color: rgb(51, 153, 255);
1229 } 1229 }
1230 1230
1231 .mosaic[visible='normal'].hover-visible .mosaic-tile:hover {
1232 -webkit-transform: scale(1.05);
1233 z-index: 50;
1234 }
1235
1236 .mosaic[visible='normal'].hover-visible 1231 .mosaic[visible='normal'].hover-visible
1237 .mosaic-tile:hover:not([selected]) .img-border { 1232 .mosaic-tile:hover:not([selected]) .img-border {
1238 outline-color: rgb(182, 212, 252); 1233 outline-color: rgb(182, 212, 252);
1239 } 1234 }
1240 1235
1241 .mosaic-tile .img-wrapper { 1236 .mosaic-tile .img-wrapper {
1242 bottom: 0; 1237 bottom: 0;
1243 left: 0; 1238 left: 0;
1244 position: absolute; 1239 position: absolute;
1245 right: 0; 1240 right: 0;
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
1355 url(chrome://resources/images/2x/apps/topbar_button_maximize.png) 2x) 1350 url(chrome://resources/images/2x/apps/topbar_button_maximize.png) 2x)
1356 center; 1351 center;
1357 } 1352 }
1358 1353
1359 .gallery > .header > .close-button { 1354 .gallery > .header > .close-button {
1360 background: -webkit-image-set( 1355 background: -webkit-image-set(
1361 url(chrome://resources/images/apps/topbar_button_close.png) 1x, 1356 url(chrome://resources/images/apps/topbar_button_close.png) 1x,
1362 url(chrome://resources/images/2x/apps/topbar_button_close.png) 2x) 1357 url(chrome://resources/images/2x/apps/topbar_button_close.png) 2x)
1363 center; 1358 center;
1364 } 1359 }
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