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

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

Issue 2249873007: Settings: Introduce selectable styling and apply to search engines (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix test Created 4 years, 4 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 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 /* Chrome spinners should be blue. */ 9 /* Chrome spinners should be blue. */
10 paper-spinner { 10 paper-spinner {
(...skipping 22 matching lines...) Expand all
33 } 33 }
34 34
35 .action-button, 35 .action-button,
36 .cancel-button { 36 .cancel-button {
37 font-weight: 500; 37 font-weight: 500;
38 } 38 }
39 39
40 [actionable] { 40 [actionable] {
41 @apply(--cr-actionable); 41 @apply(--cr-actionable);
42 } 42 }
43
44 [selectable] :focus {
45 @apply(--cr-selectable-focus);
46 }
47 [selectable] > * {
48 @apply(--cr-actionable);
49 }
43 </style> 50 </style>
44 </template> 51 </template>
45 </dom-module> 52 </dom-module>
OLDNEW
« no previous file with comments | « chrome/test/data/webui/settings/search_engines_page_test.js ('k') | ui/webui/resources/cr_elements/shared_vars_css.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698