mirror of
https://github.com/moodle/moodle.git
synced 2025-04-20 07:56:06 +02:00
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:
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;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user