| 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 520 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 531 .gallery[editing] .edit-mode-toolbar .options, | 531 .gallery[editing] .edit-mode-toolbar .options, |
| 532 .gallery[editing] .edit-mode-toolbar .exit-button-spacer { | 532 .gallery[editing] .edit-mode-toolbar .exit-button-spacer { |
| 533 opacity: 1; | 533 opacity: 1; |
| 534 visibility: visible; | 534 visibility: visible; |
| 535 } | 535 } |
| 536 | 536 |
| 537 .edit-mode-toolbar .overwrite-original { | 537 .edit-mode-toolbar .overwrite-original { |
| 538 -webkit-margin-start: 16px; | 538 -webkit-margin-start: 16px; |
| 539 } | 539 } |
| 540 | 540 |
| 541 .edit-mode-toolbar .overwrite-original::shadow #checkboxContainer { | |
| 542 transform: scale(0.78, 0.78); /* Make box size to 14px. */ | |
| 543 } | |
| 544 | |
| 545 .edit-mode-toolbar .overwrite-original::shadow #ink { | |
| 546 left: -10px; | |
| 547 top: -10px; | |
| 548 } | |
| 549 | |
| 550 .edit-mode-toolbar .overwrite-original::shadow #checkboxLabel { | |
| 551 padding-left: 6px; | |
| 552 } | |
| 553 | |
| 554 .edit-mode-toolbar .overwrite-original[disabled]::shadow #checkbox, | 541 .edit-mode-toolbar .overwrite-original[disabled]::shadow #checkbox, |
| 555 .edit-mode-toolbar .overwrite-original[disabled]::shadow #checkboxLabel { | 542 .edit-mode-toolbar .overwrite-original[disabled]::shadow #checkboxLabel { |
| 556 opacity: 0.2; | 543 opacity: 0.2; |
| 557 } | 544 } |
| 558 | 545 |
| 559 .gallery .edit-mode-toolbar .saved { | 546 .gallery .edit-mode-toolbar .saved { |
| 560 -webkit-margin-start: 14px; | 547 -webkit-margin-start: 14px; |
| 561 cursor: inherit; | 548 cursor: inherit; |
| 562 opacity: 0; | 549 opacity: 0; |
| 563 pointer-events: none; | 550 pointer-events: none; |
| (...skipping 810 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1374 .thumbnail-view .animation-thumbnail { | 1361 .thumbnail-view .animation-thumbnail { |
| 1375 background-repeat: no-repeat; | 1362 background-repeat: no-repeat; |
| 1376 background-size: cover; | 1363 background-size: cover; |
| 1377 display: none; | 1364 display: none; |
| 1378 position: absolute; | 1365 position: absolute; |
| 1379 } | 1366 } |
| 1380 | 1367 |
| 1381 .thumbnail-view .animation-thumbnail.animating { | 1368 .thumbnail-view .animation-thumbnail.animating { |
| 1382 display: block; | 1369 display: block; |
| 1383 } | 1370 } |
| OLD | NEW |