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: Restore cr:settings 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 /* Chrome spinners should be blue. */ 9 /* Chrome spinners should be blue. */
10 paper-spinner { 10 paper-spinner {
(...skipping 23 matching lines...) Expand all
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 43
44 button[is='paper-icon-button-light'].subpage-arrow {
45 background-image: url(../images/arrow_right.svg);
46 }
47
48 button[is='paper-icon-button-light'].icon-external {
49 background-image: url(../images/open_in_new.svg);
50 }
51
52 .subpage-arrow,
53 .icon-external {
54 display: none;
55 }
56
57 [actionable] :-webkit-any(.subpage-arrow, .icon-external),
58 [actionable]:-webkit-any(.subpage-arrow, .icon-external) {
59 display: block;
60 }
61
44 [scrollable] { 62 [scrollable] {
45 border-color: transparent; 63 border-color: transparent;
46 border-style: solid; 64 border-style: solid;
47 border-width: 1px 0; 65 border-width: 1px 0;
48 overflow-y: auto; 66 overflow-y: auto;
49 } 67 }
50 [scrollable].is-scrolled { 68 [scrollable].is-scrolled {
51 border-top-color: var(--google-grey-300); 69 border-top-color: var(--google-grey-300);
52 } 70 }
53 [scrollable].can-scroll:not(.scrolled-to-bottom) { 71 [scrollable].can-scroll:not(.scrolled-to-bottom) {
(...skipping 16 matching lines...) Expand all
70 [selectable]:focus, 88 [selectable]:focus,
71 [selectable] > :focus { 89 [selectable] > :focus {
72 @apply(--cr-selectable-focus); 90 @apply(--cr-selectable-focus);
73 } 91 }
74 [selectable] > * { 92 [selectable] > * {
75 @apply(--cr-actionable); 93 @apply(--cr-actionable);
76 } 94 }
77 </style> 95 </style>
78 </template> 96 </template>
79 </dom-module> 97 </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