Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <link rel="import" href="/settings_shared_css.html"> | |
| 2 | |
| 3 <!-- Common styles for Material Design settings. --> | |
| 4 <dom-module id="internet-shared"> | |
| 5 <template> | |
| 6 <style include="settings-shared"> | |
| 7 paper-input-container { | |
| 8 --paper-input-container-input: { | |
| 9 color: var(--paper-grey-600); | |
| 10 font-size: 100%; | |
|
dschuyler
2016/07/29 02:07:22
A font-size: 100%; just looks strange to me.
Is th
stevenjb
2016/07/29 17:35:18
paper-input-container applies --paper-font-subhead
| |
| 11 font-weight: 400; | |
| 12 }; | |
| 13 margin-bottom: 0; | |
| 14 margin-top: -9px; | |
| 15 } | |
| 16 | |
| 17 .indented { | |
| 18 -webkit-margin-start: 20px; | |
| 19 } | |
| 20 | |
| 21 .settings-box.embedded { | |
| 22 align-self: stretch; | |
| 23 border-top: none; | |
| 24 padding: 0; | |
| 25 } | |
|
dschuyler
2016/07/29 02:07:22
Is this something that could or should be
used els
stevenjb
2016/07/29 17:35:18
Possibly. The only other place I do this is in dev
| |
| 26 </style> | |
| 27 </template> | |
| 28 </dom-module> | |
| OLD | NEW |