diff options
author | Matthew Somerville <matthew@mysociety.org> | 2012-03-07 12:32:21 +0000 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2012-03-07 12:32:21 +0000 |
commit | f11cbd34cb24fe20a39361d945cf6cbc0c8356ee (patch) | |
tree | 3a26b59a6458bc52a54ef4ded3d05b36b51d737e | |
parent | 4266ae67e9f26dc2b354337527d69f1521aee4ce (diff) |
This is definitely needed to allow pins/zoom to be clickable on the map in IE6/7.
-rw-r--r-- | web/cobrands/fixmystreet/layout.scss | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/web/cobrands/fixmystreet/layout.scss b/web/cobrands/fixmystreet/layout.scss index 068e9a71f..7de292abd 100644 --- a/web/cobrands/fixmystreet/layout.scss +++ b/web/cobrands/fixmystreet/layout.scss @@ -240,6 +240,11 @@ body.mappage { } .ie6, .ie7 { body.mappage { + .container { + float: left; + width: 27em; + margin-left: 1.4em; + } .nav-wrapper{ z-index:1; .nav-wrapper-2 { @@ -252,6 +257,13 @@ body.mappage { } } } +.ie6 { + body.mappage { + .container { + margin-left: 0.7em; + } + } +} //ie8 needs different stuff on .nav-wrapper so we //have to define all the rest of it again as this resets //the z-index base yet again :S |