ecampbell / moodle-qtype_multichoiceset

All or Nothing Moodle question type originally created by Adriane Boyd
6 stars 21 forks source link

Display problem #20

Closed rezeau closed 3 years ago

rezeau commented 3 years ago

Using latest version 1.8.0 (Build: 2021042501) (2021042501) on Moodle 3.11 (Build: 20210517). 1.- The checkboxes should be aligned with the question text. 2.- If the numbering option is selected, the numbers (or letters) overlap with the beginning of the answer text. 2021-07-05_15-48-01

rezeau commented 3 years ago

Hi @ecampbell ! Further to an exchange on the https://moodle.org/plugins/qtype_oumultiresponse discussion yesterday, I think I found a fix for this display bug with this change in your plugin styles.css file: .que.multichoiceset .answer div.r0, .que.multichoiceset .answer div.r1 { //padding: 0.3em 0 0.3em 25px; //text-indent: -25px; display: flex; flex-wrap: inherit; text-indent: inherit; padding: inherit; } Hope that helps. Joseph 2021-07-07_14-48-58

ecampbell commented 3 years ago

Hi Joseph, I have released a new version 1.10.0, which contains the fix you suggest in the CSS file.

rezeau commented 3 years ago

Works fine, thanks!