Hide scroll bars when vconsole is in fullscreen mode, also in dashboard when there is only one vconsole widget - #865
This commit is contained in:
parent
754484cf1d
commit
71d868220a
|
@ -193,6 +193,9 @@ $ignored_params['refr'] = '';
|
|||
|
||||
|
||||
$('body').css('background-color','<?php echo $layout["background_color"]; ?>');
|
||||
$('body').css('margin','0');
|
||||
$('body').css('height','100%');
|
||||
$('body').css('overflow','hidden');
|
||||
|
||||
$(".module_graph .menu_graph").css('display','none');
|
||||
|
||||
|
|
|
@ -198,6 +198,9 @@ if ($config['pure']) {
|
|||
/* Avoid the main_pure container 1000px height */
|
||||
body.pure {
|
||||
min-height: 100px;
|
||||
margin: 0px;
|
||||
overflow: hidden;
|
||||
height: 100%;
|
||||
<?php
|
||||
echo "background-color: ".$layout['background_color'].";";
|
||||
?>
|
||||
|
|
Loading…
Reference in New Issue