]> git.openstreetmap.org Git - rails.git/commitdiff
Increase sidebar width, back to 350px
authorAaron Lidman <aaronlidman@gmail.com>
Tue, 19 Nov 2013 00:24:52 +0000 (16:24 -0800)
committerAaron Lidman <aaronlidman@gmail.com>
Tue, 19 Nov 2013 00:24:52 +0000 (16:24 -0800)
app/assets/javascripts/index.js
app/assets/stylesheets/parameters.scss

index f1644c06f0a12a131d0e7d0b7d30a63d29c8d033..59e231381778bb5d1591982f0256f57e2fc0e55e 100644 (file)
@@ -201,7 +201,7 @@ $(document).ready(function () {
     page.pushstate = function(path) {
       $("#content").addClass("overlay-sidebar");
       map.invalidateSize({pan: false})
-        .panBy([-300, 0], {animate: false});
+        .panBy([-350, 0], {animate: false});
       OSM.loadSidebarContent(path);
       page.load();
     };
@@ -217,7 +217,7 @@ $(document).ready(function () {
     };
 
     page.unload = function() {
-      map.panBy([300, 0], {animate: false});
+      map.panBy([350, 0], {animate: false});
       $("#content").removeClass("overlay-sidebar");
       map.invalidateSize({pan: false});
     };
index 536562cf368d5e306265ee5f25644c69c2e9d37b..b26b29105b0c2af83197b790f1cf3d45dd6c0fa2 100644 (file)
@@ -12,6 +12,6 @@ $lightgrey: #EEE;
 $darkgrey: #888;
 $hovercolor: 20%;
 $headerHeight: 55px;
-$sidebarWidth: 300px;
+$sidebarWidth: 350px;
 $keyline: 1px solid $lightgrey;
 $border-radius: 3px;