Chromium Code Reviews| Index: ui/webui/resources/html/action_link_css.html |
| diff --git a/ui/webui/resources/html/action_link_css.html b/ui/webui/resources/html/action_link_css.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..1289fa72b1f8786d736f7959c733c282642bdb61 |
| --- /dev/null |
| +++ b/ui/webui/resources/html/action_link_css.html |
| @@ -0,0 +1,26 @@ |
| +<link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.html"> |
| + |
| +<dom-module id="action-link"> |
| + <template> |
| + <style> |
| + [is='action-link'] { |
| + cursor: pointer; |
|
Dan Beam
2017/01/24 05:25:33
this should use @apply(--settings-actionable) or -
scottchen
2017/01/24 19:39:12
This is outside of settings, so I'll use --cr-acti
|
| + text-decoration: none; |
| + } |
| + |
| + [is='action-link'], |
| + [is='action-link']:active, |
| + [is='action-link']:hover, |
| + [is='action-link']:visited { |
| + color: var(--google-blue-700); |
| + } |
| + |
| + [is='action-link'][disabled] { |
| + color: var(--paper-grey-600); |
| + cursor: default; |
| + opacity: 0.65; |
| + pointer-events: none; |
| + } |
| + </style> |
| + </template> |
| +</dom-module> |