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

Unified Diff: chrome/browser/resources/options/autofill_edit_overlay.css

Issue 243013004: i18n address editing in chrome://settings/autofillEditAddress. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix windows build. Created 6 years, 8 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/options/autofill_edit_overlay.css
diff --git a/chrome/browser/resources/options/autofill_edit_overlay.css b/chrome/browser/resources/options/autofill_edit_overlay.css
index 166f0cd3da11fdf6ae6770aaea84b6e6d8263bbe..5a302fcef190b69414d24a2b5774fb3b1a3c4a95 100644
--- a/chrome/browser/resources/options/autofill_edit_overlay.css
+++ b/chrome/browser/resources/options/autofill_edit_overlay.css
@@ -10,14 +10,21 @@
min-width: 500px;
}
-#full-name-list input,
-#company-name,
-#addr-line-1,
-#addr-line-2 {
+#autofill-edit-address-overlay .long div[role='listitem'] > div > div,
+#autofill-edit-address-overlay .long input,
+#autofill-edit-address-overlay textarea.long,
+#autofill-edit-address-overlay input.long {
width: 16em;
}
-#country {
+#autofill-edit-address-overlay .short div[role='listitem'] > div > div,
+#autofill-edit-address-overlay .short input,
+#autofill-edit-address-overlay textarea.short,
+#autofill-edit-address-overlay input.short {
+ width: 14em;
+}
+
+#autofill-edit-address-overlay .country {
max-width: 450px;
}
@@ -40,38 +47,10 @@
}
:-webkit-any(#autofill-edit-credit-card-overlay, #autofill-edit-address-overlay)
- .settings-row div + :-webkit-any(input, select) {
+ .settings-row div + :-webkit-any(input, select, textarea) {
margin-top: 4px;
}
-#autofill-name-labels {
- display: -webkit-inline-box;
-}
-
-#autofill-name-labels span {
- -webkit-box-flex: 1;
- display: block;
-}
-
-#full-name-list {
- display: inline-block;
-}
-
-#full-name-list div[role='listitem'] > div {
- display: -webkit-box;
-}
-
-#full-name-list div[role='listitem'] > div > div,
-#autofill-name-labels span {
- -webkit-margin-end: 5px;
- width: 16em;
-}
-
-:-webkit-any(#phone-list, #email-list) div[role='listitem'] > div > div,
-:-webkit-any(#phone-list, #email-list) input {
- width: 14em;
-}
-
.input-group > * {
-webkit-box-orient: vertical;
-webkit-margin-end: 2px;

Powered by Google App Engine
This is Rietveld 408576698