diff options
author | Matthew Somerville <matthew@mysociety.org> | 2012-03-13 23:32:40 +0000 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2012-03-13 23:32:40 +0000 |
commit | 0104e80bf9ea96c52bf8b3bb2bc7b311be7e1f15 (patch) | |
tree | 39cbd618de9d881e51c4b2f6bac242f86c823213 | |
parent | 3743af062f8c1bc3155491c9d1737ce21dac6047 (diff) |
Remove empty li from council mobile page, put in necessary IE CSS for the third time.
-rw-r--r-- | web/cobrands/fixmystreet/fixmystreet.js | 1 | ||||
-rw-r--r-- | web/cobrands/fixmystreet/layout.scss | 6 |
2 files changed, 7 insertions, 0 deletions
diff --git a/web/cobrands/fixmystreet/fixmystreet.js b/web/cobrands/fixmystreet/fixmystreet.js index 6b26a94cd..29aecef52 100644 --- a/web/cobrands/fixmystreet/fixmystreet.js +++ b/web/cobrands/fixmystreet/fixmystreet.js @@ -497,6 +497,7 @@ $.fn.drawer = function(id, ajax) { if($('.mobile').length){ $('#map_permalink').hide(); $('#key-tools a.feed').appendTo('#sub_map_links'); + $('#key-tools li:empty').remove(); $('#report-updates-data').insertAfter($('#map_box')); } //add open/close toggle button on desk diff --git a/web/cobrands/fixmystreet/layout.scss b/web/cobrands/fixmystreet/layout.scss index 191793fcb..6247c7474 100644 --- a/web/cobrands/fixmystreet/layout.scss +++ b/web/cobrands/fixmystreet/layout.scss @@ -248,6 +248,12 @@ body.mappage { } .ie6, .ie7 { body.mappage { + // The below is *mandatory* to allow pins/zoom to be clickable in IE6/7. Do NOT remove. + .container { + float: left; + width: 27em; + margin-left: 1.4em; + } .nav-wrapper{ z-index:1; .nav-wrapper-2 { |