]> source.dussan.org Git - redmine.git/commitdiff
Remove wrapper2 and wrapper3 wrapping containers (#30448).
authorMarius Balteanu <marius.balteanu@zitec.com>
Tue, 10 Aug 2021 19:59:00 +0000 (19:59 +0000)
committerMarius Balteanu <marius.balteanu@zitec.com>
Tue, 10 Aug 2021 19:59:00 +0000 (19:59 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@21151 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/views/layouts/base.html.erb
public/javascripts/responsive.js
public/stylesheets/application.css
public/stylesheets/responsive.css

index 43e7459e7321b6fa17c95b402bed875747f0bccb..5b7f23f794454dfed117fcb6f866aef4fdb1b1f2 100644 (file)
@@ -58,8 +58,7 @@
 
 </div>
 
-<div id="wrapper2">
-<div id="wrapper3">
+
 <div id="top-menu">
     <div id="account">
         <%= render_menu :account_menu -%>
 <div id="footer">
     Powered by <%= link_to Redmine::Info.app_name, Redmine::Info.url %> &copy; 2006-2021 Jean-Philippe Lang
 </div>
-</div>
 
 <div id="ajax-indicator" style="display:none;"><span><%= l(:label_loading) %></span></div>
 <div id="ajax-modal" style="display:none;"></div>
 
-</div>
 </div>
 <%= call_hook :view_layouts_base_body_bottom %>
 </body>
index ec16111328803bcb678a95d401fea2cd83fe764a..0bc5c3452a76b9cfdf8386b493923b46c5868f07 100644 (file)
@@ -2,7 +2,7 @@
 
 function openFlyout() {
   $('html').addClass('flyout-is-active');
-  $('#wrapper2').on('click', function(e){
+  $('#wrapper').on('click', function(e){
     e.preventDefault();
     e.stopPropagation();
     closeFlyout();
@@ -11,7 +11,7 @@ function openFlyout() {
 
 function closeFlyout() {
   $('html').removeClass('flyout-is-active');
-  $('#wrapper2').off('click');
+  $('#wrapper').off('click');
 }
 
 
index 17b536e09005cd5d97b0d128073e47f5b8a9efbd..4fe4802084d6ffc2a46c580abf2f9a8780685108 100644 (file)
@@ -16,9 +16,13 @@ pre, code {font-family: Consolas, Menlo, "Liberation Mono", Courier, monospace;}
 .wiki h6 {font-size: 1em; color: #8e8e8e;}
 
 /***** Layout *****/
-div#wrapper, div#wrapper2, div#wrapper3 { min-height: inherit; }
-#wrapper {background: white;overflow: hidden;}
-#wrapper3 { display: flex; flex-direction: column; }
+#wrapper {
+  min-height: inherit;
+  background: white;
+  overflow: hidden;
+  display: flex;
+  flex-direction: column;
+}
 
 #top-menu {background: #3E5B76; color: #fff; height:1.8em; font-size: 0.8em; padding: 2px 10px 0px 12px;}
 #top-menu ul {margin: 0;  padding: 0;}
@@ -113,8 +117,6 @@ div#wrapper, div#wrapper2, div#wrapper3 { min-height: inherit; }
 #sidebar li input[type=checkbox] {height: 20px;}
 
 #content { flex-grow: 1; background-color: #fff; margin: 0px; padding: 10px 16px 10px 16px; overflow-x: auto;}
-html>body #content { min-height: 600px; }
-* html body #content { height: 600px; } /* IE */
 
 #main.nosidebar #sidebar{ display: none; }
 
index a4902af67d0cc877dc06f7224d7a1a547da8683c..89b34aeff447378de2f307cbd6e9366739feecc1 100644 (file)
     position: relative;
     overflow-x: hidden; /* hide horizontal overflow */
     max-width: 100%;
-  }
-
-  #wrapper,
-  #wrapper2 {
     margin: 0;
   }