| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |