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:
committed by
Mark Nelson
parent
358e66f913
commit
4131cf1d6f
@@ -524,3 +524,7 @@ input[size] {
|
||||
padding: 0.5em;
|
||||
font-size: large;
|
||||
}
|
||||
|
||||
textarea[data-auto-rows] {
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
@@ -14155,6 +14155,9 @@ input[size] {
|
||||
padding: 0.5em;
|
||||
font-size: large;
|
||||
}
|
||||
textarea[data-auto-rows] {
|
||||
overflow-x: hidden;
|
||||
}
|
||||
body.modal-open {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user