Chromium Code Reviews| Index: chrome/browser/resources/settings/passwords_and_forms_page/passwords_shared_css.html |
| diff --git a/chrome/browser/resources/settings/passwords_and_forms_page/passwords_shared_css.html b/chrome/browser/resources/settings/passwords_and_forms_page/passwords_shared_css.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..8f3eef527ee5256b2f4937201f64f42471553393 |
| --- /dev/null |
| +++ b/chrome/browser/resources/settings/passwords_and_forms_page/passwords_shared_css.html |
| @@ -0,0 +1,40 @@ |
| +<!-- Common styles for Passwords and Forms --> |
| +<dom-module id="passwords-shared"> |
| + <template> |
| + <style> |
| + :host { |
| + -webkit-margin-end: 20px; |
| + -webkit-margin-start: 20px; |
| + display: flex; |
| + flex-direction: column; |
| + } |
| + |
| + .column-header { |
| + color: var(--google-grey-500); |
| + font-weight: 500; |
| + } |
| + |
| + .heading { |
| + margin-bottom: 8px; |
| + } |
| + |
| + paper-icon-button { |
| + -webkit-margin-end: 0; |
| + -webkit-margin-start: 20px; |
| + -webkit-padding-end: 0; |
| + -webkit-padding-start: 0; |
| + color: var(--google-grey-600); |
|
Dan Beam
2016/05/26 23:40:36
google-grey-600 doesn't exist, did you mean paper-
|
| + width: 20px; |
| + } |
| + |
| + .item-list { |
| + -webkit-margin-start: 36px; |
| + margin-bottom: 16px; |
| + } |
| + |
| + .list-with-header > div:first-of-type { |
| + border-top: var(--settings-separator-line); |
| + } |
| + </style> |
| + </template> |
| +</dom-module> |