diff options
author | mazda@chromium.org <mazda@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-11 01:34:18 +0000 |
---|---|---|
committer | mazda@chromium.org <mazda@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-11 01:34:18 +0000 |
commit | bc78d4db680894f3bf2eaa0d6ee713e9aec5eebb (patch) | |
tree | 9ea17892395ecd8761c73706fcbbeed7c93ecd8b | |
parent | ca48192211dd75f081a2298dc4fa5c287050fd5e (diff) | |
download | chromium_src-bc78d4db680894f3bf2eaa0d6ee713e9aec5eebb.zip chromium_src-bc78d4db680894f3bf2eaa0d6ee713e9aec5eebb.tar.gz chromium_src-bc78d4db680894f3bf2eaa0d6ee713e9aec5eebb.tar.bz2 |
NNTP: Fix issue where the first-run message is truncated.
BUG=chromium-os:11140
TEST=Start chrome with a new profile with Japanese or Greek UI,
or >Settings>Under the Hood>Font size>Very Large in English UI.
The message is displayed in multiple lines instead of ellipses.
Review URL: http://codereview.chromium.org/6812010
Patch from Kazuhiro Inaba <kinaba@chromium.org>.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81064 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/browser/resources/new_new_tab.css | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/chrome/browser/resources/new_new_tab.css b/chrome/browser/resources/new_new_tab.css index 568e5a6..5273492 100644 --- a/chrome/browser/resources/new_new_tab.css +++ b/chrome/browser/resources/new_new_tab.css @@ -147,6 +147,10 @@ html[anim=false] *, text-overflow: ellipsis; } +#notification.first-run > * { + white-space: normal; +} + #notification.show { opacity: 1; pointer-events: all; |