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

Unified Diff: chrome/browser/resources/settings/passwords_and_forms_page/passwords_shared_css.html

Issue 1947293002: Implement autofill Address and Credit Card lists. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 7 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 side-by-side diff with in-line comments
Download patch
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>

Powered by Google App Engine
This is Rietveld 408576698