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

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 comment about action_link_css to action_likn_css.html Created 3 years, 10 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 <!-- "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>
OLDNEW
« no previous file with comments | « chrome/test/data/webui/settings/startup_urls_page_test.js ('k') | ui/webui/resources/webui_resources.grd » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698