h5p / h5p-question-set

6 stars 83 forks source link

Fix: Start Quiz button unhides questionset #122

Open ymdahi opened 1 year ago

ymdahi commented 1 year ago

Addresses #121

This patch:

Tested on v1.20.11

otacke commented 1 year ago

@ymdahi It seems to be your site's custom stylesheet that is causing the problems.

You're setting .hidden { display: none !important; }. Using !important is a code smell anyway, and here it's preventing jQuery's show() from removing the regular display value. Cmp. https://api.jquery.com/show/