Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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"> | |
| 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.html "> | |
|
Dan Beam
2017/01/26 05:43:37
this needs a <link rel="import" href="chrome://res
| |
| 4 | |
| 5 <dom-module id="action-link"> | |
| 6 <template> | |
| 7 <style> | |
| 8 [is='action-link'] { | |
| 9 @apply(--cr-actionable); | |
| 10 text-decoration: none; | |
| 11 } | |
| 12 | |
| 13 [is='action-link'], | |
| 14 [is='action-link']:active, | |
| 15 [is='action-link']:hover, | |
| 16 [is='action-link']:visited { | |
| 17 color: var(--google-blue-700); | |
| 18 } | |
| 19 | |
| 20 [is='action-link'][disabled] { | |
| 21 color: var(--paper-grey-600); | |
| 22 cursor: default; | |
| 23 opacity: 0.65; | |
| 24 pointer-events: none; | |
| 25 } | |
| 26 </style> | |
| 27 </template> | |
| 28 </dom-module> | |
| OLD | NEW |