| 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 26 matching lines...) Expand all Loading... |
| 37 outline: none; | 37 outline: none; |
| 38 position: absolute; | 38 position: absolute; |
| 39 width: 17px; | 39 width: 17px; |
| 40 } | 40 } |
| 41 | 41 |
| 42 .bubble .pointer:not(.bottom) { | 42 .bubble .pointer:not(.bottom) { |
| 43 top: -11px; | 43 top: -11px; |
| 44 } | 44 } |
| 45 | 45 |
| 46 .bubble .pointer.bottom { | 46 .bubble .pointer.bottom { |
| 47 -webkit-transform: rotate(180deg); | 47 transform: rotate(180deg); |
| 48 bottom: -11px; | 48 bottom: -11px; |
| 49 } | 49 } |
| 50 | 50 |
| 51 .bubble .close-x { | 51 .bubble .close-x { |
| 52 background: -webkit-image-set( | 52 background: -webkit-image-set( |
| 53 url(../../file_manager/foreground/images/common/close_x_gray.png) 1x, | 53 url(../../file_manager/foreground/images/common/close_x_gray.png) 1x, |
| 54 url(../../file_manager/foreground/images/common/2x/close_x_gray.png) 2x); | 54 url(../../file_manager/foreground/images/common/2x/close_x_gray.png) 2x); |
| 55 height: 21px; | 55 height: 21px; |
| 56 opacity: 0.3; | 56 opacity: 0.3; |
| 57 position: absolute; | 57 position: absolute; |
| (...skipping 1316 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1374 .thumbnail-view .animation-thumbnail { | 1374 .thumbnail-view .animation-thumbnail { |
| 1375 background-repeat: no-repeat; | 1375 background-repeat: no-repeat; |
| 1376 background-size: cover; | 1376 background-size: cover; |
| 1377 display: none; | 1377 display: none; |
| 1378 position: absolute; | 1378 position: absolute; |
| 1379 } | 1379 } |
| 1380 | 1380 |
| 1381 .thumbnail-view .animation-thumbnail.animating { | 1381 .thumbnail-view .animation-thumbnail.animating { |
| 1382 display: block; | 1382 display: block; |
| 1383 } | 1383 } |
| OLD | NEW |