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

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

Issue 2280333002: [MD settings] "dense" paper toggle buttons (Closed)
Patch Set: added semi-colons Created 4 years, 3 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 | « no previous file | chrome/browser/resources/settings/settings_vars_css.html » ('j') | 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_vars_css.html"> 2 <link rel="import" href="/settings_vars_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 /* Use <h2> as the "sub-header" mentioned in the UX design docs. */ 8 /* Use <h2> as the "sub-header" mentioned in the UX design docs. */
9 h2 { 9 h2 {
10 align-items: center; 10 align-items: center;
(...skipping 14 matching lines...) Expand all
25 paper-button { 25 paper-button {
26 margin: 0; 26 margin: 0;
27 } 27 }
28 28
29 paper-button[toggles][active] { 29 paper-button[toggles][active] {
30 background-color: var(--paper-grey-300); 30 background-color: var(--paper-grey-300);
31 } 31 }
32 32
33 paper-toggle-button { 33 paper-toggle-button {
34 @apply(--settings-actionable); 34 @apply(--settings-actionable);
35 height: 20px;
36 width: 34px;
35 } 37 }
36 38
37 paper-dropdown-menu { 39 paper-dropdown-menu {
38 --iron-icon-fill-color: var(--paper-grey-600); 40 --iron-icon-fill-color: var(--paper-grey-600);
39 --paper-font-subhead: { 41 --paper-font-subhead: {
40 font-size: inherit; 42 font-size: inherit;
41 }; 43 };
42 --paper-input-container-underline: { 44 --paper-input-container-underline: {
43 background: var(--paper-grey-300); 45 background: var(--paper-grey-300);
44 }; 46 };
(...skipping 333 matching lines...) Expand 10 before | Expand all | Expand 10 after
378 /* Turns the arrow direction downwards, when the bubble is placed above 380 /* Turns the arrow direction downwards, when the bubble is placed above
379 * the anchor element */ 381 * the anchor element */
380 .search-bubble-innards.above::after { 382 .search-bubble-innards.above::after {
381 -webkit-transform: rotate(-135deg); 383 -webkit-transform: rotate(-135deg);
382 bottom: -5px; 384 bottom: -5px;
383 top: auto; 385 top: auto;
384 } 386 }
385 </style> 387 </style>
386 </template> 388 </template>
387 </dom-module> 389 </dom-module>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/settings/settings_vars_css.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698