| 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 298 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 309 opacity: 0.2; | 309 opacity: 0.2; |
| 310 } | 310 } |
| 311 | 311 |
| 312 /* Filename */ | 312 /* Filename */ |
| 313 | 313 |
| 314 .filename-spacer { | 314 .filename-spacer { |
| 315 -webkit-margin-start: 16px; | 315 -webkit-margin-start: 16px; |
| 316 flex: 1 0 auto; | 316 flex: 1 0 auto; |
| 317 } | 317 } |
| 318 | 318 |
| 319 .filename-spacer paper-input { | 319 #rename-input { |
| 320 margin: 8px 0; | 320 margin: 8px 0; |
| 321 min-width: 160px; | 321 min-width: 160px; |
| 322 padding: 4px 0; |
| 322 width: -webkit-fit-content; | 323 width: -webkit-fit-content; |
| 323 } | 324 } |
| 324 | 325 |
| 325 .filename-spacer paper-input::shadow paper-input-container { | 326 #rename-input > input { |
| 326 padding: 4px 0; | 327 color: white; |
| 327 } | 328 } |
| 328 | 329 |
| 329 /* Bubble */ | 330 /* Bubble */ |
| 330 | 331 |
| 331 .gallery .toolbar .bubble { | 332 .gallery .toolbar .bubble { |
| 332 bottom: 65px; | 333 bottom: 65px; |
| 333 font-size: 85%; | 334 font-size: 85%; |
| 334 left: 50px; | 335 left: 50px; |
| 335 position: absolute; | 336 position: absolute; |
| 336 width: 220px; | 337 width: 220px; |
| (...skipping 1045 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1382 .thumbnail-view .animation-thumbnail { | 1383 .thumbnail-view .animation-thumbnail { |
| 1383 background-repeat: no-repeat; | 1384 background-repeat: no-repeat; |
| 1384 background-size: cover; | 1385 background-size: cover; |
| 1385 display: none; | 1386 display: none; |
| 1386 position: absolute; | 1387 position: absolute; |
| 1387 } | 1388 } |
| 1388 | 1389 |
| 1389 .thumbnail-view .animation-thumbnail.animating { | 1390 .thumbnail-view .animation-thumbnail.animating { |
| 1390 display: block; | 1391 display: block; |
| 1391 } | 1392 } |
| OLD | NEW |