diff --git a/question/type/multichoice/styles.css b/question/type/multichoice/styles.css index 5707361ec0b..77b4968b897 100644 --- a/question/type/multichoice/styles.css +++ b/question/type/multichoice/styles.css @@ -26,6 +26,10 @@ width: 15px; } +.qtype_multichoice_clearchoice input { + display: none; +} + /* Editing form. */ body#page-question-type-multichoice div[id^=fitem_id_][id*=answer_] { background: #eee; diff --git a/theme/boost/scss/moodle/question.scss b/theme/boost/scss/moodle/question.scss index e3339389b54..e12fe7a96fe 100644 --- a/theme/boost/scss/moodle/question.scss +++ b/theme/boost/scss/moodle/question.scss @@ -310,6 +310,17 @@ body.path-question-type { .que.multichoice .answer div.r1 .icon.fa-remove { text-indent: 0; } +.qtype_multichoice_clearchoice { + padding-top: 10px; + label { + cursor: pointer; + text-decoration: underline; + padding-left: 30px; + } +} +.qtype_multichoice_clearchoice input { + display: none; +} .formulation input[type="text"], .formulation select { diff --git a/theme/boost/style/moodle.css b/theme/boost/style/moodle.css index 0e6fadd3fce..332ea8c8cf6 100644 --- a/theme/boost/style/moodle.css +++ b/theme/boost/style/moodle.css @@ -14028,6 +14028,16 @@ body.path-question-type { .que.multichoice .answer div.r1 .icon.fa-remove { text-indent: 0; } +.qtype_multichoice_clearchoice { + padding-top: 10px; } + .qtype_multichoice_clearchoice label { + cursor: pointer; + text-decoration: underline; + padding-left: 30px; } + +.qtype_multichoice_clearchoice input { + display: none; } + .formulation input[type="text"], .formulation select { width: auto; diff --git a/theme/classic/style/moodle.css b/theme/classic/style/moodle.css index 64dbcba9904..8c5de0ea122 100644 --- a/theme/classic/style/moodle.css +++ b/theme/classic/style/moodle.css @@ -14279,6 +14279,16 @@ body.path-question-type { .que.multichoice .answer div.r1 .icon.fa-remove { text-indent: 0; } +.qtype_multichoice_clearchoice { + padding-top: 10px; } + .qtype_multichoice_clearchoice label { + cursor: pointer; + text-decoration: underline; + padding-left: 30px; } + +.qtype_multichoice_clearchoice input { + display: none; } + .formulation input[type="text"], .formulation select { width: auto;