MDL-54687 messages: Fix height bug with auto-rows textarea

Firefox reserves height for the horizontal scroll bars in a textarea. This
mucks up the height calculations for this element. Prevent it with overflow-x.
This commit is contained in:
Damyon Wiese 2016-08-15 15:02:37 +08:00 committed by Mark Nelson
parent 358e66f913
commit 4131cf1d6f
2 changed files with 7 additions and 0 deletions

View File

@ -524,3 +524,7 @@ input[size] {
padding: 0.5em;
font-size: large;
}
textarea[data-auto-rows] {
overflow-x: hidden;
}

View File

@ -14155,6 +14155,9 @@ input[size] {
padding: 0.5em;
font-size: large;
}
textarea[data-auto-rows] {
overflow-x: hidden;
}
body.modal-open {
overflow: hidden;
}