mirror of
https://github.com/moodle/moodle.git
synced 2025-08-04 08:26:37 +02:00
MDL-64392 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 clean and boost.
This commit is contained in:
parent
33a388eff7
commit
02955a84d1
1 changed files with 1 additions and 1 deletions
|
@ -58,7 +58,7 @@ class question_import_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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue