diff options
Diffstat (limited to 'web')
-rw-r--r-- | web/cobrands/bromley/base.scss | 12 | ||||
-rw-r--r-- | web/cobrands/fixmystreet/fixmystreet.js | 25 |
2 files changed, 18 insertions, 19 deletions
diff --git a/web/cobrands/bromley/base.scss b/web/cobrands/bromley/base.scss index 6590f5449..36815e6e5 100644 --- a/web/cobrands/bromley/base.scss +++ b/web/cobrands/bromley/base.scss @@ -29,9 +29,15 @@ #problems-nav { border-bottom:0.25em solid $primary; - ul li a.active { - background: $primary; - color: #fff; + ul li a { + text-transform: none; + &.active { + background: $primary; + color: #fff; + } } } +.big-green-banner { + text-transform: none; +} diff --git a/web/cobrands/fixmystreet/fixmystreet.js b/web/cobrands/fixmystreet/fixmystreet.js index 47f5da820..be5be08cb 100644 --- a/web/cobrands/fixmystreet/fixmystreet.js +++ b/web/cobrands/fixmystreet/fixmystreet.js @@ -105,24 +105,17 @@ $(function(){ $html.removeClass('mobile'); if (cobrand == 'bromley') { var $window = $(window), $content = $('.content'), o = $content.offset(); + var map_height = $window.height() - o.top; if ($html.hasClass('ie6')) { - $('#map_box').prependTo('.wrapper').css({ - zIndex: 0, position: 'absolute', - right: 0, top: '1em', - width: $window.width() - o.left - $content.outerWidth(), - height: $window.height() - o.top + 32, - margin: 0 - }); - } else { - var map_height = $window.height() - o.top; - $('#map_box').prependTo('.wrapper').css({ - zIndex: 0, position: 'fixed', - right: 0, top: o.top, bottom: 0, left: 'auto', - width: $window.width() - o.left - $content.outerWidth(), - height: map_height, - margin: 0 - }); + map_height = $window.height() - o.top + 32; } + $('#map_box').prependTo('.wrapper').css({ + zIndex: 0, position: 'absolute', + right: 0, top: '1em', + width: $window.width() - o.left - $content.outerWidth(), + height: map_height, + margin: 0 + }); } else if ($html.hasClass('ie6')) { $('#map_box').prependTo('.wrapper').css({ zIndex: 0, position: 'absolute', |