diff --git a/public/mod/choice/renderer.php b/public/mod/choice/renderer.php index 8873014b64d..42473c83d9e 100644 --- a/public/mod/choice/renderer.php +++ b/public/mod/choice/renderer.php @@ -296,7 +296,7 @@ class mod_choice_renderer extends plugin_renderer_base { $row = new html_table_row($columns); $table->data[] = $row; - $html .= html_writer::tag('div', html_writer::table($table), array('class'=>'response')); + $html .= html_writer::tag('div', html_writer::table($table), ['class' => 'response mb-3']); $actiondata = ''; if ($choices->viewresponsecapability && $choices->deleterepsonsecapability) { diff --git a/public/theme/boost/scss/moodle/modules.scss b/public/theme/boost/scss/moodle/modules.scss index 0bcdacb06ec..7a3d41fc53c 100644 --- a/public/theme/boost/scss/moodle/modules.scss +++ b/public/theme/boost/scss/moodle/modules.scss @@ -168,6 +168,12 @@ select { } } +.path-mod-choice { + .responseaction select.singleselect { + display: inline-block; + } +} + // Forum module .path-mod-forum .forumsearch { diff --git a/public/theme/boost/style/moodle.css b/public/theme/boost/style/moodle.css index 0d8844db2d9..e3607a43908 100644 --- a/public/theme/boost/style/moodle.css +++ b/public/theme/boost/style/moodle.css @@ -35749,6 +35749,10 @@ select { vertical-align: top; } +.path-mod-choice .responseaction select.singleselect { + display: inline-block; +} + .path-mod-forum .forumsearch input, .path-mod-forum .forumsearch .helptooltip { margin: 0 3px; diff --git a/public/theme/classic/style/moodle.css b/public/theme/classic/style/moodle.css index c5eb052c108..ac077d588de 100644 --- a/public/theme/classic/style/moodle.css +++ b/public/theme/classic/style/moodle.css @@ -35749,6 +35749,10 @@ select { vertical-align: top; } +.path-mod-choice .responseaction select.singleselect { + display: inline-block; +} + .path-mod-forum .forumsearch input, .path-mod-forum .forumsearch .helptooltip { margin: 0 3px;