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

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

Issue 2052573003: MD Settings: Update spell check section to spec (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@LanguagePolish
Patch Set: Created 4 years, 6 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="/settings_root_css.html"> 1 <link rel="import" href="/settings_root_css.html">
2 2
3 <!-- Common styles for Material Design settings. --> 3 <!-- Common styles for Material Design settings. -->
4 <dom-module id="settings-shared"> 4 <dom-module id="settings-shared">
5 <template> 5 <template>
6 <style> 6 <style>
7 h2 { 7 h2 {
8 align-items: center; 8 align-items: center;
9 display: flex; 9 display: flex;
10 font-size: 100%; 10 font-size: 100%;
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 overflow: hidden; 180 overflow: hidden;
181 white-space: nowrap; 181 white-space: nowrap;
182 } 182 }
183 183
184 .list-item > .start { 184 .list-item > .start {
185 flex: 1; 185 flex: 1;
186 overflow: hidden; 186 overflow: hidden;
187 white-space: nowrap; 187 white-space: nowrap;
188 } 188 }
189 189
190 .list-item > label.start {
191 align-items: center;
192 display: flex;
dschuyler 2016/06/10 21:49:46 Can we move the flex: 1 here and remove the .lis
michaelpg 2016/06/20 19:55:37 Done.
193 }
194
195 .list-item > label.start > span {
196 flex: 1;
197 }
198
199 .list-item > label span[disabled] {
200 opacity: .5; /* TODO(michaelpg): check this value with bettes. */
201 }
202
190 .list-item > paper-icon-item { 203 .list-item > paper-icon-item {
191 padding: 0; 204 padding: 0;
192 } 205 }
193 206
194 /* This button has no ink ripple. */ 207 /* This button has no ink ripple. */
195 .list-item.list-button { 208 .list-item.list-button {
196 align-items: center; 209 align-items: center;
197 color: var(--google-blue-500); 210 color: var(--google-blue-500);
198 font-weight: 500; 211 font-weight: 500;
199 } 212 }
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
274 287
275 .favicon-image { 288 .favicon-image {
276 background-repeat: no-repeat; 289 background-repeat: no-repeat;
277 background-size: contain; 290 background-size: contain;
278 height: 16px; 291 height: 16px;
279 width: 16px; 292 width: 16px;
280 } 293 }
281 </style> 294 </style>
282 </template> 295 </template>
283 </dom-module> 296 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698