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 423 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
434 | 434 |
435 .gallery .ribbon-spacer { | 435 .gallery .ribbon-spacer { |
436 height: 55px; | 436 height: 55px; |
437 margin-bottom: -55px; | 437 margin-bottom: -55px; |
438 } | 438 } |
439 | 439 |
440 .gallery .toolbar .ribbon { | 440 .gallery .toolbar .ribbon { |
441 height: 100%; | 441 height: 100%; |
442 overflow: hidden; | 442 overflow: hidden; |
443 transition: opacity 180ms linear, visibility 0ms linear; | 443 transition: opacity 180ms linear, visibility 0ms linear; |
| 444 white-space: nowrap; |
444 z-index: 0; | 445 z-index: 0; |
445 } | 446 } |
446 | 447 |
447 .gallery[editing] .toolbar .ribbon { | 448 .gallery[editing] .toolbar .ribbon { |
448 opacity: 0; | 449 opacity: 0; |
449 transition-delay: 0ms, 180ms; | 450 transition-delay: 0ms, 180ms; |
450 visibility: hidden; | 451 visibility: hidden; |
451 } | 452 } |
452 | 453 |
453 .gallery .ribbon-image { | 454 .gallery .ribbon-image { |
454 border: 2px solid rgba(255, 255, 255, 0); /* transparent white */ | 455 border: 2px solid rgba(255, 255, 255, 0); /* transparent white */ |
455 cursor: pointer; | 456 cursor: pointer; |
456 display: inline-block; | 457 display: inline-block; |
457 height: 47px; | 458 height: 47px; |
458 margin: 2px; | 459 margin: 2px 2px 2px 0; |
459 overflow: hidden; | 460 overflow: hidden; |
460 transition: all 180ms linear; | 461 transition: all 180ms linear; |
461 width: 47px; | 462 width: 47px; |
462 } | 463 } |
463 | 464 |
464 .ribbon-image[vanishing='smooth'] { | 465 .ribbon-image[vanishing='smooth'] { |
465 border-left-width: 0; | 466 border-left-width: 0; |
466 border-right-width: 0; | 467 border-right-width: 0; |
467 margin-left: 0; | 468 margin-left: 0; |
468 margin-right: 0; | 469 margin-right: 0; |
(...skipping 887 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1356 background-color: rgba(255, 0, 0, 0.3); | 1357 background-color: rgba(255, 0, 0, 0.3); |
1357 } | 1358 } |
1358 | 1359 |
1359 .debug-me .load-target-external-metadata::before { | 1360 .debug-me .load-target-external-metadata::before { |
1360 background-color: rgba(0, 255, 0, 0.3); | 1361 background-color: rgba(0, 255, 0, 0.3); |
1361 } | 1362 } |
1362 | 1363 |
1363 .debug-me .load-target-file-entry::before { | 1364 .debug-me .load-target-file-entry::before { |
1364 background-color: rgba(0, 0, 255, 0.3); | 1365 background-color: rgba(0, 0, 255, 0.3); |
1365 } | 1366 } |
OLD | NEW |