mirror of
https://github.com/Ylianst/MeshCentral.git
synced 2024-11-22 22:17:31 +03:00
Fixed web app fullscreen, improved MeshCtrl.
This commit is contained in:
parent
3ad55e4634
commit
2642ab6d05
Binary file not shown.
39
meshctrl.js
39
meshctrl.js
@ -303,7 +303,9 @@ function displayConfigHelp() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function performConfigOperations(args) {
|
function performConfigOperations(args) {
|
||||||
var domainValues = ['title', 'title2', 'titlepicture', 'trustedcert', 'welcomepicture', 'welcometext', 'userquota', 'meshquota', 'newaccounts', 'usernameisemail', 'newaccountemaildomains', 'newaccountspass', 'newaccountsrights', 'geolocation', 'lockagentdownload', 'userconsentflags', 'Usersessionidletimeout', 'auth', 'ldapoptions', 'ldapusername', 'ldapuserbinarykey', 'ldapoptions', 'footer', 'certurl', 'loginKey', 'userallowedip', 'agentallowedip', 'agentnoproxy', 'agentconfig', 'orphanagentuser', 'httpheaders', 'yubikey', 'passwordrequirements', 'limits', 'amtacmactivation', 'redirects', 'sessionrecording'];
|
var domainValues = ['title', 'title2', 'titlepicture', 'trustedcert', 'welcomepicture', 'welcometext', 'userquota', 'meshquota', 'newaccounts', 'usernameisemail', 'newaccountemaildomains', 'newaccountspass', 'newaccountsrights', 'geolocation', 'lockagentdownload', 'userconsentflags', 'Usersessionidletimeout', 'auth', 'ldapoptions', 'ldapusername', 'ldapuserbinarykey', 'ldapoptions', 'footer', 'certurl', 'loginKey', 'userallowedip', 'agentallowedip', 'agentnoproxy', 'agentconfig', 'orphanagentuser', 'httpheaders', 'yubikey', 'passwordrequirements', 'limits', 'amtacmactivation', 'redirects', 'sessionrecording', 'hide', 'loginkey'];
|
||||||
|
var domainObjectValues = [ 'ldapoptions', 'httpheaders', 'yubikey', 'passwordrequirements', 'limits', 'amtacmactivation', 'redirects', 'sessionrecording' ];
|
||||||
|
var domainArrayValues = [ 'newaccountemaildomains', 'newaccountsrights', 'loginkey', 'agentconfig' ];
|
||||||
var configChange = false;
|
var configChange = false;
|
||||||
var fs = require('fs');
|
var fs = require('fs');
|
||||||
var path = require('path');
|
var path = require('path');
|
||||||
@ -341,15 +343,40 @@ function performConfigOperations(args) {
|
|||||||
if (args.settodomain != null) {
|
if (args.settodomain != null) {
|
||||||
didSomething++;
|
didSomething++;
|
||||||
if (config.domains == null) { config.domains = {}; }
|
if (config.domains == null) { config.domains = {}; }
|
||||||
|
if (args.settodomain == true) { args.settodomain = ''; }
|
||||||
if (config.domains[args.settodomain] == null) { console.log("Error: Domain \"" + args.settodomain + "\" does not exist"); }
|
if (config.domains[args.settodomain] == null) { console.log("Error: Domain \"" + args.settodomain + "\" does not exist"); }
|
||||||
else {
|
else {
|
||||||
for (var i in args) {
|
for (var i in args) {
|
||||||
|
if ((i == '_') || (i == 'settodomain')) continue;
|
||||||
if (domainValues.indexOf(i.toLowerCase()) >= 0) {
|
if (domainValues.indexOf(i.toLowerCase()) >= 0) {
|
||||||
if (args[i] == '') { delete config.domains[args.settodomain][i]; configChange = true; } else {
|
var isObj = (domainObjectValues.indexOf(i.toLowerCase()) >= 0);
|
||||||
if (args[i] == 'true') { args[i] = true; } else if (args[i] == 'false') { args[i] = false; } else if (parseInt(args[i]) == args[i]) { args[i] = parseInt(args[i]); }
|
var isArr = (domainArrayValues.indexOf(i.toLowerCase()) >= 0);
|
||||||
config.domains[args.settodomain][i] = args[i];
|
if ((isObj == false) && (isArr == false)) {
|
||||||
configChange = true;
|
// Simple value set
|
||||||
|
if (args[i] == '') { delete config.domains[args.settodomain][i]; configChange = true; } else {
|
||||||
|
if (args[i] == 'true') { args[i] = true; } else if (args[i] == 'false') { args[i] = false; } else if (parseInt(args[i]) == args[i]) { args[i] = parseInt(args[i]); }
|
||||||
|
config.domains[args.settodomain][i] = args[i];
|
||||||
|
configChange = true;
|
||||||
|
}
|
||||||
|
} else if (isObj || isArr) {
|
||||||
|
// Set an object/array value
|
||||||
|
if (args[i] == '') { delete config.domains[args.settodomain][i]; configChange = true; } else {
|
||||||
|
var x = null;
|
||||||
|
try { x = JSON.parse(args[i]); } catch (ex) { }
|
||||||
|
if ((x == null) || (typeof x != 'object')) { console.log("Unable to parse JSON for " + i + "."); } else {
|
||||||
|
if (isArr && Array.isArray(x) == false) {
|
||||||
|
console.log("Value " + i + " must be an array.");
|
||||||
|
} else if (!isArr && Array.isArray(x) == true) {
|
||||||
|
console.log("Value " + i + " must be an object.");
|
||||||
|
} else {
|
||||||
|
config.domains[args.settodomain][i] = x;
|
||||||
|
configChange = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
console.log('Invalid configuration value: ' + i);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -376,7 +403,7 @@ function performConfigOperations(args) {
|
|||||||
if (didSomething == 0) {
|
if (didSomething == 0) {
|
||||||
displayConfigHelp();
|
displayConfigHelp();
|
||||||
} else {
|
} else {
|
||||||
console.log("Done.", didSomething);
|
console.log("Done.");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "meshcentral",
|
"name": "meshcentral",
|
||||||
"version": "0.4.6-f",
|
"version": "0.4.6-g",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"Remote Management",
|
"Remote Management",
|
||||||
"Intel AMT",
|
"Intel AMT",
|
||||||
|
@ -217,8 +217,8 @@ body {
|
|||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
color: white;
|
color: white;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 3px;
|
padding: 3px;
|
||||||
right: 6px;
|
right: 3px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#logoutControlSpan2 {
|
#logoutControlSpan2 {
|
||||||
|
@ -88,7 +88,7 @@
|
|||||||
QV('autoconnectbutton1', debugmode); // Desktop
|
QV('autoconnectbutton1', debugmode); // Desktop
|
||||||
//QV('DeskClip', debugmode); // Clipboard feature, not completed so show in in debug mode only.
|
//QV('DeskClip', debugmode); // Clipboard feature, not completed so show in in debug mode only.
|
||||||
|
|
||||||
if (nightMode) { QC('body').add('night'); }
|
if (nightMode) { QC('body').add('night'); QS('body')['background-color'] = '#000'; }
|
||||||
toggleFullScreen();
|
toggleFullScreen();
|
||||||
|
|
||||||
// Setup page visuals
|
// Setup page visuals
|
||||||
@ -231,8 +231,6 @@
|
|||||||
var xh2 = (uiMode > 1)?24:0;
|
var xh2 = (uiMode > 1)?24:0;
|
||||||
QS('p3users')['max-height'] = 'calc(100vh - ' + (50 + xh) + 'px)'; // 124
|
QS('p3users')['max-height'] = 'calc(100vh - ' + (50 + xh) + 'px)'; // 124
|
||||||
QS('p3events')['height'] = 'calc(100vh - ' + (50 + xh) + 'px)'; // 124
|
QS('p3events')['height'] = 'calc(100vh - ' + (50 + xh) + 'px)'; // 124
|
||||||
QS('deskarea3x')['height'] = 'calc(100vh - ' + (74 + xh + xh2) + 'px)';
|
|
||||||
QS('deskarea3x')['max-height'] = 'calc(100vh - ' + (74 + xh + xh2) + 'px)';
|
|
||||||
QS('p5filetable')['height'] = 'calc(100vh - ' + (99 + xh) + 'px)'; // 160
|
QS('p5filetable')['height'] = 'calc(100vh - ' + (99 + xh) + 'px)'; // 160
|
||||||
QS('p13filetable')['height'] = 'calc(100vh - ' + (127 + xh + xh2) + 'px)'; // 124
|
QS('p13filetable')['height'] = 'calc(100vh - ' + (127 + xh + xh2) + 'px)'; // 124
|
||||||
QS('serverMainStats')['height'] = 'calc(100vh - ' + (50 + xh + xh2) + 'px)'; // 110
|
QS('serverMainStats')['height'] = 'calc(100vh - ' + (50 + xh + xh2) + 'px)'; // 110
|
||||||
@ -243,8 +241,17 @@
|
|||||||
QS('p15agentConsole')['max-height'] = 'calc(100vh - ' + (84 + xh + xh2) + 'px)';
|
QS('p15agentConsole')['max-height'] = 'calc(100vh - ' + (84 + xh + xh2) + 'px)';
|
||||||
QS('p15agentConsoleText')['height'] = 'calc(100vh - ' + (81 + xh + xh2) + 'px)';
|
QS('p15agentConsoleText')['height'] = 'calc(100vh - ' + (81 + xh + xh2) + 'px)';
|
||||||
QS('p15agentConsoleText')['max-height'] = 'calc(100vh - ' + (81 + xh + xh2) + 'px)';
|
QS('p15agentConsoleText')['max-height'] = 'calc(100vh - ' + (81 + xh + xh2) + 'px)';
|
||||||
QS('p14iframe')['height'] = 'calc(100vh - ' + (23 + xh + xh2) + 'px)';
|
if (fullscreen) {
|
||||||
QS('p14iframe')['max-height'] = 'calc(100vh - ' + (23 + xh + xh2) + 'px)';
|
QS('deskarea3x')['height'] = null;
|
||||||
|
QS('deskarea3x')['max-height'] = null;
|
||||||
|
QS('p14iframe')['height'] = null;
|
||||||
|
QS('p14iframe')['max-height'] = null;
|
||||||
|
} else {
|
||||||
|
QS('deskarea3x')['height'] = 'calc(100vh - ' + (74 + xh + xh2) + 'px)';
|
||||||
|
QS('deskarea3x')['max-height'] = 'calc(100vh - ' + (74 + xh + xh2) + 'px)';
|
||||||
|
QS('p14iframe')['height'] = 'calc(100vh - ' + (23 + xh + xh2) + 'px)';
|
||||||
|
QS('p14iframe')['max-height'] = 'calc(100vh - ' + (23 + xh + xh2) + 'px)';
|
||||||
|
}
|
||||||
QS('p43iframe')['height'] = 'calc(100vh - ' + (84 + xh) + 'px)';
|
QS('p43iframe')['height'] = 'calc(100vh - ' + (84 + xh) + 'px)';
|
||||||
QS('p43iframe')['max-height'] = 'calc(100vh - ' + (84 + xh) + 'px)';
|
QS('p43iframe')['max-height'] = 'calc(100vh - ' + (84 + xh) + 'px)';
|
||||||
QS('p16events')['height'] = 'calc(100vh - ' + (50 + xh + xh2) + 'px)';
|
QS('p16events')['height'] = 'calc(100vh - ' + (50 + xh + xh2) + 'px)';
|
||||||
@ -312,7 +319,7 @@
|
|||||||
|
|
||||||
function toggleNightMode() {
|
function toggleNightMode() {
|
||||||
nightMode = !nightMode;
|
nightMode = !nightMode;
|
||||||
if (nightMode) { QC('body').add('night'); } else { QC('body').remove('night'); }
|
if (nightMode) { QC('body').add('night'); QS('body')['background-color'] = '#000'; } else { QC('body').remove('night'); QS('body')['background-color'] = '#d3d9d6'; }
|
||||||
putstore('_nightMode', nightMode?'1':'0');
|
putstore('_nightMode', nightMode?'1':'0');
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -4491,6 +4498,7 @@
|
|||||||
}
|
}
|
||||||
deskAdjust();
|
deskAdjust();
|
||||||
updateDesktopButtons();
|
updateDesktopButtons();
|
||||||
|
adjustPanels();
|
||||||
}
|
}
|
||||||
|
|
||||||
function deskToggleFocus() {
|
function deskToggleFocus() {
|
||||||
|
@ -1141,7 +1141,7 @@
|
|||||||
QV('autoconnectbutton1', debugmode); // Desktop
|
QV('autoconnectbutton1', debugmode); // Desktop
|
||||||
//QV('DeskClip', debugmode); // Clipboard feature, not completed so show in in debug mode only.
|
//QV('DeskClip', debugmode); // Clipboard feature, not completed so show in in debug mode only.
|
||||||
|
|
||||||
if (nightMode) { QC('body').add('night'); }
|
if (nightMode) { QC('body').add('night'); QS('body')['background-color'] = '#000'; }
|
||||||
toggleFullScreen();
|
toggleFullScreen();
|
||||||
|
|
||||||
// Setup page visuals
|
// Setup page visuals
|
||||||
@ -1284,8 +1284,6 @@
|
|||||||
var xh2 = (uiMode > 1)?24:0;
|
var xh2 = (uiMode > 1)?24:0;
|
||||||
QS('p3users')['max-height'] = 'calc(100vh - ' + (50 + xh) + 'px)'; // 124
|
QS('p3users')['max-height'] = 'calc(100vh - ' + (50 + xh) + 'px)'; // 124
|
||||||
QS('p3events')['height'] = 'calc(100vh - ' + (50 + xh) + 'px)'; // 124
|
QS('p3events')['height'] = 'calc(100vh - ' + (50 + xh) + 'px)'; // 124
|
||||||
QS('deskarea3x')['height'] = 'calc(100vh - ' + (74 + xh + xh2) + 'px)';
|
|
||||||
QS('deskarea3x')['max-height'] = 'calc(100vh - ' + (74 + xh + xh2) + 'px)';
|
|
||||||
QS('p5filetable')['height'] = 'calc(100vh - ' + (99 + xh) + 'px)'; // 160
|
QS('p5filetable')['height'] = 'calc(100vh - ' + (99 + xh) + 'px)'; // 160
|
||||||
QS('p13filetable')['height'] = 'calc(100vh - ' + (127 + xh + xh2) + 'px)'; // 124
|
QS('p13filetable')['height'] = 'calc(100vh - ' + (127 + xh + xh2) + 'px)'; // 124
|
||||||
QS('serverMainStats')['height'] = 'calc(100vh - ' + (50 + xh + xh2) + 'px)'; // 110
|
QS('serverMainStats')['height'] = 'calc(100vh - ' + (50 + xh + xh2) + 'px)'; // 110
|
||||||
@ -1296,8 +1294,17 @@
|
|||||||
QS('p15agentConsole')['max-height'] = 'calc(100vh - ' + (84 + xh + xh2) + 'px)';
|
QS('p15agentConsole')['max-height'] = 'calc(100vh - ' + (84 + xh + xh2) + 'px)';
|
||||||
QS('p15agentConsoleText')['height'] = 'calc(100vh - ' + (81 + xh + xh2) + 'px)';
|
QS('p15agentConsoleText')['height'] = 'calc(100vh - ' + (81 + xh + xh2) + 'px)';
|
||||||
QS('p15agentConsoleText')['max-height'] = 'calc(100vh - ' + (81 + xh + xh2) + 'px)';
|
QS('p15agentConsoleText')['max-height'] = 'calc(100vh - ' + (81 + xh + xh2) + 'px)';
|
||||||
QS('p14iframe')['height'] = 'calc(100vh - ' + (23 + xh + xh2) + 'px)';
|
if (fullscreen) {
|
||||||
QS('p14iframe')['max-height'] = 'calc(100vh - ' + (23 + xh + xh2) + 'px)';
|
QS('deskarea3x')['height'] = null;
|
||||||
|
QS('deskarea3x')['max-height'] = null;
|
||||||
|
QS('p14iframe')['height'] = null;
|
||||||
|
QS('p14iframe')['max-height'] = null;
|
||||||
|
} else {
|
||||||
|
QS('deskarea3x')['height'] = 'calc(100vh - ' + (74 + xh + xh2) + 'px)';
|
||||||
|
QS('deskarea3x')['max-height'] = 'calc(100vh - ' + (74 + xh + xh2) + 'px)';
|
||||||
|
QS('p14iframe')['height'] = 'calc(100vh - ' + (23 + xh + xh2) + 'px)';
|
||||||
|
QS('p14iframe')['max-height'] = 'calc(100vh - ' + (23 + xh + xh2) + 'px)';
|
||||||
|
}
|
||||||
QS('p43iframe')['height'] = 'calc(100vh - ' + (84 + xh) + 'px)';
|
QS('p43iframe')['height'] = 'calc(100vh - ' + (84 + xh) + 'px)';
|
||||||
QS('p43iframe')['max-height'] = 'calc(100vh - ' + (84 + xh) + 'px)';
|
QS('p43iframe')['max-height'] = 'calc(100vh - ' + (84 + xh) + 'px)';
|
||||||
QS('p16events')['height'] = 'calc(100vh - ' + (50 + xh + xh2) + 'px)';
|
QS('p16events')['height'] = 'calc(100vh - ' + (50 + xh + xh2) + 'px)';
|
||||||
@ -1365,7 +1372,7 @@
|
|||||||
|
|
||||||
function toggleNightMode() {
|
function toggleNightMode() {
|
||||||
nightMode = !nightMode;
|
nightMode = !nightMode;
|
||||||
if (nightMode) { QC('body').add('night'); } else { QC('body').remove('night'); }
|
if (nightMode) { QC('body').add('night'); QS('body')['background-color'] = '#000'; } else { QC('body').remove('night'); QS('body')['background-color'] = '#d3d9d6'; }
|
||||||
putstore('_nightMode', nightMode?'1':'0');
|
putstore('_nightMode', nightMode?'1':'0');
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -5544,6 +5551,7 @@
|
|||||||
}
|
}
|
||||||
deskAdjust();
|
deskAdjust();
|
||||||
updateDesktopButtons();
|
updateDesktopButtons();
|
||||||
|
adjustPanels();
|
||||||
}
|
}
|
||||||
|
|
||||||
function deskToggleFocus() {
|
function deskToggleFocus() {
|
||||||
|
@ -88,7 +88,7 @@
|
|||||||
QV('autoconnectbutton1', debugmode); // Desktop
|
QV('autoconnectbutton1', debugmode); // Desktop
|
||||||
//QV('DeskClip', debugmode); // Clipboard feature, not completed so show in in debug mode only.
|
//QV('DeskClip', debugmode); // Clipboard feature, not completed so show in in debug mode only.
|
||||||
|
|
||||||
if (nightMode) { QC('body').add('night'); }
|
if (nightMode) { QC('body').add('night'); QS('body')['background-color'] = '#000'; }
|
||||||
toggleFullScreen();
|
toggleFullScreen();
|
||||||
|
|
||||||
// Setup page visuals
|
// Setup page visuals
|
||||||
@ -231,8 +231,6 @@
|
|||||||
var xh2 = (uiMode > 1)?24:0;
|
var xh2 = (uiMode > 1)?24:0;
|
||||||
QS('p3users')['max-height'] = 'calc(100vh - ' + (50 + xh) + 'px)'; // 124
|
QS('p3users')['max-height'] = 'calc(100vh - ' + (50 + xh) + 'px)'; // 124
|
||||||
QS('p3events')['height'] = 'calc(100vh - ' + (50 + xh) + 'px)'; // 124
|
QS('p3events')['height'] = 'calc(100vh - ' + (50 + xh) + 'px)'; // 124
|
||||||
QS('deskarea3x')['height'] = 'calc(100vh - ' + (74 + xh + xh2) + 'px)';
|
|
||||||
QS('deskarea3x')['max-height'] = 'calc(100vh - ' + (74 + xh + xh2) + 'px)';
|
|
||||||
QS('p5filetable')['height'] = 'calc(100vh - ' + (99 + xh) + 'px)'; // 160
|
QS('p5filetable')['height'] = 'calc(100vh - ' + (99 + xh) + 'px)'; // 160
|
||||||
QS('p13filetable')['height'] = 'calc(100vh - ' + (127 + xh + xh2) + 'px)'; // 124
|
QS('p13filetable')['height'] = 'calc(100vh - ' + (127 + xh + xh2) + 'px)'; // 124
|
||||||
QS('serverMainStats')['height'] = 'calc(100vh - ' + (50 + xh + xh2) + 'px)'; // 110
|
QS('serverMainStats')['height'] = 'calc(100vh - ' + (50 + xh + xh2) + 'px)'; // 110
|
||||||
@ -243,8 +241,17 @@
|
|||||||
QS('p15agentConsole')['max-height'] = 'calc(100vh - ' + (84 + xh + xh2) + 'px)';
|
QS('p15agentConsole')['max-height'] = 'calc(100vh - ' + (84 + xh + xh2) + 'px)';
|
||||||
QS('p15agentConsoleText')['height'] = 'calc(100vh - ' + (81 + xh + xh2) + 'px)';
|
QS('p15agentConsoleText')['height'] = 'calc(100vh - ' + (81 + xh + xh2) + 'px)';
|
||||||
QS('p15agentConsoleText')['max-height'] = 'calc(100vh - ' + (81 + xh + xh2) + 'px)';
|
QS('p15agentConsoleText')['max-height'] = 'calc(100vh - ' + (81 + xh + xh2) + 'px)';
|
||||||
QS('p14iframe')['height'] = 'calc(100vh - ' + (23 + xh + xh2) + 'px)';
|
if (fullscreen) {
|
||||||
QS('p14iframe')['max-height'] = 'calc(100vh - ' + (23 + xh + xh2) + 'px)';
|
QS('deskarea3x')['height'] = null;
|
||||||
|
QS('deskarea3x')['max-height'] = null;
|
||||||
|
QS('p14iframe')['height'] = null;
|
||||||
|
QS('p14iframe')['max-height'] = null;
|
||||||
|
} else {
|
||||||
|
QS('deskarea3x')['height'] = 'calc(100vh - ' + (74 + xh + xh2) + 'px)';
|
||||||
|
QS('deskarea3x')['max-height'] = 'calc(100vh - ' + (74 + xh + xh2) + 'px)';
|
||||||
|
QS('p14iframe')['height'] = 'calc(100vh - ' + (23 + xh + xh2) + 'px)';
|
||||||
|
QS('p14iframe')['max-height'] = 'calc(100vh - ' + (23 + xh + xh2) + 'px)';
|
||||||
|
}
|
||||||
QS('p43iframe')['height'] = 'calc(100vh - ' + (84 + xh) + 'px)';
|
QS('p43iframe')['height'] = 'calc(100vh - ' + (84 + xh) + 'px)';
|
||||||
QS('p43iframe')['max-height'] = 'calc(100vh - ' + (84 + xh) + 'px)';
|
QS('p43iframe')['max-height'] = 'calc(100vh - ' + (84 + xh) + 'px)';
|
||||||
QS('p16events')['height'] = 'calc(100vh - ' + (50 + xh + xh2) + 'px)';
|
QS('p16events')['height'] = 'calc(100vh - ' + (50 + xh + xh2) + 'px)';
|
||||||
@ -312,7 +319,7 @@
|
|||||||
|
|
||||||
function toggleNightMode() {
|
function toggleNightMode() {
|
||||||
nightMode = !nightMode;
|
nightMode = !nightMode;
|
||||||
if (nightMode) { QC('body').add('night'); } else { QC('body').remove('night'); }
|
if (nightMode) { QC('body').add('night'); QS('body')['background-color'] = '#000'; } else { QC('body').remove('night'); QS('body')['background-color'] = '#d3d9d6'; }
|
||||||
putstore('_nightMode', nightMode?'1':'0');
|
putstore('_nightMode', nightMode?'1':'0');
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -4491,6 +4498,7 @@
|
|||||||
}
|
}
|
||||||
deskAdjust();
|
deskAdjust();
|
||||||
updateDesktopButtons();
|
updateDesktopButtons();
|
||||||
|
adjustPanels();
|
||||||
}
|
}
|
||||||
|
|
||||||
function deskToggleFocus() {
|
function deskToggleFocus() {
|
||||||
|
@ -88,7 +88,7 @@
|
|||||||
QV('autoconnectbutton1', debugmode); // Desktop
|
QV('autoconnectbutton1', debugmode); // Desktop
|
||||||
//QV('DeskClip', debugmode); // Clipboard feature, not completed so show in in debug mode only.
|
//QV('DeskClip', debugmode); // Clipboard feature, not completed so show in in debug mode only.
|
||||||
|
|
||||||
if (nightMode) { QC('body').add('night'); }
|
if (nightMode) { QC('body').add('night'); QS('body')['background-color'] = '#000'; }
|
||||||
toggleFullScreen();
|
toggleFullScreen();
|
||||||
|
|
||||||
// Setup page visuals
|
// Setup page visuals
|
||||||
@ -231,8 +231,6 @@
|
|||||||
var xh2 = (uiMode > 1)?24:0;
|
var xh2 = (uiMode > 1)?24:0;
|
||||||
QS('p3users')['max-height'] = 'calc(100vh - ' + (50 + xh) + 'px)'; // 124
|
QS('p3users')['max-height'] = 'calc(100vh - ' + (50 + xh) + 'px)'; // 124
|
||||||
QS('p3events')['height'] = 'calc(100vh - ' + (50 + xh) + 'px)'; // 124
|
QS('p3events')['height'] = 'calc(100vh - ' + (50 + xh) + 'px)'; // 124
|
||||||
QS('deskarea3x')['height'] = 'calc(100vh - ' + (74 + xh + xh2) + 'px)';
|
|
||||||
QS('deskarea3x')['max-height'] = 'calc(100vh - ' + (74 + xh + xh2) + 'px)';
|
|
||||||
QS('p5filetable')['height'] = 'calc(100vh - ' + (99 + xh) + 'px)'; // 160
|
QS('p5filetable')['height'] = 'calc(100vh - ' + (99 + xh) + 'px)'; // 160
|
||||||
QS('p13filetable')['height'] = 'calc(100vh - ' + (127 + xh + xh2) + 'px)'; // 124
|
QS('p13filetable')['height'] = 'calc(100vh - ' + (127 + xh + xh2) + 'px)'; // 124
|
||||||
QS('serverMainStats')['height'] = 'calc(100vh - ' + (50 + xh + xh2) + 'px)'; // 110
|
QS('serverMainStats')['height'] = 'calc(100vh - ' + (50 + xh + xh2) + 'px)'; // 110
|
||||||
@ -243,8 +241,17 @@
|
|||||||
QS('p15agentConsole')['max-height'] = 'calc(100vh - ' + (84 + xh + xh2) + 'px)';
|
QS('p15agentConsole')['max-height'] = 'calc(100vh - ' + (84 + xh + xh2) + 'px)';
|
||||||
QS('p15agentConsoleText')['height'] = 'calc(100vh - ' + (81 + xh + xh2) + 'px)';
|
QS('p15agentConsoleText')['height'] = 'calc(100vh - ' + (81 + xh + xh2) + 'px)';
|
||||||
QS('p15agentConsoleText')['max-height'] = 'calc(100vh - ' + (81 + xh + xh2) + 'px)';
|
QS('p15agentConsoleText')['max-height'] = 'calc(100vh - ' + (81 + xh + xh2) + 'px)';
|
||||||
QS('p14iframe')['height'] = 'calc(100vh - ' + (23 + xh + xh2) + 'px)';
|
if (fullscreen) {
|
||||||
QS('p14iframe')['max-height'] = 'calc(100vh - ' + (23 + xh + xh2) + 'px)';
|
QS('deskarea3x')['height'] = null;
|
||||||
|
QS('deskarea3x')['max-height'] = null;
|
||||||
|
QS('p14iframe')['height'] = null;
|
||||||
|
QS('p14iframe')['max-height'] = null;
|
||||||
|
} else {
|
||||||
|
QS('deskarea3x')['height'] = 'calc(100vh - ' + (74 + xh + xh2) + 'px)';
|
||||||
|
QS('deskarea3x')['max-height'] = 'calc(100vh - ' + (74 + xh + xh2) + 'px)';
|
||||||
|
QS('p14iframe')['height'] = 'calc(100vh - ' + (23 + xh + xh2) + 'px)';
|
||||||
|
QS('p14iframe')['max-height'] = 'calc(100vh - ' + (23 + xh + xh2) + 'px)';
|
||||||
|
}
|
||||||
QS('p43iframe')['height'] = 'calc(100vh - ' + (84 + xh) + 'px)';
|
QS('p43iframe')['height'] = 'calc(100vh - ' + (84 + xh) + 'px)';
|
||||||
QS('p43iframe')['max-height'] = 'calc(100vh - ' + (84 + xh) + 'px)';
|
QS('p43iframe')['max-height'] = 'calc(100vh - ' + (84 + xh) + 'px)';
|
||||||
QS('p16events')['height'] = 'calc(100vh - ' + (50 + xh + xh2) + 'px)';
|
QS('p16events')['height'] = 'calc(100vh - ' + (50 + xh + xh2) + 'px)';
|
||||||
@ -312,7 +319,7 @@
|
|||||||
|
|
||||||
function toggleNightMode() {
|
function toggleNightMode() {
|
||||||
nightMode = !nightMode;
|
nightMode = !nightMode;
|
||||||
if (nightMode) { QC('body').add('night'); } else { QC('body').remove('night'); }
|
if (nightMode) { QC('body').add('night'); QS('body')['background-color'] = '#000'; } else { QC('body').remove('night'); QS('body')['background-color'] = '#d3d9d6'; }
|
||||||
putstore('_nightMode', nightMode?'1':'0');
|
putstore('_nightMode', nightMode?'1':'0');
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -4491,6 +4498,7 @@
|
|||||||
}
|
}
|
||||||
deskAdjust();
|
deskAdjust();
|
||||||
updateDesktopButtons();
|
updateDesktopButtons();
|
||||||
|
adjustPanels();
|
||||||
}
|
}
|
||||||
|
|
||||||
function deskToggleFocus() {
|
function deskToggleFocus() {
|
||||||
|
@ -88,7 +88,7 @@
|
|||||||
QV('autoconnectbutton1', debugmode); // Desktop
|
QV('autoconnectbutton1', debugmode); // Desktop
|
||||||
//QV('DeskClip', debugmode); // Clipboard feature, not completed so show in in debug mode only.
|
//QV('DeskClip', debugmode); // Clipboard feature, not completed so show in in debug mode only.
|
||||||
|
|
||||||
if (nightMode) { QC('body').add('night'); }
|
if (nightMode) { QC('body').add('night'); QS('body')['background-color'] = '#000'; }
|
||||||
toggleFullScreen();
|
toggleFullScreen();
|
||||||
|
|
||||||
// Setup page visuals
|
// Setup page visuals
|
||||||
@ -231,8 +231,6 @@
|
|||||||
var xh2 = (uiMode > 1)?24:0;
|
var xh2 = (uiMode > 1)?24:0;
|
||||||
QS('p3users')['max-height'] = 'calc(100vh - ' + (50 + xh) + 'px)'; // 124
|
QS('p3users')['max-height'] = 'calc(100vh - ' + (50 + xh) + 'px)'; // 124
|
||||||
QS('p3events')['height'] = 'calc(100vh - ' + (50 + xh) + 'px)'; // 124
|
QS('p3events')['height'] = 'calc(100vh - ' + (50 + xh) + 'px)'; // 124
|
||||||
QS('deskarea3x')['height'] = 'calc(100vh - ' + (74 + xh + xh2) + 'px)';
|
|
||||||
QS('deskarea3x')['max-height'] = 'calc(100vh - ' + (74 + xh + xh2) + 'px)';
|
|
||||||
QS('p5filetable')['height'] = 'calc(100vh - ' + (99 + xh) + 'px)'; // 160
|
QS('p5filetable')['height'] = 'calc(100vh - ' + (99 + xh) + 'px)'; // 160
|
||||||
QS('p13filetable')['height'] = 'calc(100vh - ' + (127 + xh + xh2) + 'px)'; // 124
|
QS('p13filetable')['height'] = 'calc(100vh - ' + (127 + xh + xh2) + 'px)'; // 124
|
||||||
QS('serverMainStats')['height'] = 'calc(100vh - ' + (50 + xh + xh2) + 'px)'; // 110
|
QS('serverMainStats')['height'] = 'calc(100vh - ' + (50 + xh + xh2) + 'px)'; // 110
|
||||||
@ -243,8 +241,17 @@
|
|||||||
QS('p15agentConsole')['max-height'] = 'calc(100vh - ' + (84 + xh + xh2) + 'px)';
|
QS('p15agentConsole')['max-height'] = 'calc(100vh - ' + (84 + xh + xh2) + 'px)';
|
||||||
QS('p15agentConsoleText')['height'] = 'calc(100vh - ' + (81 + xh + xh2) + 'px)';
|
QS('p15agentConsoleText')['height'] = 'calc(100vh - ' + (81 + xh + xh2) + 'px)';
|
||||||
QS('p15agentConsoleText')['max-height'] = 'calc(100vh - ' + (81 + xh + xh2) + 'px)';
|
QS('p15agentConsoleText')['max-height'] = 'calc(100vh - ' + (81 + xh + xh2) + 'px)';
|
||||||
QS('p14iframe')['height'] = 'calc(100vh - ' + (23 + xh + xh2) + 'px)';
|
if (fullscreen) {
|
||||||
QS('p14iframe')['max-height'] = 'calc(100vh - ' + (23 + xh + xh2) + 'px)';
|
QS('deskarea3x')['height'] = null;
|
||||||
|
QS('deskarea3x')['max-height'] = null;
|
||||||
|
QS('p14iframe')['height'] = null;
|
||||||
|
QS('p14iframe')['max-height'] = null;
|
||||||
|
} else {
|
||||||
|
QS('deskarea3x')['height'] = 'calc(100vh - ' + (74 + xh + xh2) + 'px)';
|
||||||
|
QS('deskarea3x')['max-height'] = 'calc(100vh - ' + (74 + xh + xh2) + 'px)';
|
||||||
|
QS('p14iframe')['height'] = 'calc(100vh - ' + (23 + xh + xh2) + 'px)';
|
||||||
|
QS('p14iframe')['max-height'] = 'calc(100vh - ' + (23 + xh + xh2) + 'px)';
|
||||||
|
}
|
||||||
QS('p43iframe')['height'] = 'calc(100vh - ' + (84 + xh) + 'px)';
|
QS('p43iframe')['height'] = 'calc(100vh - ' + (84 + xh) + 'px)';
|
||||||
QS('p43iframe')['max-height'] = 'calc(100vh - ' + (84 + xh) + 'px)';
|
QS('p43iframe')['max-height'] = 'calc(100vh - ' + (84 + xh) + 'px)';
|
||||||
QS('p16events')['height'] = 'calc(100vh - ' + (50 + xh + xh2) + 'px)';
|
QS('p16events')['height'] = 'calc(100vh - ' + (50 + xh + xh2) + 'px)';
|
||||||
@ -312,7 +319,7 @@
|
|||||||
|
|
||||||
function toggleNightMode() {
|
function toggleNightMode() {
|
||||||
nightMode = !nightMode;
|
nightMode = !nightMode;
|
||||||
if (nightMode) { QC('body').add('night'); } else { QC('body').remove('night'); }
|
if (nightMode) { QC('body').add('night'); QS('body')['background-color'] = '#000'; } else { QC('body').remove('night'); QS('body')['background-color'] = '#d3d9d6'; }
|
||||||
putstore('_nightMode', nightMode?'1':'0');
|
putstore('_nightMode', nightMode?'1':'0');
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -4491,6 +4498,7 @@
|
|||||||
}
|
}
|
||||||
deskAdjust();
|
deskAdjust();
|
||||||
updateDesktopButtons();
|
updateDesktopButtons();
|
||||||
|
adjustPanels();
|
||||||
}
|
}
|
||||||
|
|
||||||
function deskToggleFocus() {
|
function deskToggleFocus() {
|
||||||
|
@ -88,7 +88,7 @@
|
|||||||
QV('autoconnectbutton1', debugmode); // Desktop
|
QV('autoconnectbutton1', debugmode); // Desktop
|
||||||
//QV('DeskClip', debugmode); // Clipboard feature, not completed so show in in debug mode only.
|
//QV('DeskClip', debugmode); // Clipboard feature, not completed so show in in debug mode only.
|
||||||
|
|
||||||
if (nightMode) { QC('body').add('night'); }
|
if (nightMode) { QC('body').add('night'); QS('body')['background-color'] = '#000'; }
|
||||||
toggleFullScreen();
|
toggleFullScreen();
|
||||||
|
|
||||||
// Setup page visuals
|
// Setup page visuals
|
||||||
@ -231,8 +231,6 @@
|
|||||||
var xh2 = (uiMode > 1)?24:0;
|
var xh2 = (uiMode > 1)?24:0;
|
||||||
QS('p3users')['max-height'] = 'calc(100vh - ' + (50 + xh) + 'px)'; // 124
|
QS('p3users')['max-height'] = 'calc(100vh - ' + (50 + xh) + 'px)'; // 124
|
||||||
QS('p3events')['height'] = 'calc(100vh - ' + (50 + xh) + 'px)'; // 124
|
QS('p3events')['height'] = 'calc(100vh - ' + (50 + xh) + 'px)'; // 124
|
||||||
QS('deskarea3x')['height'] = 'calc(100vh - ' + (74 + xh + xh2) + 'px)';
|
|
||||||
QS('deskarea3x')['max-height'] = 'calc(100vh - ' + (74 + xh + xh2) + 'px)';
|
|
||||||
QS('p5filetable')['height'] = 'calc(100vh - ' + (99 + xh) + 'px)'; // 160
|
QS('p5filetable')['height'] = 'calc(100vh - ' + (99 + xh) + 'px)'; // 160
|
||||||
QS('p13filetable')['height'] = 'calc(100vh - ' + (127 + xh + xh2) + 'px)'; // 124
|
QS('p13filetable')['height'] = 'calc(100vh - ' + (127 + xh + xh2) + 'px)'; // 124
|
||||||
QS('serverMainStats')['height'] = 'calc(100vh - ' + (50 + xh + xh2) + 'px)'; // 110
|
QS('serverMainStats')['height'] = 'calc(100vh - ' + (50 + xh + xh2) + 'px)'; // 110
|
||||||
@ -243,8 +241,17 @@
|
|||||||
QS('p15agentConsole')['max-height'] = 'calc(100vh - ' + (84 + xh + xh2) + 'px)';
|
QS('p15agentConsole')['max-height'] = 'calc(100vh - ' + (84 + xh + xh2) + 'px)';
|
||||||
QS('p15agentConsoleText')['height'] = 'calc(100vh - ' + (81 + xh + xh2) + 'px)';
|
QS('p15agentConsoleText')['height'] = 'calc(100vh - ' + (81 + xh + xh2) + 'px)';
|
||||||
QS('p15agentConsoleText')['max-height'] = 'calc(100vh - ' + (81 + xh + xh2) + 'px)';
|
QS('p15agentConsoleText')['max-height'] = 'calc(100vh - ' + (81 + xh + xh2) + 'px)';
|
||||||
QS('p14iframe')['height'] = 'calc(100vh - ' + (23 + xh + xh2) + 'px)';
|
if (fullscreen) {
|
||||||
QS('p14iframe')['max-height'] = 'calc(100vh - ' + (23 + xh + xh2) + 'px)';
|
QS('deskarea3x')['height'] = null;
|
||||||
|
QS('deskarea3x')['max-height'] = null;
|
||||||
|
QS('p14iframe')['height'] = null;
|
||||||
|
QS('p14iframe')['max-height'] = null;
|
||||||
|
} else {
|
||||||
|
QS('deskarea3x')['height'] = 'calc(100vh - ' + (74 + xh + xh2) + 'px)';
|
||||||
|
QS('deskarea3x')['max-height'] = 'calc(100vh - ' + (74 + xh + xh2) + 'px)';
|
||||||
|
QS('p14iframe')['height'] = 'calc(100vh - ' + (23 + xh + xh2) + 'px)';
|
||||||
|
QS('p14iframe')['max-height'] = 'calc(100vh - ' + (23 + xh + xh2) + 'px)';
|
||||||
|
}
|
||||||
QS('p43iframe')['height'] = 'calc(100vh - ' + (84 + xh) + 'px)';
|
QS('p43iframe')['height'] = 'calc(100vh - ' + (84 + xh) + 'px)';
|
||||||
QS('p43iframe')['max-height'] = 'calc(100vh - ' + (84 + xh) + 'px)';
|
QS('p43iframe')['max-height'] = 'calc(100vh - ' + (84 + xh) + 'px)';
|
||||||
QS('p16events')['height'] = 'calc(100vh - ' + (50 + xh + xh2) + 'px)';
|
QS('p16events')['height'] = 'calc(100vh - ' + (50 + xh + xh2) + 'px)';
|
||||||
@ -312,7 +319,7 @@
|
|||||||
|
|
||||||
function toggleNightMode() {
|
function toggleNightMode() {
|
||||||
nightMode = !nightMode;
|
nightMode = !nightMode;
|
||||||
if (nightMode) { QC('body').add('night'); } else { QC('body').remove('night'); }
|
if (nightMode) { QC('body').add('night'); QS('body')['background-color'] = '#000'; } else { QC('body').remove('night'); QS('body')['background-color'] = '#d3d9d6'; }
|
||||||
putstore('_nightMode', nightMode?'1':'0');
|
putstore('_nightMode', nightMode?'1':'0');
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -4491,6 +4498,7 @@
|
|||||||
}
|
}
|
||||||
deskAdjust();
|
deskAdjust();
|
||||||
updateDesktopButtons();
|
updateDesktopButtons();
|
||||||
|
adjustPanels();
|
||||||
}
|
}
|
||||||
|
|
||||||
function deskToggleFocus() {
|
function deskToggleFocus() {
|
||||||
|
@ -88,7 +88,7 @@
|
|||||||
QV('autoconnectbutton1', debugmode); // Desktop
|
QV('autoconnectbutton1', debugmode); // Desktop
|
||||||
//QV('DeskClip', debugmode); // Clipboard feature, not completed so show in in debug mode only.
|
//QV('DeskClip', debugmode); // Clipboard feature, not completed so show in in debug mode only.
|
||||||
|
|
||||||
if (nightMode) { QC('body').add('night'); }
|
if (nightMode) { QC('body').add('night'); QS('body')['background-color'] = '#000'; }
|
||||||
toggleFullScreen();
|
toggleFullScreen();
|
||||||
|
|
||||||
// Setup page visuals
|
// Setup page visuals
|
||||||
@ -231,8 +231,6 @@
|
|||||||
var xh2 = (uiMode > 1)?24:0;
|
var xh2 = (uiMode > 1)?24:0;
|
||||||
QS('p3users')['max-height'] = 'calc(100vh - ' + (50 + xh) + 'px)'; // 124
|
QS('p3users')['max-height'] = 'calc(100vh - ' + (50 + xh) + 'px)'; // 124
|
||||||
QS('p3events')['height'] = 'calc(100vh - ' + (50 + xh) + 'px)'; // 124
|
QS('p3events')['height'] = 'calc(100vh - ' + (50 + xh) + 'px)'; // 124
|
||||||
QS('deskarea3x')['height'] = 'calc(100vh - ' + (74 + xh + xh2) + 'px)';
|
|
||||||
QS('deskarea3x')['max-height'] = 'calc(100vh - ' + (74 + xh + xh2) + 'px)';
|
|
||||||
QS('p5filetable')['height'] = 'calc(100vh - ' + (99 + xh) + 'px)'; // 160
|
QS('p5filetable')['height'] = 'calc(100vh - ' + (99 + xh) + 'px)'; // 160
|
||||||
QS('p13filetable')['height'] = 'calc(100vh - ' + (127 + xh + xh2) + 'px)'; // 124
|
QS('p13filetable')['height'] = 'calc(100vh - ' + (127 + xh + xh2) + 'px)'; // 124
|
||||||
QS('serverMainStats')['height'] = 'calc(100vh - ' + (50 + xh + xh2) + 'px)'; // 110
|
QS('serverMainStats')['height'] = 'calc(100vh - ' + (50 + xh + xh2) + 'px)'; // 110
|
||||||
@ -243,8 +241,17 @@
|
|||||||
QS('p15agentConsole')['max-height'] = 'calc(100vh - ' + (84 + xh + xh2) + 'px)';
|
QS('p15agentConsole')['max-height'] = 'calc(100vh - ' + (84 + xh + xh2) + 'px)';
|
||||||
QS('p15agentConsoleText')['height'] = 'calc(100vh - ' + (81 + xh + xh2) + 'px)';
|
QS('p15agentConsoleText')['height'] = 'calc(100vh - ' + (81 + xh + xh2) + 'px)';
|
||||||
QS('p15agentConsoleText')['max-height'] = 'calc(100vh - ' + (81 + xh + xh2) + 'px)';
|
QS('p15agentConsoleText')['max-height'] = 'calc(100vh - ' + (81 + xh + xh2) + 'px)';
|
||||||
QS('p14iframe')['height'] = 'calc(100vh - ' + (23 + xh + xh2) + 'px)';
|
if (fullscreen) {
|
||||||
QS('p14iframe')['max-height'] = 'calc(100vh - ' + (23 + xh + xh2) + 'px)';
|
QS('deskarea3x')['height'] = null;
|
||||||
|
QS('deskarea3x')['max-height'] = null;
|
||||||
|
QS('p14iframe')['height'] = null;
|
||||||
|
QS('p14iframe')['max-height'] = null;
|
||||||
|
} else {
|
||||||
|
QS('deskarea3x')['height'] = 'calc(100vh - ' + (74 + xh + xh2) + 'px)';
|
||||||
|
QS('deskarea3x')['max-height'] = 'calc(100vh - ' + (74 + xh + xh2) + 'px)';
|
||||||
|
QS('p14iframe')['height'] = 'calc(100vh - ' + (23 + xh + xh2) + 'px)';
|
||||||
|
QS('p14iframe')['max-height'] = 'calc(100vh - ' + (23 + xh + xh2) + 'px)';
|
||||||
|
}
|
||||||
QS('p43iframe')['height'] = 'calc(100vh - ' + (84 + xh) + 'px)';
|
QS('p43iframe')['height'] = 'calc(100vh - ' + (84 + xh) + 'px)';
|
||||||
QS('p43iframe')['max-height'] = 'calc(100vh - ' + (84 + xh) + 'px)';
|
QS('p43iframe')['max-height'] = 'calc(100vh - ' + (84 + xh) + 'px)';
|
||||||
QS('p16events')['height'] = 'calc(100vh - ' + (50 + xh + xh2) + 'px)';
|
QS('p16events')['height'] = 'calc(100vh - ' + (50 + xh + xh2) + 'px)';
|
||||||
@ -312,7 +319,7 @@
|
|||||||
|
|
||||||
function toggleNightMode() {
|
function toggleNightMode() {
|
||||||
nightMode = !nightMode;
|
nightMode = !nightMode;
|
||||||
if (nightMode) { QC('body').add('night'); } else { QC('body').remove('night'); }
|
if (nightMode) { QC('body').add('night'); QS('body')['background-color'] = '#000'; } else { QC('body').remove('night'); QS('body')['background-color'] = '#d3d9d6'; }
|
||||||
putstore('_nightMode', nightMode?'1':'0');
|
putstore('_nightMode', nightMode?'1':'0');
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -4491,6 +4498,7 @@
|
|||||||
}
|
}
|
||||||
deskAdjust();
|
deskAdjust();
|
||||||
updateDesktopButtons();
|
updateDesktopButtons();
|
||||||
|
adjustPanels();
|
||||||
}
|
}
|
||||||
|
|
||||||
function deskToggleFocus() {
|
function deskToggleFocus() {
|
||||||
|
@ -1139,7 +1139,7 @@
|
|||||||
QV('autoconnectbutton1', debugmode); // Desktop
|
QV('autoconnectbutton1', debugmode); // Desktop
|
||||||
//QV('DeskClip', debugmode); // Clipboard feature, not completed so show in in debug mode only.
|
//QV('DeskClip', debugmode); // Clipboard feature, not completed so show in in debug mode only.
|
||||||
|
|
||||||
if (nightMode) { QC('body').add('night'); }
|
if (nightMode) { QC('body').add('night'); QS('body')['background-color'] = '#000'; }
|
||||||
toggleFullScreen();
|
toggleFullScreen();
|
||||||
|
|
||||||
// Setup page visuals
|
// Setup page visuals
|
||||||
@ -1282,8 +1282,6 @@
|
|||||||
var xh2 = (uiMode > 1)?24:0;
|
var xh2 = (uiMode > 1)?24:0;
|
||||||
QS('p3users')['max-height'] = 'calc(100vh - ' + (50 + xh) + 'px)'; // 124
|
QS('p3users')['max-height'] = 'calc(100vh - ' + (50 + xh) + 'px)'; // 124
|
||||||
QS('p3events')['height'] = 'calc(100vh - ' + (50 + xh) + 'px)'; // 124
|
QS('p3events')['height'] = 'calc(100vh - ' + (50 + xh) + 'px)'; // 124
|
||||||
QS('deskarea3x')['height'] = 'calc(100vh - ' + (74 + xh + xh2) + 'px)';
|
|
||||||
QS('deskarea3x')['max-height'] = 'calc(100vh - ' + (74 + xh + xh2) + 'px)';
|
|
||||||
QS('p5filetable')['height'] = 'calc(100vh - ' + (99 + xh) + 'px)'; // 160
|
QS('p5filetable')['height'] = 'calc(100vh - ' + (99 + xh) + 'px)'; // 160
|
||||||
QS('p13filetable')['height'] = 'calc(100vh - ' + (127 + xh + xh2) + 'px)'; // 124
|
QS('p13filetable')['height'] = 'calc(100vh - ' + (127 + xh + xh2) + 'px)'; // 124
|
||||||
QS('serverMainStats')['height'] = 'calc(100vh - ' + (50 + xh + xh2) + 'px)'; // 110
|
QS('serverMainStats')['height'] = 'calc(100vh - ' + (50 + xh + xh2) + 'px)'; // 110
|
||||||
@ -1294,8 +1292,17 @@
|
|||||||
QS('p15agentConsole')['max-height'] = 'calc(100vh - ' + (84 + xh + xh2) + 'px)';
|
QS('p15agentConsole')['max-height'] = 'calc(100vh - ' + (84 + xh + xh2) + 'px)';
|
||||||
QS('p15agentConsoleText')['height'] = 'calc(100vh - ' + (81 + xh + xh2) + 'px)';
|
QS('p15agentConsoleText')['height'] = 'calc(100vh - ' + (81 + xh + xh2) + 'px)';
|
||||||
QS('p15agentConsoleText')['max-height'] = 'calc(100vh - ' + (81 + xh + xh2) + 'px)';
|
QS('p15agentConsoleText')['max-height'] = 'calc(100vh - ' + (81 + xh + xh2) + 'px)';
|
||||||
QS('p14iframe')['height'] = 'calc(100vh - ' + (23 + xh + xh2) + 'px)';
|
if (fullscreen) {
|
||||||
QS('p14iframe')['max-height'] = 'calc(100vh - ' + (23 + xh + xh2) + 'px)';
|
QS('deskarea3x')['height'] = null;
|
||||||
|
QS('deskarea3x')['max-height'] = null;
|
||||||
|
QS('p14iframe')['height'] = null;
|
||||||
|
QS('p14iframe')['max-height'] = null;
|
||||||
|
} else {
|
||||||
|
QS('deskarea3x')['height'] = 'calc(100vh - ' + (74 + xh + xh2) + 'px)';
|
||||||
|
QS('deskarea3x')['max-height'] = 'calc(100vh - ' + (74 + xh + xh2) + 'px)';
|
||||||
|
QS('p14iframe')['height'] = 'calc(100vh - ' + (23 + xh + xh2) + 'px)';
|
||||||
|
QS('p14iframe')['max-height'] = 'calc(100vh - ' + (23 + xh + xh2) + 'px)';
|
||||||
|
}
|
||||||
QS('p43iframe')['height'] = 'calc(100vh - ' + (84 + xh) + 'px)';
|
QS('p43iframe')['height'] = 'calc(100vh - ' + (84 + xh) + 'px)';
|
||||||
QS('p43iframe')['max-height'] = 'calc(100vh - ' + (84 + xh) + 'px)';
|
QS('p43iframe')['max-height'] = 'calc(100vh - ' + (84 + xh) + 'px)';
|
||||||
QS('p16events')['height'] = 'calc(100vh - ' + (50 + xh + xh2) + 'px)';
|
QS('p16events')['height'] = 'calc(100vh - ' + (50 + xh + xh2) + 'px)';
|
||||||
@ -1363,7 +1370,7 @@
|
|||||||
|
|
||||||
function toggleNightMode() {
|
function toggleNightMode() {
|
||||||
nightMode = !nightMode;
|
nightMode = !nightMode;
|
||||||
if (nightMode) { QC('body').add('night'); } else { QC('body').remove('night'); }
|
if (nightMode) { QC('body').add('night'); QS('body')['background-color'] = '#000'; } else { QC('body').remove('night'); QS('body')['background-color'] = '#d3d9d6'; }
|
||||||
putstore('_nightMode', nightMode?'1':'0');
|
putstore('_nightMode', nightMode?'1':'0');
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -5542,6 +5549,7 @@
|
|||||||
}
|
}
|
||||||
deskAdjust();
|
deskAdjust();
|
||||||
updateDesktopButtons();
|
updateDesktopButtons();
|
||||||
|
adjustPanels();
|
||||||
}
|
}
|
||||||
|
|
||||||
function deskToggleFocus() {
|
function deskToggleFocus() {
|
||||||
|
@ -1139,7 +1139,7 @@
|
|||||||
QV('autoconnectbutton1', debugmode); // Desktop
|
QV('autoconnectbutton1', debugmode); // Desktop
|
||||||
//QV('DeskClip', debugmode); // Clipboard feature, not completed so show in in debug mode only.
|
//QV('DeskClip', debugmode); // Clipboard feature, not completed so show in in debug mode only.
|
||||||
|
|
||||||
if (nightMode) { QC('body').add('night'); }
|
if (nightMode) { QC('body').add('night'); QS('body')['background-color'] = '#000'; }
|
||||||
toggleFullScreen();
|
toggleFullScreen();
|
||||||
|
|
||||||
// Setup page visuals
|
// Setup page visuals
|
||||||
@ -1282,8 +1282,6 @@
|
|||||||
var xh2 = (uiMode > 1)?24:0;
|
var xh2 = (uiMode > 1)?24:0;
|
||||||
QS('p3users')['max-height'] = 'calc(100vh - ' + (50 + xh) + 'px)'; // 124
|
QS('p3users')['max-height'] = 'calc(100vh - ' + (50 + xh) + 'px)'; // 124
|
||||||
QS('p3events')['height'] = 'calc(100vh - ' + (50 + xh) + 'px)'; // 124
|
QS('p3events')['height'] = 'calc(100vh - ' + (50 + xh) + 'px)'; // 124
|
||||||
QS('deskarea3x')['height'] = 'calc(100vh - ' + (74 + xh + xh2) + 'px)';
|
|
||||||
QS('deskarea3x')['max-height'] = 'calc(100vh - ' + (74 + xh + xh2) + 'px)';
|
|
||||||
QS('p5filetable')['height'] = 'calc(100vh - ' + (99 + xh) + 'px)'; // 160
|
QS('p5filetable')['height'] = 'calc(100vh - ' + (99 + xh) + 'px)'; // 160
|
||||||
QS('p13filetable')['height'] = 'calc(100vh - ' + (127 + xh + xh2) + 'px)'; // 124
|
QS('p13filetable')['height'] = 'calc(100vh - ' + (127 + xh + xh2) + 'px)'; // 124
|
||||||
QS('serverMainStats')['height'] = 'calc(100vh - ' + (50 + xh + xh2) + 'px)'; // 110
|
QS('serverMainStats')['height'] = 'calc(100vh - ' + (50 + xh + xh2) + 'px)'; // 110
|
||||||
@ -1294,8 +1292,17 @@
|
|||||||
QS('p15agentConsole')['max-height'] = 'calc(100vh - ' + (84 + xh + xh2) + 'px)';
|
QS('p15agentConsole')['max-height'] = 'calc(100vh - ' + (84 + xh + xh2) + 'px)';
|
||||||
QS('p15agentConsoleText')['height'] = 'calc(100vh - ' + (81 + xh + xh2) + 'px)';
|
QS('p15agentConsoleText')['height'] = 'calc(100vh - ' + (81 + xh + xh2) + 'px)';
|
||||||
QS('p15agentConsoleText')['max-height'] = 'calc(100vh - ' + (81 + xh + xh2) + 'px)';
|
QS('p15agentConsoleText')['max-height'] = 'calc(100vh - ' + (81 + xh + xh2) + 'px)';
|
||||||
QS('p14iframe')['height'] = 'calc(100vh - ' + (23 + xh + xh2) + 'px)';
|
if (fullscreen) {
|
||||||
QS('p14iframe')['max-height'] = 'calc(100vh - ' + (23 + xh + xh2) + 'px)';
|
QS('deskarea3x')['height'] = null;
|
||||||
|
QS('deskarea3x')['max-height'] = null;
|
||||||
|
QS('p14iframe')['height'] = null;
|
||||||
|
QS('p14iframe')['max-height'] = null;
|
||||||
|
} else {
|
||||||
|
QS('deskarea3x')['height'] = 'calc(100vh - ' + (74 + xh + xh2) + 'px)';
|
||||||
|
QS('deskarea3x')['max-height'] = 'calc(100vh - ' + (74 + xh + xh2) + 'px)';
|
||||||
|
QS('p14iframe')['height'] = 'calc(100vh - ' + (23 + xh + xh2) + 'px)';
|
||||||
|
QS('p14iframe')['max-height'] = 'calc(100vh - ' + (23 + xh + xh2) + 'px)';
|
||||||
|
}
|
||||||
QS('p43iframe')['height'] = 'calc(100vh - ' + (84 + xh) + 'px)';
|
QS('p43iframe')['height'] = 'calc(100vh - ' + (84 + xh) + 'px)';
|
||||||
QS('p43iframe')['max-height'] = 'calc(100vh - ' + (84 + xh) + 'px)';
|
QS('p43iframe')['max-height'] = 'calc(100vh - ' + (84 + xh) + 'px)';
|
||||||
QS('p16events')['height'] = 'calc(100vh - ' + (50 + xh + xh2) + 'px)';
|
QS('p16events')['height'] = 'calc(100vh - ' + (50 + xh + xh2) + 'px)';
|
||||||
@ -1363,7 +1370,7 @@
|
|||||||
|
|
||||||
function toggleNightMode() {
|
function toggleNightMode() {
|
||||||
nightMode = !nightMode;
|
nightMode = !nightMode;
|
||||||
if (nightMode) { QC('body').add('night'); } else { QC('body').remove('night'); }
|
if (nightMode) { QC('body').add('night'); QS('body')['background-color'] = '#000'; } else { QC('body').remove('night'); QS('body')['background-color'] = '#d3d9d6'; }
|
||||||
putstore('_nightMode', nightMode?'1':'0');
|
putstore('_nightMode', nightMode?'1':'0');
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -5542,6 +5549,7 @@
|
|||||||
}
|
}
|
||||||
deskAdjust();
|
deskAdjust();
|
||||||
updateDesktopButtons();
|
updateDesktopButtons();
|
||||||
|
adjustPanels();
|
||||||
}
|
}
|
||||||
|
|
||||||
function deskToggleFocus() {
|
function deskToggleFocus() {
|
||||||
|
@ -1139,7 +1139,7 @@
|
|||||||
QV('autoconnectbutton1', debugmode); // Desktop
|
QV('autoconnectbutton1', debugmode); // Desktop
|
||||||
//QV('DeskClip', debugmode); // Clipboard feature, not completed so show in in debug mode only.
|
//QV('DeskClip', debugmode); // Clipboard feature, not completed so show in in debug mode only.
|
||||||
|
|
||||||
if (nightMode) { QC('body').add('night'); }
|
if (nightMode) { QC('body').add('night'); QS('body')['background-color'] = '#000'; }
|
||||||
toggleFullScreen();
|
toggleFullScreen();
|
||||||
|
|
||||||
// Setup page visuals
|
// Setup page visuals
|
||||||
@ -1282,8 +1282,6 @@
|
|||||||
var xh2 = (uiMode > 1)?24:0;
|
var xh2 = (uiMode > 1)?24:0;
|
||||||
QS('p3users')['max-height'] = 'calc(100vh - ' + (50 + xh) + 'px)'; // 124
|
QS('p3users')['max-height'] = 'calc(100vh - ' + (50 + xh) + 'px)'; // 124
|
||||||
QS('p3events')['height'] = 'calc(100vh - ' + (50 + xh) + 'px)'; // 124
|
QS('p3events')['height'] = 'calc(100vh - ' + (50 + xh) + 'px)'; // 124
|
||||||
QS('deskarea3x')['height'] = 'calc(100vh - ' + (74 + xh + xh2) + 'px)';
|
|
||||||
QS('deskarea3x')['max-height'] = 'calc(100vh - ' + (74 + xh + xh2) + 'px)';
|
|
||||||
QS('p5filetable')['height'] = 'calc(100vh - ' + (99 + xh) + 'px)'; // 160
|
QS('p5filetable')['height'] = 'calc(100vh - ' + (99 + xh) + 'px)'; // 160
|
||||||
QS('p13filetable')['height'] = 'calc(100vh - ' + (127 + xh + xh2) + 'px)'; // 124
|
QS('p13filetable')['height'] = 'calc(100vh - ' + (127 + xh + xh2) + 'px)'; // 124
|
||||||
QS('serverMainStats')['height'] = 'calc(100vh - ' + (50 + xh + xh2) + 'px)'; // 110
|
QS('serverMainStats')['height'] = 'calc(100vh - ' + (50 + xh + xh2) + 'px)'; // 110
|
||||||
@ -1294,8 +1292,17 @@
|
|||||||
QS('p15agentConsole')['max-height'] = 'calc(100vh - ' + (84 + xh + xh2) + 'px)';
|
QS('p15agentConsole')['max-height'] = 'calc(100vh - ' + (84 + xh + xh2) + 'px)';
|
||||||
QS('p15agentConsoleText')['height'] = 'calc(100vh - ' + (81 + xh + xh2) + 'px)';
|
QS('p15agentConsoleText')['height'] = 'calc(100vh - ' + (81 + xh + xh2) + 'px)';
|
||||||
QS('p15agentConsoleText')['max-height'] = 'calc(100vh - ' + (81 + xh + xh2) + 'px)';
|
QS('p15agentConsoleText')['max-height'] = 'calc(100vh - ' + (81 + xh + xh2) + 'px)';
|
||||||
QS('p14iframe')['height'] = 'calc(100vh - ' + (23 + xh + xh2) + 'px)';
|
if (fullscreen) {
|
||||||
QS('p14iframe')['max-height'] = 'calc(100vh - ' + (23 + xh + xh2) + 'px)';
|
QS('deskarea3x')['height'] = null;
|
||||||
|
QS('deskarea3x')['max-height'] = null;
|
||||||
|
QS('p14iframe')['height'] = null;
|
||||||
|
QS('p14iframe')['max-height'] = null;
|
||||||
|
} else {
|
||||||
|
QS('deskarea3x')['height'] = 'calc(100vh - ' + (74 + xh + xh2) + 'px)';
|
||||||
|
QS('deskarea3x')['max-height'] = 'calc(100vh - ' + (74 + xh + xh2) + 'px)';
|
||||||
|
QS('p14iframe')['height'] = 'calc(100vh - ' + (23 + xh + xh2) + 'px)';
|
||||||
|
QS('p14iframe')['max-height'] = 'calc(100vh - ' + (23 + xh + xh2) + 'px)';
|
||||||
|
}
|
||||||
QS('p43iframe')['height'] = 'calc(100vh - ' + (84 + xh) + 'px)';
|
QS('p43iframe')['height'] = 'calc(100vh - ' + (84 + xh) + 'px)';
|
||||||
QS('p43iframe')['max-height'] = 'calc(100vh - ' + (84 + xh) + 'px)';
|
QS('p43iframe')['max-height'] = 'calc(100vh - ' + (84 + xh) + 'px)';
|
||||||
QS('p16events')['height'] = 'calc(100vh - ' + (50 + xh + xh2) + 'px)';
|
QS('p16events')['height'] = 'calc(100vh - ' + (50 + xh + xh2) + 'px)';
|
||||||
@ -1363,7 +1370,7 @@
|
|||||||
|
|
||||||
function toggleNightMode() {
|
function toggleNightMode() {
|
||||||
nightMode = !nightMode;
|
nightMode = !nightMode;
|
||||||
if (nightMode) { QC('body').add('night'); } else { QC('body').remove('night'); }
|
if (nightMode) { QC('body').add('night'); QS('body')['background-color'] = '#000'; } else { QC('body').remove('night'); QS('body')['background-color'] = '#d3d9d6'; }
|
||||||
putstore('_nightMode', nightMode?'1':'0');
|
putstore('_nightMode', nightMode?'1':'0');
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -5542,6 +5549,7 @@
|
|||||||
}
|
}
|
||||||
deskAdjust();
|
deskAdjust();
|
||||||
updateDesktopButtons();
|
updateDesktopButtons();
|
||||||
|
adjustPanels();
|
||||||
}
|
}
|
||||||
|
|
||||||
function deskToggleFocus() {
|
function deskToggleFocus() {
|
||||||
|
@ -1139,7 +1139,7 @@
|
|||||||
QV('autoconnectbutton1', debugmode); // Desktop
|
QV('autoconnectbutton1', debugmode); // Desktop
|
||||||
//QV('DeskClip', debugmode); // Clipboard feature, not completed so show in in debug mode only.
|
//QV('DeskClip', debugmode); // Clipboard feature, not completed so show in in debug mode only.
|
||||||
|
|
||||||
if (nightMode) { QC('body').add('night'); }
|
if (nightMode) { QC('body').add('night'); QS('body')['background-color'] = '#000'; }
|
||||||
toggleFullScreen();
|
toggleFullScreen();
|
||||||
|
|
||||||
// Setup page visuals
|
// Setup page visuals
|
||||||
@ -1282,8 +1282,6 @@
|
|||||||
var xh2 = (uiMode > 1)?24:0;
|
var xh2 = (uiMode > 1)?24:0;
|
||||||
QS('p3users')['max-height'] = 'calc(100vh - ' + (50 + xh) + 'px)'; // 124
|
QS('p3users')['max-height'] = 'calc(100vh - ' + (50 + xh) + 'px)'; // 124
|
||||||
QS('p3events')['height'] = 'calc(100vh - ' + (50 + xh) + 'px)'; // 124
|
QS('p3events')['height'] = 'calc(100vh - ' + (50 + xh) + 'px)'; // 124
|
||||||
QS('deskarea3x')['height'] = 'calc(100vh - ' + (74 + xh + xh2) + 'px)';
|
|
||||||
QS('deskarea3x')['max-height'] = 'calc(100vh - ' + (74 + xh + xh2) + 'px)';
|
|
||||||
QS('p5filetable')['height'] = 'calc(100vh - ' + (99 + xh) + 'px)'; // 160
|
QS('p5filetable')['height'] = 'calc(100vh - ' + (99 + xh) + 'px)'; // 160
|
||||||
QS('p13filetable')['height'] = 'calc(100vh - ' + (127 + xh + xh2) + 'px)'; // 124
|
QS('p13filetable')['height'] = 'calc(100vh - ' + (127 + xh + xh2) + 'px)'; // 124
|
||||||
QS('serverMainStats')['height'] = 'calc(100vh - ' + (50 + xh + xh2) + 'px)'; // 110
|
QS('serverMainStats')['height'] = 'calc(100vh - ' + (50 + xh + xh2) + 'px)'; // 110
|
||||||
@ -1294,8 +1292,17 @@
|
|||||||
QS('p15agentConsole')['max-height'] = 'calc(100vh - ' + (84 + xh + xh2) + 'px)';
|
QS('p15agentConsole')['max-height'] = 'calc(100vh - ' + (84 + xh + xh2) + 'px)';
|
||||||
QS('p15agentConsoleText')['height'] = 'calc(100vh - ' + (81 + xh + xh2) + 'px)';
|
QS('p15agentConsoleText')['height'] = 'calc(100vh - ' + (81 + xh + xh2) + 'px)';
|
||||||
QS('p15agentConsoleText')['max-height'] = 'calc(100vh - ' + (81 + xh + xh2) + 'px)';
|
QS('p15agentConsoleText')['max-height'] = 'calc(100vh - ' + (81 + xh + xh2) + 'px)';
|
||||||
QS('p14iframe')['height'] = 'calc(100vh - ' + (23 + xh + xh2) + 'px)';
|
if (fullscreen) {
|
||||||
QS('p14iframe')['max-height'] = 'calc(100vh - ' + (23 + xh + xh2) + 'px)';
|
QS('deskarea3x')['height'] = null;
|
||||||
|
QS('deskarea3x')['max-height'] = null;
|
||||||
|
QS('p14iframe')['height'] = null;
|
||||||
|
QS('p14iframe')['max-height'] = null;
|
||||||
|
} else {
|
||||||
|
QS('deskarea3x')['height'] = 'calc(100vh - ' + (74 + xh + xh2) + 'px)';
|
||||||
|
QS('deskarea3x')['max-height'] = 'calc(100vh - ' + (74 + xh + xh2) + 'px)';
|
||||||
|
QS('p14iframe')['height'] = 'calc(100vh - ' + (23 + xh + xh2) + 'px)';
|
||||||
|
QS('p14iframe')['max-height'] = 'calc(100vh - ' + (23 + xh + xh2) + 'px)';
|
||||||
|
}
|
||||||
QS('p43iframe')['height'] = 'calc(100vh - ' + (84 + xh) + 'px)';
|
QS('p43iframe')['height'] = 'calc(100vh - ' + (84 + xh) + 'px)';
|
||||||
QS('p43iframe')['max-height'] = 'calc(100vh - ' + (84 + xh) + 'px)';
|
QS('p43iframe')['max-height'] = 'calc(100vh - ' + (84 + xh) + 'px)';
|
||||||
QS('p16events')['height'] = 'calc(100vh - ' + (50 + xh + xh2) + 'px)';
|
QS('p16events')['height'] = 'calc(100vh - ' + (50 + xh + xh2) + 'px)';
|
||||||
@ -1363,7 +1370,7 @@
|
|||||||
|
|
||||||
function toggleNightMode() {
|
function toggleNightMode() {
|
||||||
nightMode = !nightMode;
|
nightMode = !nightMode;
|
||||||
if (nightMode) { QC('body').add('night'); } else { QC('body').remove('night'); }
|
if (nightMode) { QC('body').add('night'); QS('body')['background-color'] = '#000'; } else { QC('body').remove('night'); QS('body')['background-color'] = '#d3d9d6'; }
|
||||||
putstore('_nightMode', nightMode?'1':'0');
|
putstore('_nightMode', nightMode?'1':'0');
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -5542,6 +5549,7 @@
|
|||||||
}
|
}
|
||||||
deskAdjust();
|
deskAdjust();
|
||||||
updateDesktopButtons();
|
updateDesktopButtons();
|
||||||
|
adjustPanels();
|
||||||
}
|
}
|
||||||
|
|
||||||
function deskToggleFocus() {
|
function deskToggleFocus() {
|
||||||
|
@ -1139,7 +1139,7 @@
|
|||||||
QV('autoconnectbutton1', debugmode); // Desktop
|
QV('autoconnectbutton1', debugmode); // Desktop
|
||||||
//QV('DeskClip', debugmode); // Clipboard feature, not completed so show in in debug mode only.
|
//QV('DeskClip', debugmode); // Clipboard feature, not completed so show in in debug mode only.
|
||||||
|
|
||||||
if (nightMode) { QC('body').add('night'); }
|
if (nightMode) { QC('body').add('night'); QS('body')['background-color'] = '#000'; }
|
||||||
toggleFullScreen();
|
toggleFullScreen();
|
||||||
|
|
||||||
// Setup page visuals
|
// Setup page visuals
|
||||||
@ -1282,8 +1282,6 @@
|
|||||||
var xh2 = (uiMode > 1)?24:0;
|
var xh2 = (uiMode > 1)?24:0;
|
||||||
QS('p3users')['max-height'] = 'calc(100vh - ' + (50 + xh) + 'px)'; // 124
|
QS('p3users')['max-height'] = 'calc(100vh - ' + (50 + xh) + 'px)'; // 124
|
||||||
QS('p3events')['height'] = 'calc(100vh - ' + (50 + xh) + 'px)'; // 124
|
QS('p3events')['height'] = 'calc(100vh - ' + (50 + xh) + 'px)'; // 124
|
||||||
QS('deskarea3x')['height'] = 'calc(100vh - ' + (74 + xh + xh2) + 'px)';
|
|
||||||
QS('deskarea3x')['max-height'] = 'calc(100vh - ' + (74 + xh + xh2) + 'px)';
|
|
||||||
QS('p5filetable')['height'] = 'calc(100vh - ' + (99 + xh) + 'px)'; // 160
|
QS('p5filetable')['height'] = 'calc(100vh - ' + (99 + xh) + 'px)'; // 160
|
||||||
QS('p13filetable')['height'] = 'calc(100vh - ' + (127 + xh + xh2) + 'px)'; // 124
|
QS('p13filetable')['height'] = 'calc(100vh - ' + (127 + xh + xh2) + 'px)'; // 124
|
||||||
QS('serverMainStats')['height'] = 'calc(100vh - ' + (50 + xh + xh2) + 'px)'; // 110
|
QS('serverMainStats')['height'] = 'calc(100vh - ' + (50 + xh + xh2) + 'px)'; // 110
|
||||||
@ -1294,8 +1292,17 @@
|
|||||||
QS('p15agentConsole')['max-height'] = 'calc(100vh - ' + (84 + xh + xh2) + 'px)';
|
QS('p15agentConsole')['max-height'] = 'calc(100vh - ' + (84 + xh + xh2) + 'px)';
|
||||||
QS('p15agentConsoleText')['height'] = 'calc(100vh - ' + (81 + xh + xh2) + 'px)';
|
QS('p15agentConsoleText')['height'] = 'calc(100vh - ' + (81 + xh + xh2) + 'px)';
|
||||||
QS('p15agentConsoleText')['max-height'] = 'calc(100vh - ' + (81 + xh + xh2) + 'px)';
|
QS('p15agentConsoleText')['max-height'] = 'calc(100vh - ' + (81 + xh + xh2) + 'px)';
|
||||||
QS('p14iframe')['height'] = 'calc(100vh - ' + (23 + xh + xh2) + 'px)';
|
if (fullscreen) {
|
||||||
QS('p14iframe')['max-height'] = 'calc(100vh - ' + (23 + xh + xh2) + 'px)';
|
QS('deskarea3x')['height'] = null;
|
||||||
|
QS('deskarea3x')['max-height'] = null;
|
||||||
|
QS('p14iframe')['height'] = null;
|
||||||
|
QS('p14iframe')['max-height'] = null;
|
||||||
|
} else {
|
||||||
|
QS('deskarea3x')['height'] = 'calc(100vh - ' + (74 + xh + xh2) + 'px)';
|
||||||
|
QS('deskarea3x')['max-height'] = 'calc(100vh - ' + (74 + xh + xh2) + 'px)';
|
||||||
|
QS('p14iframe')['height'] = 'calc(100vh - ' + (23 + xh + xh2) + 'px)';
|
||||||
|
QS('p14iframe')['max-height'] = 'calc(100vh - ' + (23 + xh + xh2) + 'px)';
|
||||||
|
}
|
||||||
QS('p43iframe')['height'] = 'calc(100vh - ' + (84 + xh) + 'px)';
|
QS('p43iframe')['height'] = 'calc(100vh - ' + (84 + xh) + 'px)';
|
||||||
QS('p43iframe')['max-height'] = 'calc(100vh - ' + (84 + xh) + 'px)';
|
QS('p43iframe')['max-height'] = 'calc(100vh - ' + (84 + xh) + 'px)';
|
||||||
QS('p16events')['height'] = 'calc(100vh - ' + (50 + xh + xh2) + 'px)';
|
QS('p16events')['height'] = 'calc(100vh - ' + (50 + xh + xh2) + 'px)';
|
||||||
@ -1363,7 +1370,7 @@
|
|||||||
|
|
||||||
function toggleNightMode() {
|
function toggleNightMode() {
|
||||||
nightMode = !nightMode;
|
nightMode = !nightMode;
|
||||||
if (nightMode) { QC('body').add('night'); } else { QC('body').remove('night'); }
|
if (nightMode) { QC('body').add('night'); QS('body')['background-color'] = '#000'; } else { QC('body').remove('night'); QS('body')['background-color'] = '#d3d9d6'; }
|
||||||
putstore('_nightMode', nightMode?'1':'0');
|
putstore('_nightMode', nightMode?'1':'0');
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -5542,6 +5549,7 @@
|
|||||||
}
|
}
|
||||||
deskAdjust();
|
deskAdjust();
|
||||||
updateDesktopButtons();
|
updateDesktopButtons();
|
||||||
|
adjustPanels();
|
||||||
}
|
}
|
||||||
|
|
||||||
function deskToggleFocus() {
|
function deskToggleFocus() {
|
||||||
|
Loading…
Reference in New Issue
Block a user