| OLD | NEW |
| 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 h2 { | 8 h2 { |
| 9 align-items: center; | 9 align-items: center; |
| 10 display: flex; | 10 display: flex; |
| (...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 227 .list-item > label span[disabled] { | 227 .list-item > label span[disabled] { |
| 228 opacity: .65; /* TODO(michaelpg): check this value with bettes. */ | 228 opacity: .65; /* TODO(michaelpg): check this value with bettes. */ |
| 229 } | 229 } |
| 230 | 230 |
| 231 .list-item > paper-icon-item { | 231 .list-item > paper-icon-item { |
| 232 padding: 0; | 232 padding: 0; |
| 233 } | 233 } |
| 234 | 234 |
| 235 /* This button has no ink ripple. */ | 235 /* This button has no ink ripple. */ |
| 236 .list-item.list-button { | 236 .list-item.list-button { |
| 237 @apply(--settings-actionable); |
| 237 align-items: center; | 238 align-items: center; |
| 238 color: var(--google-blue-500); | 239 color: var(--google-blue-500); |
| 239 font-weight: 500; | 240 font-weight: 500; |
| 240 } | 241 } |
| 241 | 242 |
| 242 /* A settings-box is a horizontal row of text or controls within a | 243 /* A settings-box is a horizontal row of text or controls within a |
| 243 * setting section (page or subpage). */ | 244 * setting section (page or subpage). */ |
| 244 .settings-box { | 245 .settings-box { |
| 245 align-items: center; | 246 align-items: center; |
| 246 border-top: var(--settings-separator-line); | 247 border-top: var(--settings-separator-line); |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 362 content: ''; | 363 content: ''; |
| 363 height: 10px; | 364 height: 10px; |
| 364 position: absolute; | 365 position: absolute; |
| 365 right: -5px; | 366 right: -5px; |
| 366 top: 10px; | 367 top: 10px; |
| 367 width: 10px; | 368 width: 10px; |
| 368 } | 369 } |
| 369 </style> | 370 </style> |
| 370 </template> | 371 </template> |
| 371 </dom-module> | 372 </dom-module> |
| OLD | NEW |