diff options
author | falken@chromium.org <falken@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-16 03:56:14 +0000 |
---|---|---|
committer | falken@chromium.org <falken@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-16 03:56:14 +0000 |
commit | 506dcfe13f1bfd5198caf4531f041911196aaeef (patch) | |
tree | 21b2aeef52feeb59dbfbe6b4678396a621eeef70 /chrome | |
parent | 4f67d17c879cc6fac85f5baeb82115e5a5ca169f (diff) | |
download | chromium_src-506dcfe13f1bfd5198caf4531f041911196aaeef.zip chromium_src-506dcfe13f1bfd5198caf4531f041911196aaeef.tar.gz chromium_src-506dcfe13f1bfd5198caf4531f041911196aaeef.tar.bz2 |
Language options: make language list narrower to fix overflowing problem on RTL.
Before this change, the language options was wider than the enclosing
"subpage-sheet-contents" div. For LTR layouts, it's acceptable because it
overflows to the right into nothing, but on RTL it still overflows to the
right, causing the bad effect seen in the bug.
BUG=chromium-os:24943
TEST=set UI language to Arabic, verify the language list doesn't overflow outside the language settings pane
Review URL: http://codereview.chromium.org/9173004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@117827 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r-- | chrome/browser/resources/options/language_options.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/resources/options/language_options.css b/chrome/browser/resources/options/language_options.css index 55b7aa8..345dad4 100644 --- a/chrome/browser/resources/options/language_options.css +++ b/chrome/browser/resources/options/language_options.css @@ -36,7 +36,7 @@ -webkit-box-orient: vertical; display: -webkit-box; background-color: #ebeff9; - width: 300px; + width: 200px; } /* On OS X we use the native OS spellchecker, so don't display the dictionary */ |