From e24d3713e1682cd3033c10626c5dd8512aad99fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luca=20B=C3=B6sch?= Date: Thu, 11 Dec 2025 14:37:37 +0100 Subject: [PATCH] MDL-87441 user: Align the "With selected users..." label with BS5. --- user/index.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/user/index.php b/user/index.php index 1c93977b165..5ea22869bbe 100644 --- a/user/index.php +++ b/user/index.php @@ -280,7 +280,11 @@ $selectactionparams = array( $label = html_writer::tag('label', get_string("withselectedusers"), ['for' => 'formactionid', 'class' => 'col-form-label d-inline']); $select = html_writer::select($displaylist, 'formaction', '', ['' => 'choosedots'], $selectactionparams); -echo html_writer::tag('div', $label . $select); +echo html_writer::tag( + 'div', + $label . $select, + ['class' => 'd-flex flex-wrap align-items-md-center gap-2 mb-3'], +); echo ''; echo '
' . $OUTPUT->help_icon('publishstate', 'notes') . '
';