diff options
author | Struan Donald <struan@exo.org.uk> | 2012-04-02 11:12:26 +0100 |
---|---|---|
committer | Struan Donald <struan@exo.org.uk> | 2012-04-02 11:12:26 +0100 |
commit | e415273adc70c32cf823f32614d68bbec213aa3d (patch) | |
tree | b968df63f67a34a100d1978b40b87ba754a66868 | |
parent | 53461d66ce00a233504876771c85085ad3e2fd3b (diff) | |
parent | 34d525d65e24768c9a9d2959d8a4646b4fde7030 (diff) |
Merge remote-tracking branch 'origin/bromley' into bromley
-rw-r--r-- | web/cobrands/fixmystreet/_layout.scss | 10 | ||||
-rw-r--r-- | web/cobrands/fixmystreet/fixmystreet.js | 2 |
2 files changed, 11 insertions, 1 deletions
diff --git a/web/cobrands/fixmystreet/_layout.scss b/web/cobrands/fixmystreet/_layout.scss index ae4e88e2f..57b26f42d 100644 --- a/web/cobrands/fixmystreet/_layout.scss +++ b/web/cobrands/fixmystreet/_layout.scss @@ -901,6 +901,16 @@ body.frontpage { } } } +.ie7 #front-main { + #postcodeForm { + div { + input#pc { + height:1.5em; + width:16em; + } + } + } +} #front-howto { border-right:1em solid #fff; diff --git a/web/cobrands/fixmystreet/fixmystreet.js b/web/cobrands/fixmystreet/fixmystreet.js index 55b2cd3e3..47f5da820 100644 --- a/web/cobrands/fixmystreet/fixmystreet.js +++ b/web/cobrands/fixmystreet/fixmystreet.js @@ -117,7 +117,7 @@ $(function(){ var map_height = $window.height() - o.top; $('#map_box').prependTo('.wrapper').css({ zIndex: 0, position: 'fixed', - right: 0, top: o.top, bottom: 0, + right: 0, top: o.top, bottom: 0, left: 'auto', width: $window.width() - o.left - $content.outerWidth(), height: map_height, margin: 0 |