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

Side by Side Diff: chrome/browser/resources/file_manager/css/file_manager.css

Issue 8769043: Fixing a bug with poping up enlarged image when mouse is out of the thumbnail. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years 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 /* 1 /*
2 * Copyright (c) 2011 The Chromium Authors. All rights reserved. 2 * Copyright (c) 2011 The Chromium Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be 3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file. 4 * found in the LICENSE file.
5 */ 5 */
6 6
7 /* Outer frame of the dialog. */ 7 /* Outer frame of the dialog. */
8 body { 8 body {
9 -webkit-box-flex: 1; 9 -webkit-box-flex: 1;
10 -webkit-box-orient: vertical; 10 -webkit-box-orient: vertical;
(...skipping 310 matching lines...) Expand 10 before | Expand all | Expand 10 after
321 -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2); 321 -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
322 background-color: #F2F2F2; 322 background-color: #F2F2F2;
323 } 323 }
324 324
325 .preview-thumbnails > div > div.popup { 325 .preview-thumbnails > div > div.popup {
326 border: 2px solid #fff; 326 border: 2px solid #fff;
327 -webkit-box-shadow: 3px 3px 9px rgba(0, 0, 0, 0.6); 327 -webkit-box-shadow: 3px 3px 9px rgba(0, 0, 0, 0.6);
328 background-color: #F2F2F2; 328 background-color: #F2F2F2;
329 margin: 0; 329 margin: 0;
330 z-index: 1; 330 z-index: 1;
331 pointer-events: none;
331 position: absolute; 332 position: absolute;
332 333
333 -webkit-transition: all 180ms ease-in; 334 -webkit-transition: all 180ms ease-in;
334 -webkit-transition-delay: 300ms; 335 -webkit-transition-delay: 300ms;
335 336
336 -webkit-transform: translate(0, 3px) scale(0.95); 337 -webkit-transform: translate(0, 3px) scale(0.95);
337 opacity: 0; 338 opacity: 0;
338 } 339 }
339 340
340 .preview-thumbnails > div:hover > div.popup { 341 .preview-thumbnails > div:hover > div.popup {
341 -webkit-transform: translate(0, 0) scale(1.0); 342 -webkit-transform: translate(0, 0) scale(1.0);
342 opacity: 1; 343 opacity: 1;
344 pointer-events: auto;
343 } 345 }
344 346
345 .preview-panel > * { 347 .preview-panel > * {
346 display: -webkit-box; 348 display: -webkit-box;
347 -webkit-box-align: center; 349 -webkit-box-align: center;
348 } 350 }
349 351
350 /* cr.ui.Table has a black focus border by default, which we don't want. */ 352 /* cr.ui.Table has a black focus border by default, which we don't want. */
351 .detail-table:focus { 353 .detail-table:focus {
352 border: 0; 354 border: 0;
(...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after
619 /* Overlay pane covering the entire file manager window (e.g. image editor)*/ 621 /* Overlay pane covering the entire file manager window (e.g. image editor)*/
620 .overlay-pane { 622 .overlay-pane {
621 position: absolute; 623 position: absolute;
622 top: 0; 624 top: 0;
623 left: 0; 625 left: 0;
624 width: 100%; 626 width: 100%;
625 height: 100%; 627 height: 100%;
626 border: none; 628 border: none;
627 z-index: 100; 629 z-index: 100;
628 } 630 }
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