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

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

Issue 2894773002: [MD settings] remove unwanted separator line (Closed)
Patch Set: mirror icons 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 <link rel="import" href="hidden_style_css.html">
4 4
5 <!-- Common styles for Material Design WebUI. Included directly in 5 <!-- Common styles for Material Design WebUI. Included directly in
6 settings_shared_css.html. --> 6 settings_shared_css.html. -->
7 <dom-module id="cr-shared-style"> 7 <dom-module id="cr-shared-style">
8 <template> 8 <template>
9 <style include="cr-hidden-style"> 9 <style include="cr-hidden-style">
10 :host-context([dir=rtl]) button[is='paper-icon-button-light'] {
11 transform: scaleX(-1); /* Flip on the X axis (aka mirror). */
12 }
dschuyler 2017/05/23 01:24:55 Moved here from settings_shared_css.html
13
10 /* Chrome spinners should be blue. */ 14 /* Chrome spinners should be blue. */
11 paper-spinner { 15 paper-spinner {
12 --paper-spinner-layer-1-color: var(--google-blue-500); 16 --paper-spinner-layer-1-color: var(--google-blue-500);
13 --paper-spinner-layer-2-color: var(--google-blue-500); 17 --paper-spinner-layer-2-color: var(--google-blue-500);
14 --paper-spinner-layer-3-color: var(--google-blue-500); 18 --paper-spinner-layer-3-color: var(--google-blue-500);
15 --paper-spinner-layer-4-color: var(--google-blue-500); 19 --paper-spinner-layer-4-color: var(--google-blue-500);
16 } 20 }
17 21
18 .action-button { 22 .action-button {
19 background: var(--google-blue-500); 23 background: var(--google-blue-500);
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 [selectable]:focus, 118 [selectable]:focus,
115 [selectable] > :focus { 119 [selectable] > :focus {
116 @apply(--cr-selectable-focus); 120 @apply(--cr-selectable-focus);
117 } 121 }
118 [selectable] > * { 122 [selectable] > * {
119 @apply(--cr-actionable); 123 @apply(--cr-actionable);
120 } 124 }
121 </style> 125 </style>
122 </template> 126 </template>
123 </dom-module> 127 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698