| 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 365 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 376 opacity: 0.5; | 376 opacity: 0.5; |
| 377 } | 377 } |
| 378 | 378 |
| 379 .gallery[editing] .filename-spacer .overwrite-original, | 379 .gallery[editing] .filename-spacer .overwrite-original, |
| 380 .gallery[editing] .filename-spacer .overwrite-original > * { | 380 .gallery[editing] .filename-spacer .overwrite-original > * { |
| 381 cursor: pointer; | 381 cursor: pointer; |
| 382 opacity: 1; | 382 opacity: 1; |
| 383 pointer-events: auto; | 383 pointer-events: auto; |
| 384 } | 384 } |
| 385 | 385 |
| 386 .gallery[editing] .options[saved] .overwrite-original { | 386 .gallery[editing] .overwrite-original[disabled] { |
| 387 opacity: 0.5; | 387 opacity: 0.5; |
| 388 } | 388 } |
| 389 | 389 |
| 390 .gallery[editing] .options[saved] .overwrite-original, | 390 .gallery[editing] .overwrite-original[disabled], |
| 391 .gallery[editing] .options[saved] .overwrite-original > * { | 391 .gallery[editing] .overwrite-original[disabled] > * { |
| 392 cursor: default; | 392 cursor: default; |
| 393 pointer-events: none; | 393 pointer-events: none; |
| 394 } | 394 } |
| 395 | 395 |
| 396 .gallery .filename-spacer .saved[highlighted] { | 396 .gallery .filename-spacer .saved[highlighted] { |
| 397 -webkit-transform: scaleX(1.1) scaleY(1.1) rotate(0); | 397 -webkit-transform: scaleX(1.1) scaleY(1.1) rotate(0); |
| 398 opacity: 1; | 398 opacity: 1; |
| 399 } | 399 } |
| 400 | 400 |
| 401 /* Bubble */ | 401 /* Bubble */ |
| (...skipping 954 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1356 background-color: rgba(255, 0, 0, 0.3); | 1356 background-color: rgba(255, 0, 0, 0.3); |
| 1357 } | 1357 } |
| 1358 | 1358 |
| 1359 .debug-me .load-target-external-metadata::before { | 1359 .debug-me .load-target-external-metadata::before { |
| 1360 background-color: rgba(0, 255, 0, 0.3); | 1360 background-color: rgba(0, 255, 0, 0.3); |
| 1361 } | 1361 } |
| 1362 | 1362 |
| 1363 .debug-me .load-target-file-entry::before { | 1363 .debug-me .load-target-file-entry::before { |
| 1364 background-color: rgba(0, 0, 255, 0.3); | 1364 background-color: rgba(0, 0, 255, 0.3); |
| 1365 } | 1365 } |
| OLD | NEW |