mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-12-01 01:16:30 +00:00
SaveDialog: only allow vertical resize of summary
By default, many browsers permit resizing the textarea in both dimensions; however, the SaveDialog doesn’t handle horizontal resizing very well (the textarea is no longer centered and the options don’t adapt to the new width), so add some CSS to limit the resizing to vertical only. Change-Id: I91bf63357237ddc2e3ede8e661480ab0cb48d10e
This commit is contained in:
parent
414bbac1b4
commit
fd974c25c2
|
@ -17,6 +17,7 @@
|
|||
|
||||
.ve-ui-mwSaveDialog-summary textarea {
|
||||
height: 4em;
|
||||
resize: vertical;
|
||||
}
|
||||
|
||||
.ve-ui-mwSaveDialog-foot {
|
||||
|
|
Loading…
Reference in a new issue