From 55512130e1ac9187beb180dbe4cf9d4fc5bdaf73 Mon Sep 17 00:00:00 2001 From: evazion Date: Thu, 22 Jun 2017 14:19:28 -0500 Subject: [PATCH] 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. --- app/assets/stylesheets/common/simple_form.scss | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/app/assets/stylesheets/common/simple_form.scss b/app/assets/stylesheets/common/simple_form.scss index d2926f181..7e3b606a7 100644 --- a/app/assets/stylesheets/common/simple_form.scss +++ b/app/assets/stylesheets/common/simple_form.scss @@ -66,3 +66,12 @@ form.inline-form { } } } + +div.ui-dialog { + div.input { + input[type="text"] { + width: 100%; + max-width: 100%; + } + } +}