diff options
author | Matthew Somerville <matthew@mysociety.org> | 2013-01-31 17:12:31 +0000 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2013-01-31 17:12:31 +0000 |
commit | 070a15294578ad604fb105777708cddd61f89a3b (patch) | |
tree | 7a7bfc934273931d7685158710c8d72216f6d6eb /web | |
parent | 352f8c61fb42d07a277d73f2d26e491f2a24d386 (diff) |
More Zurich header box shadow fixes.
Diffstat (limited to 'web')
-rw-r--r-- | web/cobrands/zurich/layout.scss | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/web/cobrands/zurich/layout.scss b/web/cobrands/zurich/layout.scss index 42e4d81ac..3a2d8ddb0 100644 --- a/web/cobrands/zurich/layout.scss +++ b/web/cobrands/zurich/layout.scss @@ -28,9 +28,14 @@ body.mappage .content { border: 1px solid #666; } } +/* The header on a map page needs a shadow too */ body.mappage .nav-wrapper-2 { @include box-shadow(0 0 6px 1px #000); } +/* Except on admin pages where there's an admin nav directly underneath it */ +body.mappage.admin .nav-wrapper-2 { + @include box-shadow(none); +} // Different header and logo #site-header .container { @@ -268,6 +273,7 @@ body.mappage .admin-nav-wrapper { padding-right: 10px; position: fixed; width: 100%; + @include box-shadow(0 0 6px 1px #000); } .admin-nav { |