Firefox puts resize vertical handles on inputs where proprietary subspecies of Chromium do not.
This looks slightly daft:
The culprit appears to be scss/ui/_input.scss
// form
textarea,
select,
input {
border: 1px solid variables.$border-color;
border-radius: 3px;
box-sizing: border-box;
font-family: Arial;
font-size: variables.$font-size-normal;
line-height: variables.$line-height-base;
margin-bottom: .375rem;
padding: $button-padding-medium;
resize: vertical;
The proposed fix is to remove resize: vertical; from there and add
textarea {
resize: vertical;
}
for I cannot see any cases where the resize handle should reasonably appear for an input or select element
Firefox puts resize vertical handles on inputs where proprietary subspecies of Chromium do not.
This looks slightly daft:
The culprit appears to be scss/ui/_input.scss
The proposed fix is to remove
resize: vertical;from there and addfor I cannot see any cases where the resize handle should reasonably appear for an input or select element