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

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

Issue 1957823002: [MD settings] layout of the site settings page (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge with master Created 4 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 <!-- Common styles for Material Design settings. --> 1 <!-- Common styles for Material Design settings. -->
2 <dom-module id="settings-shared"> 2 <dom-module id="settings-shared">
3 <template> 3 <template>
4 <style> 4 <style>
5 :root { 5 :root {
6 --checkbox-margin-start: 2px; 6 --checkbox-margin-start: 2px;
7 --checkbox-size: 16px; 7 --checkbox-size: 16px;
8 --checkbox-spacing: 18px; 8 --checkbox-spacing: 18px;
9 --iron-icon-fill-color: var(--paper-grey-600); 9 --iron-icon-fill-color: var(--paper-grey-600);
10 --iron-icon-height: 20px; 10 --iron-icon-height: 20px;
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 } 137 }
138 138
139 .action-button, 139 .action-button,
140 .cancel-button { 140 .cancel-button {
141 font-weight: 500; 141 font-weight: 500;
142 } 142 }
143 143
144 .list-frame { 144 .list-frame {
145 @apply(--layout-center); 145 @apply(--layout-center);
146 -webkit-padding-end: 20px; 146 -webkit-padding-end: 20px;
147 -webkit-padding-start: 48px; 147 -webkit-padding-start: 56px;
148 display: block; 148 display: block;
149 padding-bottom: 0; 149 padding-bottom: 0;
150 padding-top: 0; 150 padding-top: 0;
151 } 151 }
152 152
153 .list-frame .secondary, 153 .list-frame .secondary,
154 .list-item .secondary { 154 .list-item .secondary {
155 @apply(--settings-secondary); 155 @apply(--settings-secondary);
156 } 156 }
157 157
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
274 274
275 .favicon-image { 275 .favicon-image {
276 background-repeat: no-repeat; 276 background-repeat: no-repeat;
277 background-size: contain; 277 background-size: contain;
278 height: 16px; 278 height: 16px;
279 width: 16px; 279 width: 16px;
280 } 280 }
281 </style> 281 </style>
282 </template> 282 </template>
283 </dom-module> 283 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698