| 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 { |
| (...skipping 902 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 |