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

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: 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..42a7a0b99d1fc1693d9ae20b3e820a044ad0a78f
--- /dev/null
+++ b/chrome/browser/resources/settings/passwords_and_forms_page/passwords_shared_css.html
@@ -0,0 +1,49 @@
+<!-- Common styles for Passwords and Forms -->
+<dom-module id="passwords-shared">
+ <template>
+ <style>
+ :host {
+ display: flex;
+ flex-direction: column;
+ }
+
+ .column-header {
+ color: var(--google-grey-500);
+ font-weight: 500;
+ }
+
+ .heading {
+ -webkit-margin-start: 20px;
+ 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);
+ width: 20px;
+ }
+
+ .item-list {
+ -webkit-margin-end: 20px;
+ -webkit-margin-start: 56px;
+ margin-bottom: 16px;
+ }
+
+ .list-with-header > div:first-of-type {
+ border-top: 1px solid #e0e0e0;
+ }
+
+ [is='action-link'] {
+ text-decoration: none;
+ }
+
+ [is='action-link']:hover {
+ cursor: pointer;
+ text-decoration: underline;
+ }
+ </style>
+ </template>
+</dom-module>

Powered by Google App Engine
This is Rietveld 408576698