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

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

Issue 2477693004: Change color of ripple effects and tab focus of toolbar buttons in Files (Closed)
Patch Set: Sort by the lexicological order of the selectors. Created 4 years, 1 month 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
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 background-color: black; 7 background-color: black;
8 font-size: 84%; 8 font-size: 84%;
9 margin: 0; 9 margin: 0;
10 } 10 }
(...skipping 602 matching lines...) Expand 10 before | Expand all | Expand 10 after
613 613
614 .gallery > .toolbar button { 614 .gallery > .toolbar button {
615 background-color: transparent; 615 background-color: transparent;
616 border: 0; 616 border: 0;
617 padding: 0; 617 padding: 0;
618 position: relative; 618 position: relative;
619 } 619 }
620 620
621 .gallery > .toolbar paper-button:focus, 621 .gallery > .toolbar paper-button:focus,
622 .gallery > .toolbar button:focus { 622 .gallery > .toolbar button:focus {
623 background-color: rgba(0, 0, 0, 0.3); 623 background-color: rgba(255, 255, 255, 0.2);
624 } 624 }
625 625
626 .gallery > .toolbar button:focus { 626 .gallery > .toolbar button:focus {
627 outline: none; 627 outline: none;
628 } 628 }
629 629
630 .gallery > .toolbar button.using-mouse:focus { 630 .gallery > .toolbar button.using-mouse:focus {
631 background-color: transparent; 631 background-color: transparent;
632 } 632 }
633 633
(...skipping 789 matching lines...) Expand 10 before | Expand all | Expand 10 after
1423 .thumbnail-view .animation-thumbnail { 1423 .thumbnail-view .animation-thumbnail {
1424 background-repeat: no-repeat; 1424 background-repeat: no-repeat;
1425 background-size: cover; 1425 background-size: cover;
1426 display: none; 1426 display: none;
1427 position: absolute; 1427 position: absolute;
1428 } 1428 }
1429 1429
1430 .thumbnail-view .animation-thumbnail.animating { 1430 .thumbnail-view .animation-thumbnail.animating {
1431 display: block; 1431 display: block;
1432 } 1432 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698