diff options
author | mirandac@chromium.org <mirandac@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-24 23:25:57 +0000 |
---|---|---|
committer | mirandac@chromium.org <mirandac@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-24 23:25:57 +0000 |
commit | fe300a5321fbef96e46654c757c9e264db1f8b47 (patch) | |
tree | 423e0f37964e69173d52e4e96dbb54da1500f3e5 /chrome/browser/resources/new_new_tab.css | |
parent | d50e877baf62f4b553fee834e88941d864527797 (diff) | |
download | chromium_src-fe300a5321fbef96e46654c757c9e264db1f8b47.zip chromium_src-fe300a5321fbef96e46654c757c9e264db1f8b47.tar.gz chromium_src-fe300a5321fbef96e46654c757c9e264db1f8b47.tar.bz2 |
Remove theming from notifications and extension/bookmark sync promo.
BUG= 28577
TEST= Trigger notification (remove a thumbnail) with themed browser, note that text and link in notification (and in extension/bookmark sync promo) are legible and retain original colors.
Review URL: http://codereview.chromium.org/437045
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32996 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/resources/new_new_tab.css')
-rw-r--r-- | chrome/browser/resources/new_new_tab.css | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/chrome/browser/resources/new_new_tab.css b/chrome/browser/resources/new_new_tab.css index 2aff4a7..443103a 100644 --- a/chrome/browser/resources/new_new_tab.css +++ b/chrome/browser/resources/new_new_tab.css @@ -340,6 +340,7 @@ html[dir=rtl] .thumbnail-container > .title > div { -webkit-transition: opacity .15s; pointer-events: none; z-index: 1; + color: black; } #notification.first-run { @@ -364,9 +365,14 @@ html[dir=rtl] .thumbnail-container > .title > div { } #notification .link { + color: rgba(0, 102, 204, 0.3); -webkit-padding-start: 20px; } +#notification .link-color { + color: rgb(0, 102, 204); +} + #notification > span > .blacklist-title { display: inline-block; max-width: 30ex; @@ -722,7 +728,6 @@ html[dir='rtl'] #option-menu > [command='hide']:before { background: none; cursor: pointer; text-decoration: underline; - color: rgb(6, 45, 117); font-family: inherit; } @@ -761,6 +766,17 @@ html[dir='rtl'] #option-menu > [command='hide']:before { text-overflow: ellipsis; } +#promo-message a, +#promo-message button { + color: rgba(0, 102, 204, 0.3); + text-decoration: underline; +} + +#promo-message a > .link-color, +#promo-message button > .link-color { + color: rgb(0, 102, 204); +} + #promo-new { color: red; } |