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

Side by Side Diff: ui/file_manager/file_manager/foreground/css/file_manager.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 /* Special attribute used in HTML to hide elements. */ 5 /* Special attribute used in HTML to hide elements. */
6 body:not([type]) [visibleif] { 6 body:not([type]) [visibleif] {
7 display: none; 7 display: none;
8 } 8 }
9 9
10 body[type='folder'] [invisibleif~='folder'], 10 body[type='folder'] [invisibleif~='folder'],
(...skipping 430 matching lines...) Expand 10 before | Expand all | Expand 10 after
441 .dialog-header .ripples > paper-ripple { 441 .dialog-header .ripples > paper-ripple {
442 color: black; 442 color: black;
443 } 443 }
444 444
445 body.check-select .dialog-header button paper-ripple { 445 body.check-select .dialog-header button paper-ripple {
446 color: rgb(90, 90, 90); 446 color: rgb(90, 90, 90);
447 } 447 }
448 448
449 .dialog-header 449 .dialog-header
450 button:focus:not(.using-mouse):not([tabindex='-1']):not(:active) { 450 button:focus:not(.using-mouse):not([tabindex='-1']):not(:active) {
451 background-color: rgba(90, 90, 90, 0.15); 451 background-color: rgba(255, 255, 255, 0.20);
452 } 452 }
453 453
454 body.check-select .dialog-header 454 body.check-select .dialog-header
455 button:focus:not(.using-mouse):not([tabindex='-1']):not(:active) { 455 button:focus:not(.using-mouse):not([tabindex='-1']):not(:active) {
456 background-color: rgba(153, 153, 153, 0.20); 456 background-color: rgba(153, 153, 153, 0.20);
457 } 457 }
458 458
459 .dialog-header iron-icon, 459 .dialog-header iron-icon,
460 .dialog-header .icon { 460 .dialog-header .icon {
461 height: 16px; 461 height: 16px;
(...skipping 1946 matching lines...) Expand 10 before | Expand all | Expand 10 after
2408 } 2408 }
2409 2409
2410 #quick-view { 2410 #quick-view {
2411 z-index: 505; /* Must be above the scroll bar (500). */ 2411 z-index: 505; /* Must be above the scroll bar (500). */
2412 } 2412 }
2413 2413
2414 /* Preventing FOUC */ 2414 /* Preventing FOUC */
2415 paper-input-container:unresolved { 2415 paper-input-container:unresolved {
2416 display: none; 2416 display: none;
2417 } 2417 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698