CSS fixes.

This commit is contained in:
Ylian Saint-Hilaire 2019-04-25 15:59:10 -07:00
parent 2126caeadb
commit 58e5f87cf3
6 changed files with 16 additions and 12 deletions

View File

@ -220,6 +220,7 @@ module.exports.CreateAmtRedirect = function (module, domain, user, webserver, me
obj.forwardclient.on('data', function (data) {
//if (obj.parent.debugLevel >= 1) { // DEBUG
Debug(1, 'Intel AMT transport data from ' + node.host + ', ' + data.length + ' bytes.');
Debug(4, ' ' + Buffer.from(data, 'binary').toString('hex'));
//if (obj.parent.debugLevel >= 4) { Debug(4, ' ' + Buffer.from(data, 'binary').toString('hex')); }
//}
obj.xxOnSocketData(data);
@ -453,9 +454,10 @@ module.exports.CreateAmtRedirect = function (module, domain, user, webserver, me
}
obj.xxSend = function (x) {
if (obj.redirTrace) { console.log("REDIR-SEND2(" + x.length + "): " + new Buffer(x, "binary").toString('hex')); }
if (obj.redirTrace) { console.log("REDIR-SEND(" + x.length + "): " + new Buffer(x, "binary").toString('hex'), typeof x); }
//obj.Debug("Send(" + x.length + "): " + webserver.common.rstr2hex(x));
obj.forwardclient.write(x);
obj.forwardclient.write(x); // FIXES CIRA
//obj.forwardclient.write(new Buffer(x, "binary"));
}
obj.Send = function (x) {

View File

@ -541,7 +541,6 @@ body {
}
#d7otherset {
display: block;
border: 1px solid #666;
width: 200px;
height: 60px;
@ -552,8 +551,8 @@ body {
#idx_dlgButtonBar {
padding: 10px;
margin-bottom: 5px;
margin-right: 10px;
overflow: auto;
float: right;
}
#idx_dlgCancelButton {
@ -565,10 +564,13 @@ body {
#idx_dlgOkButton {
float: right;
width: 80px;
margin-left: 5px;
}
#idx_dlgDeleteButton {
float: left;
width: 80px;
margin-left: 5px;
}
#ua_fileaccessquota {

File diff suppressed because one or more lines are too long

View File

@ -849,10 +849,10 @@
</div>
<div>
<div>Other Settings</div>
<div id="d7otherset">
<label><input type="checkbox" id='d7showfocus'>Show Focus Tool<br></label>
<label><input type="checkbox" id='d7showcursor'>Show Local Mouse Cursor<br></label>
<label><input type="checkbox" id='d7localKeyMap'>Local Keyboard Map<br></label>
<div id="d7otherset" style="display:block">
<label style="display:block"><input type="checkbox" id="d7showfocus">Show Focus Tool</label>
<label style="display:block"><input type="checkbox" id="d7showcursor">Show Local Mouse Cursor</label>
<label style="display:block"><input type="checkbox" id="d7localKeyMap">Local Keyboard Map</label>
</div>
</div>
</div>
@ -861,7 +861,7 @@
<div id="idx_dlgButtonBar">
<input id="idx_dlgCancelButton" type="button" value="Cancel" style="" onclick="dialogclose(0)">
<input id="idx_dlgOkButton" type="button" value="OK" style="" onclick="dialogclose(1)">
<div><input id=idx_dlgDeleteButton type=button value=Delete style="display:none" onclick="dialogclose(2)"></div>
<div><input id="idx_dlgDeleteButton" type="button" value="Delete" style="display:none" onclick="dialogclose(2)"></div>
</div>
</div>
<iframe name="fileUploadFrame" style="display:none"></iframe>

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long