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

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: move action_link specific stuff to resources/html/action_link_css.html 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/polymer/v1_0/paper-styles/color.html ">
2
3 <dom-module id="action-link">
4 <template>
5 <style>
6 [is='action-link'] {
7 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
8 text-decoration: none;
9 }
10
11 [is='action-link'],
12 [is='action-link']:active,
13 [is='action-link']:hover,
14 [is='action-link']:visited {
15 color: var(--google-blue-700);
16 }
17
18 [is='action-link'][disabled] {
19 color: var(--paper-grey-600);
20 cursor: default;
21 opacity: 0.65;
22 pointer-events: none;
23 }
24 </style>
25 </template>
26 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698