Browse Source

disable right col if modules are empty

nin-v2
myleneb 9 years ago
parent
commit
85e5bf2b9f
  1. 2
      css/style.css
  2. 5
      js/theme_option.js
  3. 2
      sass/layout/_responsive.sass

2
css/style.css

@ -2634,7 +2634,7 @@ ul.dropdown-menu li > li > a {
position: absolute; position: absolute;
left: 168px; left: 168px;
right: 20px; right: 20px;
width: auto; width: auto !important;
} }
.modal-wrapper { .modal-wrapper {

5
js/theme_option.js

@ -1,12 +1,9 @@
$(window).resize(function() $(window).resize(function()
{ {
testRightSide();
reAppendModules(); reAppendModules();
}); });
$(window).load(function()
{
testRightSide();
});
$(document).ready(function() $(document).ready(function()

2
sass/layout/_responsive.sass

@ -9,7 +9,7 @@
position: absolute position: absolute
left: $leftWidth left: $leftWidth
right: 20px right: 20px
width: auto width: auto!important
.modal-wrapper .modal-wrapper
width: 85% width: 85%

Loading…
Cancel
Save