diff --git a/public/styles/style-bootstrap.css b/public/styles/style-bootstrap.css index 6f005144..eea0a18c 100644 --- a/public/styles/style-bootstrap.css +++ b/public/styles/style-bootstrap.css @@ -954,6 +954,11 @@ NoMeshesPanel img { -webkit-overflow-scrolling: touch; } +#xdevices th { + color: gray; + text-align: center; +} + #xdevicesmap { height: calc(100vh - 239px); width: 100%; diff --git a/views/default3.handlebars b/views/default3.handlebars index 8886cacb..10297c8a 100644 --- a/views/default3.handlebars +++ b/views/default3.handlebars @@ -16,7 +16,7 @@ - + {{!-- --}} @@ -187,7 +187,7 @@ onclick=topMenu() src="/images/3bars-30.png" width=30 height=30 /> '; // macOS agent install x += ''; // QR code agent install @@ -6481,40 +6464,40 @@ x += ""; x += ""; x += ""; - x += addHtmlValue("Android APK", '' + "APK" + ' '); + x += addHtmlValue("Android APK", '' + "APK" + ' '); x += '' // MeshCentral Assistant x += ''; // MeshCentral Assistant2 x += ''; // Windows agent uninstall x += ''; + x += ''; + x += 'Copy '; // macOS agent uninstall x += ''; // Linux binary installer x += ''; setModalContent("xxAddAgent", "Add Mesh Agent", x); @@ -13263,7 +13246,6 @@ const date = printDateTime(lastBootUpTime); x += addDetailItem("Last Boot Up Time", date); } - if (x != '') { sections.push({ name: "Operating System", html: x, img: 'software64.png' }); } } if (hardware.linux && hardware.linux.LastBootUpTime) { var lastBootUpTime = new Date(hardware.linux.LastBootUpTime); @@ -20717,8 +20699,8 @@ function getUrlVars() { var j, hash, vars = [], hashes = window.location.href.slice(window.location.href.indexOf('?') + 1).split('&'); for (var i = 0; i < hashes.length; i++) { j = hashes[i].indexOf('='); if (j > 0) { vars[hashes[i].substring(0, j)] = hashes[i].substring(j + 1, hashes[i].length); } } return vars; } //function getDocWidth() { if (window.innerWidth) return window.innerWidth; if (document.documentElement && document.documentElement.clientWidth && document.documentElement.clientWidth != 0) return document.documentElement.clientWidth; return document.getElementsByTagName('body')[0].clientWidth; } //function addHtmlValue(t, v) { return '
' + v + '
' + t + '
'; } - function addHtmlValue(t, v, classNames = []) { return `
${t}
${v}
`; } - function addHtmlFormFloating(t, v, classNames = []) { return `
${v}
`; } + function addHtmlValue(t, v, classNames = []) { return `
${t}
${v}
`; } + function addHtmlFormFloating(t, v, classNames = []) { return `
${v}
`; } function addHtmlValue2(t, v) { return '
' + v + '
' + t + '
'; }