MDL-68584 core_question: flexbox compatible separator for question types

* the br tag does not work well in a flexbox context, a 100% with div
works in both classic and boost.
This commit is contained in:
Luca Bösch
2020-06-25 21:57:43 +02:00
parent 4557b7fed2
commit 456530205e
+1 -1
View File
@@ -58,7 +58,7 @@ class question_export_form extends moodleform {
if (get_string_manager()->string_exists('pluginname_help', 'qformat_' . $shortname)) {
$separator .= $OUTPUT->help_icon('pluginname', 'qformat_' . $shortname);
}
$separator .= '<br>';
$separator .= '<div class="w-100"></div>';
$separators[] = $separator;
}