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

Unified 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, 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 side-by-side diff with in-line comments
Download patch
« 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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..94ba00edf9662988066f127b02784789bb1f9935
--- /dev/null
+++ b/ui/webui/resources/html/action_link_css.html
@@ -0,0 +1,28 @@
+<!-- "action_link_css.html" replaces "action_link.css" for MD pages. -->
+<link rel="import" href="chrome://resources/cr_elements/shared_vars_css.html">
+<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
+
+<dom-module id="action-link">
+ <template>
+ <style>
+ [is='action-link'] {
+ @apply(--cr-actionable);
+ 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>
« 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