css: set text fields in dialogs to 100% width.

* Fixes the flag reason field being too small in the flag dialog
* Fixes the source field being too small in the post replacement dialog.
This commit is contained in:
evazion
2017-06-22 14:19:28 -05:00
parent 73f479e240
commit 55512130e1

View File

@@ -66,3 +66,12 @@ form.inline-form {
}
}
}
div.ui-dialog {
div.input {
input[type="text"] {
width: 100%;
max-width: 100%;
}
}
}