Problem/Motivation
When adding a text field with multiple values, the text field will overflow over its designated area on narrow screens (the minimum width this happens is 780px).
Proposed resolution
Port the solution from Claro, and change .form-element
to .form-text
/**
* Target every .form-element input that parent is a form-item of a table cell.
* This ignores the filter format select of the textarea editor.
*/
td > .form-item > .form-element,
td > .ajax-new-content > .form-item > .form-element {
width: 100%;
}