mirror of
https://github.com/moodle/moodle.git
synced 2025-08-04 08:26:37 +02:00
MDL-71244 enrol_manual: Add bootstrap classes to buttons
This commit is contained in:
parent
a5f0b354e7
commit
6ab749558e
1 changed files with 6 additions and 2 deletions
|
@ -188,7 +188,9 @@ $removeenabled = $canunenrol ? '' : 'disabled="disabled"';
|
||||||
</td>
|
</td>
|
||||||
<td id="buttonscell">
|
<td id="buttonscell">
|
||||||
<div id="addcontrols">
|
<div id="addcontrols">
|
||||||
<input name="add" <?php echo $addenabled; ?> id="add" type="submit" value="<?php echo $OUTPUT->larrow().' '.get_string('add'); ?>" title="<?php print_string('add'); ?>" /><br />
|
<input class="btn btn-secondary" name="add" <?php echo $addenabled; ?> id="add" type="submit"
|
||||||
|
value="<?php echo $OUTPUT->larrow() . ' ' . get_string('add'); ?>"
|
||||||
|
title="<?php print_string('add'); ?>" /><br />
|
||||||
|
|
||||||
<div class="enroloptions">
|
<div class="enroloptions">
|
||||||
|
|
||||||
|
@ -205,7 +207,9 @@ $removeenabled = $canunenrol ? '' : 'disabled="disabled"';
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="removecontrols">
|
<div id="removecontrols">
|
||||||
<input name="remove" id="remove" <?php echo $removeenabled; ?> type="submit" value="<?php echo get_string('remove').' '.$OUTPUT->rarrow(); ?>" title="<?php print_string('remove'); ?>" />
|
<input class="btn btn-secondary" name="remove" id="remove" <?php echo $removeenabled; ?> type="submit"
|
||||||
|
value="<?php echo get_string('remove') . ' ' . $OUTPUT->rarrow(); ?>"
|
||||||
|
title="<?php print_string('remove'); ?>" />
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
<td id="potentialcell">
|
<td id="potentialcell">
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue