Transferred from processwire/processwire-issues#917.
Since a Lister update, long field labels in the selector rows are truncated because the field column and value column share equal width. The request is to give the field column more space (e.g. 2/3) and the value column less (e.g. 1/3).
@adrianbj notes this can be worked around with CSS via AdminOnSteroids:
.InputfieldSelector .selector-row.has-subfield select.select-field {
width: 28% !important;
}
.InputfieldSelector .selector-row.has-subfield .subfield {
width: 10% !important;
}
A better default column width ratio in core would remove the need for this workaround.
Transferred from processwire/processwire-issues#917.
Since a Lister update, long field labels in the selector rows are truncated because the field column and value column share equal width. The request is to give the field column more space (e.g. 2/3) and the value column less (e.g. 1/3).
@adrianbj notes this can be worked around with CSS via AdminOnSteroids:
A better default column width ratio in core would remove the need for this workaround.