From ab0f41c043d8750f3fb1b21fc8712db38c8a8280 Mon Sep 17 00:00:00 2001 From: Felix Niklas Date: Wed, 10 Feb 2016 12:03:55 +0100 Subject: [PATCH] columnSelect: fix overflow in FF in modals --- app/assets/stylesheets/zammad.scss | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/app/assets/stylesheets/zammad.scss b/app/assets/stylesheets/zammad.scss index 40b5d14eb..eac093397 100644 --- a/app/assets/stylesheets/zammad.scss +++ b/app/assets/stylesheets/zammad.scss @@ -1195,6 +1195,17 @@ fieldset { } } +/* + +Firefox Specific Hack +to fix the overflow of column select with long names +https://stackoverflow.com/questions/17408815/fieldset-resizes-wrong-appears-to-have-unremovable-min-width-min-content/17863685#17863685 + +*/ +@-moz-document url-prefix() { + fieldset { display: table-cell; } +} + fieldset > .form-group { padding: 0 4px;