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

Side by Side Diff: ui/webui/resources/cr_elements/shared_style_css.html

Issue 2838963003: WebUI: Unify [hidden] attribute styling rules. (Closed)
Patch Set: Update MD Bookmarks too Created 3 years, 7 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
1 <link rel="import" href="chrome://resources/html/polymer.html"> 1 <link rel="import" href="chrome://resources/html/polymer.html">
2 <link rel="import" href="chrome://resources/cr_elements/shared_vars_css.html"> 2 <link rel="import" href="chrome://resources/cr_elements/shared_vars_css.html">
3 <link rel="import" href="hidden_style_css.html">
3 4
4 <!-- Common styles for Material Design WebUI. Included directly in 5 <!-- Common styles for Material Design WebUI. Included directly in
5 settings_shared_css.html. --> 6 settings_shared_css.html. -->
6 <dom-module id="cr-shared-style"> 7 <dom-module id="cr-shared-style">
7 <template> 8 <template>
8 <style> 9 <style include="cr-hidden-style">
9 /* Chrome spinners should be blue. */ 10 /* Chrome spinners should be blue. */
10 paper-spinner { 11 paper-spinner {
11 --paper-spinner-layer-1-color: var(--google-blue-500); 12 --paper-spinner-layer-1-color: var(--google-blue-500);
12 --paper-spinner-layer-2-color: var(--google-blue-500); 13 --paper-spinner-layer-2-color: var(--google-blue-500);
13 --paper-spinner-layer-3-color: var(--google-blue-500); 14 --paper-spinner-layer-3-color: var(--google-blue-500);
14 --paper-spinner-layer-4-color: var(--google-blue-500); 15 --paper-spinner-layer-4-color: var(--google-blue-500);
15 } 16 }
16 17
17 .action-button { 18 .action-button {
18 background: var(--google-blue-500); 19 background: var(--google-blue-500);
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 [selectable]:focus, 104 [selectable]:focus,
104 [selectable] > :focus { 105 [selectable] > :focus {
105 @apply(--cr-selectable-focus); 106 @apply(--cr-selectable-focus);
106 } 107 }
107 [selectable] > * { 108 [selectable] > * {
108 @apply(--cr-actionable); 109 @apply(--cr-actionable);
109 } 110 }
110 </style> 111 </style>
111 </template> 112 </template>
112 </dom-module> 113 </dom-module>
OLDNEW
« no previous file with comments | « ui/webui/resources/cr_elements/hidden_style_css.html ('k') | ui/webui/resources/cr_elements_resources.grdp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698