diff options
author | mirandac@chromium.org <mirandac@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-28 22:40:53 +0000 |
---|---|---|
committer | mirandac@chromium.org <mirandac@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-28 22:40:53 +0000 |
commit | c8451d1a68c5897298b1327f100dae13431bc4fa (patch) | |
tree | f048852574c40ce7d25e780b863e4232b202264e | |
parent | 4a13ee3a5cba3ff0fbe3bf9f513335566c571d1c (diff) | |
download | chromium_src-c8451d1a68c5897298b1327f100dae13431bc4fa.zip chromium_src-c8451d1a68c5897298b1327f100dae13431bc4fa.tar.gz chromium_src-c8451d1a68c5897298b1327f100dae13431bc4fa.tar.bz2 |
Make tips and their links readable in all themes.
BUG= http://crbug.com/20506
TEST= Install any theme. Observe that tips are legible.
Review URL: http://codereview.chromium.org/182012
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24823 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/browser/resources/new_tab_theme.css | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/chrome/browser/resources/new_tab_theme.css b/chrome/browser/resources/new_tab_theme.css index e4547cd..84c539c 100644 --- a/chrome/browser/resources/new_tab_theme.css +++ b/chrome/browser/resources/new_tab_theme.css @@ -55,9 +55,7 @@ body { color: $$3; /* COLOR_NTP_SECTION_TEXT */ } #recently-closed span, -#recently-closed a, -#recently-closed a:link, -#tip-line a { +#recently-closed a { color: $$4; /* COLOR_NTP_SECTION_LINK */ text-decoration:underline; } @@ -69,5 +67,10 @@ body { } #tip-line { - color: $$8; + color: $8; /* COLOR_NTP_TEXT */ +} + +#tip-line a { + color: $9; /* COLOR_NTP_LINK */ + text-decoration: underline; } |