Fixed some display problems for module and parameter block

This commit is contained in:
Daniel
2025-04-25 13:12:06 +02:00
parent a4b9ad17cd
commit 62c981d396
2 changed files with 5 additions and 3 deletions

View File

@ -67,7 +67,7 @@
.col-left {
display: inline-block;
width: 155px;
width: 40%;
vertical-align: top;
}
@ -142,17 +142,18 @@
.col-right-modules {
display: inline-block;
width: 180px;
width: 60%;
}
.col-right-parameters {
display: inline-block;
width: 180px;
width: 60%;
}
.col-right-value {
display: block;
text-align: right;
padding-right: 20px;
}
.col-right-disabled {

View File

@ -280,6 +280,7 @@ function updateValue(component) {
let text = htmlEscape(component.formatted);
if (text) {
elem.innerHTML = text;
// elem.innerHTML = ' ein etwas zu langer, nein viel zu langer Text...';
}
} else if (type == "input") {
let row = elem.closest('div');