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