Fixed some display problems for module and parameter block
This commit is contained in:
@ -67,7 +67,7 @@
|
|||||||
|
|
||||||
.col-left {
|
.col-left {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
width: 155px;
|
width: 40%;
|
||||||
vertical-align: top;
|
vertical-align: top;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -142,17 +142,18 @@
|
|||||||
|
|
||||||
.col-right-modules {
|
.col-right-modules {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
width: 180px;
|
width: 60%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.col-right-parameters {
|
.col-right-parameters {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
width: 180px;
|
width: 60%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.col-right-value {
|
.col-right-value {
|
||||||
display: block;
|
display: block;
|
||||||
text-align: right;
|
text-align: right;
|
||||||
|
padding-right: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.col-right-disabled {
|
.col-right-disabled {
|
||||||
|
@ -280,6 +280,7 @@ function updateValue(component) {
|
|||||||
let text = htmlEscape(component.formatted);
|
let text = htmlEscape(component.formatted);
|
||||||
if (text) {
|
if (text) {
|
||||||
elem.innerHTML = text;
|
elem.innerHTML = text;
|
||||||
|
// elem.innerHTML = ' ein etwas zu langer, nein viel zu langer Text...';
|
||||||
}
|
}
|
||||||
} else if (type == "input") {
|
} else if (type == "input") {
|
||||||
let row = elem.closest('div');
|
let row = elem.closest('div');
|
||||||
|
Reference in New Issue
Block a user