diff options
-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 { |