From b4246fe170766b9e6906700fc3d5ca4d617761c3 Mon Sep 17 00:00:00 2001 From: Tom Price Date: Thu, 14 Jul 2016 00:04:09 +0100 Subject: [PATCH] Fix for MIC field overflowing the bottom of the panel #218 --- RIGS/templates/RIGS/event_form.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/RIGS/templates/RIGS/event_form.html b/RIGS/templates/RIGS/event_form.html index 28e307ca..b2b4dcd7 100644 --- a/RIGS/templates/RIGS/event_form.html +++ b/RIGS/templates/RIGS/event_form.html @@ -63,7 +63,7 @@ } else { $('.form-is_rig').slideDown(); } - $('.form-hws').css('overflow', 'visible'); + $('.form-hws, .form-hws .form-is_rig').css('overflow', 'visible'); } else { $('#{{form.is_rig.auto_id}}').prop('checked', false); $('.form-is_rig').slideUp(); @@ -445,4 +445,4 @@ {% include 'RIGS/item_modal.html' %} -{% endblock %} \ No newline at end of file +{% endblock %}