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:
Lucas Werkmeister 2020-05-23 11:20:18 +02:00
parent 414bbac1b4
commit fd974c25c2

View file

@ -17,6 +17,7 @@
.ve-ui-mwSaveDialog-summary textarea {
height: 4em;
resize: vertical;
}
.ve-ui-mwSaveDialog-foot {