diff --git a/mayan/apps/common/forms.py b/mayan/apps/common/forms.py index c84cd6063f..57e71c6d16 100644 --- a/mayan/apps/common/forms.py +++ b/mayan/apps/common/forms.py @@ -31,7 +31,9 @@ class ChoiceForm(forms.Form): self.fields['selection'].help_text = help_text self.fields['selection'].widget.disabled_choices = disabled_choices self.fields['selection'].widget.attrs.update( - {'size': 14, 'class': 'choice_form'} + { + 'class': 'full-height', 'data-height-difference': '450' + } ) selection = forms.MultipleChoiceField(widget=DisableableSelectWidget())