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

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

Issue 2556253007: MD Settings: Fix internet focus and styling (Closed)
Patch Set: Feedback Created 4 years 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 3
4 <!-- Common styles for Material Design WebUI. Included directly in 4 <!-- Common styles for Material Design WebUI. Included directly in
5 settings_shared_css.html. --> 5 settings_shared_css.html. -->
6 <dom-module id="cr-shared-style"> 6 <dom-module id="cr-shared-style">
7 <template> 7 <template>
8 <style> 8 <style>
9 button[is='paper-icon-button-light'].subpage-arrow {
10 background-image: url(../images/arrow_right.svg);
11 }
12
13 button[is='paper-icon-button-light'].icon-external {
14 background-image: url(../images/open_in_new.svg);
15 }
dschuyler 2016/12/10 01:09:18 Without [actionable], I believe the arrows will ap
dschuyler 2016/12/10 01:14:01 In case I'm giving the wrong impression when I sai
16
9 /* Chrome spinners should be blue. */ 17 /* Chrome spinners should be blue. */
10 paper-spinner { 18 paper-spinner {
11 --paper-spinner-layer-1-color: var(--google-blue-500); 19 --paper-spinner-layer-1-color: var(--google-blue-500);
12 --paper-spinner-layer-2-color: var(--google-blue-500); 20 --paper-spinner-layer-2-color: var(--google-blue-500);
13 --paper-spinner-layer-3-color: var(--google-blue-500); 21 --paper-spinner-layer-3-color: var(--google-blue-500);
14 --paper-spinner-layer-4-color: var(--google-blue-500); 22 --paper-spinner-layer-4-color: var(--google-blue-500);
15 } 23 }
16 24
17 .action-button { 25 .action-button {
18 background: var(--google-blue-500); 26 background: var(--google-blue-500);
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 [selectable]:focus, 78 [selectable]:focus,
71 [selectable] > :focus { 79 [selectable] > :focus {
72 @apply(--cr-selectable-focus); 80 @apply(--cr-selectable-focus);
73 } 81 }
74 [selectable] > * { 82 [selectable] > * {
75 @apply(--cr-actionable); 83 @apply(--cr-actionable);
76 } 84 }
77 </style> 85 </style>
78 </template> 86 </template>
79 </dom-module> 87 </dom-module>
OLDNEW
« no previous file with comments | « ui/webui/resources/cr_elements/network/cr_network_list_item.js ('k') | ui/webui/resources/cr_elements_resources.grdp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698