diff options
Diffstat (limited to 'web')
-rw-r--r-- | web/css/_main.scss | 6 | ||||
-rw-r--r-- | web/css/core.scss | 18 | ||||
-rw-r--r-- | web/js/map-OpenLayers.js | 2 |
3 files changed, 25 insertions, 1 deletions
diff --git a/web/css/_main.scss b/web/css/_main.scss index 8b018677d..383e099a1 100644 --- a/web/css/_main.scss +++ b/web/css/_main.scss @@ -214,6 +214,12 @@ select, input, textarea { #header { font-size: 150%; } + h1 { + font-size: 140%; + } + h2 { + font-size: 130%; + } #navigation { position: static; border-top: solid 2px $header_colour; diff --git a/web/css/core.scss b/web/css/core.scss index ca8dcef27..4e2c50d06 100644 --- a/web/css/core.scss +++ b/web/css/core.scss @@ -688,9 +688,25 @@ $map_width: 500px; .banner { margin-right: 0; + clear: both; margin-top: 1em; } - + #text_map { + padding: 0.25em 0.5em; + font-size: 100%; + -moz-border-radius-topleft: 0; + -moz-border-radius-bottomleft: 1em; + -moz-border-radius-bottomright: 1em; + -webkit-border-top-left-radius: 0; + -webkit-border-bottom-left-radius: 1em; + -webkit-border-bottom-right-radius: 1em; + border-top-left-radius: 0; + border-bottom-left-radius: 1em; + border-bottom-right-radius: 1em; + } + #text_map_arrow { + display: none; + } } } diff --git a/web/js/map-OpenLayers.js b/web/js/map-OpenLayers.js index d3914a128..0f9974222 100644 --- a/web/js/map-OpenLayers.js +++ b/web/js/map-OpenLayers.js @@ -49,6 +49,7 @@ $(function(){ fixmystreet.drag.deactivate(); $('#side-form').hide(); $('#side').show(); + $('#sub_map_links').show(); fixmystreet.page = 'around'; }); @@ -317,6 +318,7 @@ OpenLayers.Control.Click = OpenLayers.Class(OpenLayers.Control, { }); $('#side-form').show(); $('#side').hide(); + $('#sub_map_links').hide(); fixmystreet.page = 'new'; location.hash = 'report'; } |