Restyling of several components, small bugfixes

This commit is contained in:
BNoiZe
2013-11-09 20:46:34 +01:00
parent 50bd15c5a8
commit abadb69443
7 changed files with 60 additions and 40 deletions

View File

@@ -24,6 +24,13 @@ $(document).ready(function() {
parent.history.back();
return false;
});
// Height of divs fix
var snheight = $('#sidenavigation').height();
var mainheight = $('#maincontent').height();
if (snheight > mainheight) {
$('#maincontent').height(snheight - 60);
}
// this is necessary for the special setting feature (ref #1010)
$.getQueryVariable = function(key) {