Commit aeb96c69 authored by jhawkins@chromium.org's avatar jhawkins@chromium.org

Autofill: Widen the input elements to accomodate more verbose languages.

BUG=136912
R=csilv

Review URL: https://chromiumcodereview.appspot.com/10831385

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@152273 0039d316-1c4b-4281-b951-d872f2087c98
parent b6bcda6c
...@@ -40,7 +40,7 @@ div.input { ...@@ -40,7 +40,7 @@ div.input {
#autofill-edit-address-overlay list { #autofill-edit-address-overlay list {
/* Min height is a multiple of the list item height (32) */ /* Min height is a multiple of the list item height (32) */
min-height: 32px; min-height: 32px;
width: 176px; width: 17em;
} }
#autofill-edit-address-overlay list div.static-text { #autofill-edit-address-overlay list div.static-text {
...@@ -54,11 +54,11 @@ div.input { ...@@ -54,11 +54,11 @@ div.input {
*/ */
line-height: 1.75em; line-height: 1.75em;
min-height: 1.75em; min-height: 1.75em;
width: 141px; width: 16em;
} }
#autofill-edit-address-overlay list input { #autofill-edit-address-overlay list input {
width: 151px; width: 16em;
} }
#autofill-name-labels { #autofill-name-labels {
...@@ -76,7 +76,8 @@ div.input { ...@@ -76,7 +76,8 @@ div.input {
/* Set the minimum width to the size of an input element, so that all boxes /* Set the minimum width to the size of an input element, so that all boxes
* have an equal amount of flex space to work with. * have an equal amount of flex space to work with.
*/ */
min-width: 141px; min-width: 16em;
padding: 0 3px;
} }
#autofill-edit-address-overlay list#full-name-list div.static-text { #autofill-edit-address-overlay list#full-name-list div.static-text {
...@@ -84,7 +85,7 @@ div.input { ...@@ -84,7 +85,7 @@ div.input {
} }
#autofill-edit-address-overlay list#full-name-list input { #autofill-edit-address-overlay list#full-name-list input {
width: 141px; width: 16em;
} }
#autofill-edit-address-overlay list#full-name-list { #autofill-edit-address-overlay list#full-name-list {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment