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

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

Issue 2639373002: MD Settings: clean up text controls (links, buttons) (Closed)
Patch Set: add comment for action_link_css Created 3 years, 11 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
(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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698