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:
enriquecd 2017-05-16 12:36:58 +02:00
parent 754484cf1d
commit 71d868220a
2 changed files with 6 additions and 0 deletions

View File

@ -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');

View File

@ -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'].";";
?>