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

Side by Side Diff: ui/webui/resources/html/action_link_css.html

Issue 2663983002: MD Settings: Fix action-link to be display:inline-block again (Closed)
Patch Set: alphabetize css Created 3 years, 10 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 <!-- "action_link_css.html" replaces "action_link.css" for MD pages. --> 1 <!-- "action_link_css.html" replaces "action_link.css" for MD pages. -->
2 <link rel="import" href="chrome://resources/cr_elements/shared_vars_css.html"> 2 <link rel="import" href="chrome://resources/cr_elements/shared_vars_css.html">
3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.html "> 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.html ">
4 4
5 <dom-module id="action-link"> 5 <dom-module id="action-link">
6 <template> 6 <template>
7 <style> 7 <style>
8 [is='action-link'] { 8 [is='action-link'] {
9 @apply(--cr-actionable); 9 @apply(--cr-actionable);
10 display: inline-block;
10 text-decoration: none; 11 text-decoration: none;
11 } 12 }
12 13
13 [is='action-link'], 14 [is='action-link'],
14 [is='action-link']:active, 15 [is='action-link']:active,
15 [is='action-link']:hover, 16 [is='action-link']:hover,
16 [is='action-link']:visited { 17 [is='action-link']:visited {
17 color: var(--google-blue-700); 18 color: var(--google-blue-700);
18 } 19 }
19 20
20 [is='action-link'][disabled] { 21 [is='action-link'][disabled] {
21 color: var(--paper-grey-600); 22 color: var(--paper-grey-600);
22 cursor: default; 23 cursor: default;
23 opacity: 0.65; 24 opacity: 0.65;
24 pointer-events: none; 25 pointer-events: none;
25 } 26 }
26 </style> 27 </style>
27 </template> 28 </template>
28 </dom-module> 29 </dom-module>
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