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

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

Issue 2106103006: MD Settings: cr/cros - Guest mode page visibility (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed comments + took out cr_element parts 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
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;
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after
263 min-height: var(--settings-row-min-height); 263 min-height: var(--settings-row-min-height);
264 padding: 0 20px; 264 padding: 0 20px;
265 } 265 }
266 266
267 /* 267 /*
268 * We use an explicit tag to remove the top border, rather than a 268 * We use an explicit tag to remove the top border, rather than a
269 * :first-of-type modifier. This is a conscious choice, please consult 269 * :first-of-type modifier. This is a conscious choice, please consult
270 * with dbeam@ or dschuyler@ prior to changing it. 270 * with dbeam@ or dschuyler@ prior to changing it.
271 */ 271 */
272 .settings-box.first, 272 .settings-box.first,
273 .settings-box[first],
michaelpg 2016/07/21 21:58:45 remove
Moe 2016/07/22 16:59:56 done.
273 .settings-box.continuation { 274 .settings-box.continuation {
274 border-top: none; 275 border-top: none;
275 } 276 }
276 277
277 .settings-box.block { 278 .settings-box.block {
278 display: block; 279 display: block;
279 } 280 }
280 281
281 /* 282 /*
282 * A row with two lines of text. Often the lower line will be .secondary. 283 * A row with two lines of text. Often the lower line will be .secondary.
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
348 349
349 .favicon-image { 350 .favicon-image {
350 background-repeat: no-repeat; 351 background-repeat: no-repeat;
351 background-size: contain; 352 background-size: contain;
352 height: 16px; 353 height: 16px;
353 width: 16px; 354 width: 16px;
354 } 355 }
355 </style> 356 </style>
356 </template> 357 </template>
357 </dom-module> 358 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698