diff options
author | Chris Mytton <self@hecticjeff.net> | 2013-08-12 17:56:11 +0100 |
---|---|---|
committer | Chris Mytton <self@hecticjeff.net> | 2013-08-12 17:56:16 +0100 |
commit | d3a221d996acaacf67dec485d5506369ad55acd9 (patch) | |
tree | 7699c6b56292496118c1e608f207c43b0c0b3ec6 | |
parent | 338175b0e7df7cee7a02df8f911b1d104086a2a1 (diff) |
Scope .content changes to oxfordshire map page
-rw-r--r-- | web/cobrands/oxfordshire/layout.scss | 27 |
1 files changed, 20 insertions, 7 deletions
diff --git a/web/cobrands/oxfordshire/layout.scss b/web/cobrands/oxfordshire/layout.scss index ad2599fb9..fa0c53f23 100644 --- a/web/cobrands/oxfordshire/layout.scss +++ b/web/cobrands/oxfordshire/layout.scss @@ -38,8 +38,16 @@ body, body a { display: none; } -.content, .ie7 .content, .ie8 .content { - margin: 3em 0 0 1em; +// White background, so no shadow or margin needed. +.content { + margin: 0; + @include box-shadow(none); +} +.ie6, .ie7, .ie8 { + .content { + margin: 0; + border: none; + } } // Fix location of aside sidebar @@ -123,11 +131,16 @@ body.twothirdswidthpage .content { } body.mappage { - .content { - padding: 1em; - position: relative; - z-index: 1; - } + .content { + padding: 1em; + position: relative; + z-index: 1; + } + + .content, .ie7 .content, .ie9 .content { + margin: 3em 0 0 1em; + @include box-shadow(0px 0px 6px 1px #000); + } } .ie6, .ie7 { |