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

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

Issue 2873163002: [MD settings] adjust control spacing (Closed)
Patch Set: merge with master Created 3 years, 7 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/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 :host-context([dir=rtl]) button[is='paper-icon-button-light'] { 8 :host-context([dir=rtl]) button[is='paper-icon-button-light'] {
9 transform: scaleX(-1); /* Flip on the X axis (aka mirror). */ 9 transform: scaleX(-1); /* Flip on the X axis (aka mirror). */
10 } 10 }
(...skipping 30 matching lines...) Expand all
41 margin: 0; 41 margin: 0;
42 } 42 }
43 43
44 paper-button[toggles][active] { 44 paper-button[toggles][active] {
45 background-color: var(--paper-grey-300); 45 background-color: var(--paper-grey-300);
46 } 46 }
47 47
48 paper-toggle-button { 48 paper-toggle-button {
49 @apply(--settings-actionable); 49 @apply(--settings-actionable);
50 height: var(--settings-row-min-height); 50 height: var(--settings-row-min-height);
51 width: 31px; 51 width: 36px;
52 } 52 }
53 53
54 span ~ a { 54 span ~ a {
55 -webkit-margin-start: 4px; 55 -webkit-margin-start: 4px;
56 } 56 }
57 57
58 .primary-button { 58 .primary-button {
59 color: var(--google-blue-500); 59 color: var(--google-blue-500);
60 } 60 }
61 61
(...skipping 346 matching lines...) Expand 10 before | Expand all | Expand 10 after
408 transform: rotate(-135deg); 408 transform: rotate(-135deg);
409 } 409 }
410 410
411 .column-header { 411 .column-header {
412 color: var(--paper-grey-600); 412 color: var(--paper-grey-600);
413 font-weight: 500; 413 font-weight: 500;
414 } 414 }
415 </style> 415 </style>
416 </template> 416 </template>
417 </dom-module> 417 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698