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-05-02 00:06:28 +02:00
parent c11e2517a7
commit 8dfa3027a0

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;
}