Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(183)

Side by Side Diff: ui/file_manager/gallery/css/gallery.css

Issue 1919173006: Gallery: fix ripple animation of overwrite original checkbox (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | ui/file_manager/gallery/gallery.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | ui/file_manager/gallery/gallery.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698