Fixes #1521 Description field width has been addressed
Merge request reports
Activity
Filter activity
mentioned in commit 135b2ac0
@uma.s From what I can tell this MR only attempts to address the problem in Edit View and actually makes it worse! It set the box to 200px wide which is smaller than the max-width of 325px;
I have a custom stylesheet on my customer's system and adding the following two clauses addresses the problem. For desktop views at least.
/* Edit View */ .fieldBlockContainer .inputElement.textAreaElement { max-width:none; width: 100%; } /* Detail View */ .detailview-table textarea.inputElement.form-control { max-width:none; width: 90%; }
I understand there are @media clauses in the less, so why not adjust the sizing specifically for small viewports rather than doing this?
@lord_alan We will review this.
commit pulled
Please register or sign in to reply