diff options
author | Struan Donald <struan@exo.org.uk> | 2013-07-08 17:09:59 +0100 |
---|---|---|
committer | Struan Donald <struan@exo.org.uk> | 2013-07-08 17:11:21 +0100 |
commit | f9b360a1788f1fb2407773d3eed183f525784f99 (patch) | |
tree | 6af8190a949d2b296204724420ae65485e3437b1 | |
parent | c43d8a4d20ce680acb73bb50fdfa5db694ff8c94 (diff) |
if the brown background is on the map then it stops at the height of the
screen when scrolling on pages that are longer than the map such as the
offline one. Moving the bg to the body element fixes this
-rw-r--r-- | www/css/fms.css | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/www/css/fms.css b/www/css/fms.css index e95d1e4..d991012 100644 --- a/www/css/fms.css +++ b/www/css/fms.css @@ -52,6 +52,11 @@ } /* jquery mobile overrides */ + .ui-mobile-viewport { + background-color: #534741; + background-image: url('../images/mapbg.png'); + } + .ui-icon-plus, .ui-icon-minus, .ui-icon-delete, @@ -379,8 +384,7 @@ /* map */ #map_box{ - background-color: #534741; - background-image: url('../images/mapbg.png'); + background-color: rgba(0,0,0,0); position:absolute; top: 45px, left: 0, right: 0, bottom: 0; padding: 0px; |