diff --git a/src/pretix/presale/templates/pretixpresale/event/checkout_questions.html b/src/pretix/presale/templates/pretixpresale/event/checkout_questions.html index 681b3fe92..cdfd68cd9 100644 --- a/src/pretix/presale/templates/pretixpresale/event/checkout_questions.html +++ b/src/pretix/presale/templates/pretixpresale/event/checkout_questions.html @@ -54,7 +54,7 @@ {% if forloop.counter > 1 %} - + {% endif %} diff --git a/src/static/pretixpresale/js/ui/main.js b/src/static/pretixpresale/js/ui/main.js index f420775cd..388e6079f 100644 --- a/src/static/pretixpresale/js/ui/main.js +++ b/src/static/pretixpresale/js/ui/main.js @@ -40,11 +40,11 @@ $(function () { $(".js-copy-answers").click(function (e) { e.preventDefault(); var idx = $(this).data('id'); - bind_groups(idx); + copy_answers(idx); }); }); -function bind_groups(idx) { +function copy_answers(idx) { var elements = $('*[data-idx="'+idx+'"] input, *[data-idx="'+idx+'"] select, *[data-idx="'+idx+'"] textarea'); var firstAnswers = $('*[data-idx="0"] input, *[data-idx="0"] select, *[data-idx="0"] textarea'); elements.each(function(index){ diff --git a/src/static/pretixpresale/scss/_event.scss b/src/static/pretixpresale/scss/_event.scss index e7da75a57..862d9d9d8 100644 --- a/src/static/pretixpresale/scss/_event.scss +++ b/src/static/pretixpresale/scss/_event.scss @@ -104,6 +104,9 @@ section.front-page { color: white; } } +#questions_group .panel-title a { + line-height: 22px; +} @media (max-width: $screen-sm-max) { .page-header h1 small { display: block;