]> git.openstreetmap.org Git - rails.git/commitdiff
Make maximising work properly again in Potlatch
authorTom Hughes <tom@compton.nu>
Sat, 19 Jan 2013 11:29:12 +0000 (11:29 +0000)
committerTom Hughes <tom@compton.nu>
Sat, 19 Jan 2013 11:29:12 +0000 (11:29 +0000)
app/assets/javascripts/edit.js
app/assets/stylesheets/common.css.scss

index 30823d49ea5d00a0a493463c4aa6f1046b6c4433..f13e2d48130d6c50396cd7d8c012d8c28c23692b 100644 (file)
@@ -1,27 +1,11 @@
 function maximiseMap() {
-  $("#left").hide();
-  $("#top-bar").hide();
-
-  $("#content").css("top", "0px");
-  if ($("html").attr("dir") == "ltr") {
-    $("#content").css("margin-left", "0px");
-  } else {
-    $("#content").css("margin-right", "0px");
-  }
+  $("#content").addClass("maximised");
 
   handleResize();
 }
 
 function minimiseMap() {
-  $("#left").show();
-  $("#top-bar").show();
-
-  $("#content").css("top", "30px");
-  if ($("html").attr("dir") == "ltr") {
-    $("#content").css("margin-left", "185px");
-  } else {
-    $("#content").css("margin-right", "185px");
-  }
+  $("#content").removeClass("maximised");
 
   handleResize();
 }
index b29d5a4ad604301dce9713b39e168f4c1318fd74..4ffe49c85c7d50f8fb57be1b3e11d44cd6673632 100644 (file)
@@ -777,6 +777,15 @@ ul.results-list li { border-bottom: 1px solid #ccc; }
   top: 30px;
 }
 
+#content.maximised {
+  top: 0;
+  left: 0;
+  right: 0;
+  bottom: 0;
+  border: 0;
+  z-index: 1000;
+}
+
 #slim_container {
   width: 100%;
 }