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

Side by Side Diff: chrome/browser/resources/chromeos/login/gaia_icon_button.css

Issue 1142253002: Don't show pointer cursor over an icon button if it is disabled. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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 | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* Copyright 2015 The Chromium Authors. All rights reserved. 1 /* Copyright 2015 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 5
6 :host { 6 :host {
7 background: transparent; 7 background: transparent;
8 border: none; 8 border: none;
9 border-radius: 50%; 9 border-radius: 50%;
10 height: 24px; 10 height: 24px;
(...skipping 11 matching lines...) Expand all
22 background: rgba(0, 0, 0, .16); 22 background: rgba(0, 0, 0, .16);
23 border-color: transparent; 23 border-color: transparent;
24 opacity: 0.75; 24 opacity: 0.75;
25 } 25 }
26 26
27 :host(:active) { 27 :host(:active) {
28 background: rgba(0, 0, 0, .12); 28 background: rgba(0, 0, 0, .12);
29 opacity: 1.0; 29 opacity: 1.0;
30 } 30 }
31 31
32 :host([disabled]) {
33 cursor: default;
34 }
35
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698