Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 197 .list-item > .middle { | 197 .list-item > .middle { |
| 198 flex: 1; | 198 flex: 1; |
| 199 margin: 8px 16px; | 199 margin: 8px 16px; |
| 200 } | 200 } |
| 201 | 201 |
| 202 /* The start (left in LTR) part (horizontally) of a list item. */ | 202 /* The start (left in LTR) part (horizontally) of a list item. */ |
| 203 .list-item > .start { | 203 .list-item > .start { |
| 204 flex: 1; | 204 flex: 1; |
| 205 } | 205 } |
| 206 | 206 |
| 207 .list-item > label.start { | |
|
dschuyler
2016/06/20 22:46:31
Do we need 'label', can this be
.list-item > .star
michaelpg
2016/06/20 23:09:34
hmm, I think this is obsolete now
| |
| 208 align-items: center; | |
| 209 display: flex; | |
| 210 flex: 1; | |
| 211 } | |
| 212 | |
| 213 .list-item > label span[disabled] { | |
| 214 opacity: .5; /* TODO(michaelpg): check this value with bettes. */ | |
|
dschuyler
2016/06/20 22:46:31
It's still a good idea to check with bettes@
when
michaelpg
2016/06/20 23:09:34
Done.
| |
| 215 } | |
| 216 | |
| 207 .list-item > paper-icon-item { | 217 .list-item > paper-icon-item { |
| 208 padding: 0; | 218 padding: 0; |
| 209 } | 219 } |
| 210 | 220 |
| 211 /* This button has no ink ripple. */ | 221 /* This button has no ink ripple. */ |
| 212 .list-item.list-button { | 222 .list-item.list-button { |
| 213 align-items: center; | 223 align-items: center; |
| 214 color: var(--google-blue-500); | 224 color: var(--google-blue-500); |
| 215 font-weight: 500; | 225 font-weight: 500; |
| 216 } | 226 } |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 307 | 317 |
| 308 .favicon-image { | 318 .favicon-image { |
| 309 background-repeat: no-repeat; | 319 background-repeat: no-repeat; |
| 310 background-size: contain; | 320 background-size: contain; |
| 311 height: 16px; | 321 height: 16px; |
| 312 width: 16px; | 322 width: 16px; |
| 313 } | 323 } |
| 314 </style> | 324 </style> |
| 315 </template> | 325 </template> |
| 316 </dom-module> | 326 </dom-module> |
| OLD | NEW |