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

Side by Side Diff: ui/webui/resources/css/action_link.css

Issue 2768673002: [WebUI] Modify action-link's .no-outline on input only.
Patch Set: Created 3 years, 9 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
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 [is='action-link'] { 5 [is='action-link'] {
6 cursor: pointer; 6 cursor: pointer;
7 display: inline-block; 7 display: inline-block;
8 text-decoration: none; 8 text-decoration: none;
9 } 9 }
10 10
11 [is='action-link']:hover { 11 [is='action-link']:hover {
12 text-decoration: underline; 12 text-decoration: underline;
13 } 13 }
14 14
15 [is='action-link']:active { 15 [is='action-link']:active {
16 color: rgb(5, 37, 119); 16 color: rgb(5, 37, 119);
17 text-decoration: underline; 17 text-decoration: underline;
18 } 18 }
19 19
20 [is='action-link'][disabled] { 20 [is='action-link'][disabled] {
21 color: #999; 21 color: #999;
22 cursor: default; 22 cursor: default;
23 pointer-events: none; 23 pointer-events: none;
24 text-decoration: none; 24 text-decoration: none;
25 } 25 }
26 26
27 [is='action-link'].no-outline { 27 [is='action-link'].no-outline:focus {
28 outline: none; 28 outline: none;
29 } 29 }
OLDNEW
« no previous file with comments | « no previous file | ui/webui/resources/html/action_link_css.html » ('j') | ui/webui/resources/js/action_link.js » ('J')

Powered by Google App Engine
This is Rietveld 408576698