diff options
author | arv@chromium.org <arv@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-07 22:27:26 +0000 |
---|---|---|
committer | arv@chromium.org <arv@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-07 22:27:26 +0000 |
commit | c4d609b27bd774661e308d0cf601221fa4e48a38 (patch) | |
tree | 6dd0edcf3b6ce7cee128ca9c5b64b3851a76a79e | |
parent | f38319bb587bd496714904d10dcd3ea00975b4a1 (diff) | |
download | chromium_src-c4d609b27bd774661e308d0cf601221fa4e48a38.zip chromium_src-c4d609b27bd774661e308d0cf601221fa4e48a38.tar.gz chromium_src-c4d609b27bd774661e308d0cf601221fa4e48a38.tar.bz2 |
NTP: Fix z-order of notification
BUG=72224
TEST=Go to NTP
Show Most Visited
Blacklist an item
The notification bar should not be covered by the Apps line
Review URL: http://codereview.chromium.org/6413023
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74035 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/browser/resources/new_new_tab.css | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/resources/new_new_tab.css b/chrome/browser/resources/new_new_tab.css index 93688b3..dc3ba2e 100644 --- a/chrome/browser/resources/new_new_tab.css +++ b/chrome/browser/resources/new_new_tab.css @@ -93,7 +93,7 @@ html[anim=false] *, opacity: 0; pointer-events: none; -webkit-transition: opacity .15s; - z-index: 1; + z-index: 2; color: black; } @@ -126,7 +126,7 @@ html[anim=false] *, width: 16px; height: 16px; background: no-repeat; - background-color: transparent; + background-color: transparent; background-image: url('chrome://theme/IDR_CLOSE_BAR'); padding: 0; } |