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

Side by Side Diff: chrome/browser/resources/settings/settings_shared_css.html

Issue 2152503002: Make paper-toggle-button actionable (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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
« no previous file with comments | « chrome/browser/resources/settings/appearance_page/appearance_page.html ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <link rel="import" href="chrome://resources/cr_elements/shared_style_css.html"> 1 <link rel="import" href="chrome://resources/cr_elements/shared_style_css.html">
2 <link rel="import" href="/settings_root_css.html"> 2 <link rel="import" href="/settings_root_css.html">
3 3
4 <!-- Common styles for Material Design settings. --> 4 <!-- Common styles for Material Design settings. -->
5 <dom-module id="settings-shared"> 5 <dom-module id="settings-shared">
6 <template> 6 <template>
7 <style include="cr-shared-style"> 7 <style include="cr-shared-style">
8 h2 { 8 h2 {
9 align-items: center; 9 align-items: center;
10 display: flex; 10 display: flex;
11 font-size: 100%; 11 font-size: 100%;
12 font-weight: 500; 12 font-weight: 500;
13 margin: 0; 13 margin: 0;
14 min-height: var(--settings-row-min-height); 14 min-height: var(--settings-row-min-height);
15 } 15 }
16 16
17 iron-icon[icon='cr:check'], 17 iron-icon[icon='cr:check'],
18 iron-icon[icon='settings:done'] { 18 iron-icon[icon='settings:done'] {
19 --iron-icon-fill-color: var(--google-green-500); 19 --iron-icon-fill-color: var(--google-green-500);
20 } 20 }
21 21
22 paper-button { 22 paper-button {
23 margin: 0; 23 margin: 0;
24 } 24 }
25 25
26 paper-button[toggles][active] { 26 paper-button[toggles][active] {
27 background-color: var(--paper-grey-300); 27 background-color: var(--paper-grey-300);
28 } 28 }
29 29
30 paper-toggle-button {
31 @apply(--settings-actionable);
32 }
33
30 paper-dropdown-menu { 34 paper-dropdown-menu {
31 --iron-icon-fill-color: var(--paper-grey-600); 35 --iron-icon-fill-color: var(--paper-grey-600);
32 --paper-font-subhead: { 36 --paper-font-subhead: {
33 font-size: inherit; 37 font-size: inherit;
34 }; 38 };
35 --paper-input-container-underline: { 39 --paper-input-container-underline: {
36 background: var(--paper-grey-300); 40 background: var(--paper-grey-300);
37 }; 41 };
38 } 42 }
39 43
(...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after
334 338
335 .favicon-image { 339 .favicon-image {
336 background-repeat: no-repeat; 340 background-repeat: no-repeat;
337 background-size: contain; 341 background-size: contain;
338 height: 16px; 342 height: 16px;
339 width: 16px; 343 width: 16px;
340 } 344 }
341 </style> 345 </style>
342 </template> 346 </template>
343 </dom-module> 347 </dom-module>
OLDNEW
« no previous file with comments | « chrome/browser/resources/settings/appearance_page/appearance_page.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698