Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
MDL-71244 enrol_manual: Add bootstrap classes to buttons
  • Loading branch information
lucaboesch committed Apr 27, 2021
1 parent ff833a0 commit 6651b3f
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions enrol/manual/manage.php
Expand Up @@ -188,7 +188,9 @@
</td>
<td id="buttonscell">
<div id="addcontrols">
<input name="add" <?php echo $addenabled; ?> id="add" type="submit" value="<?php echo $OUTPUT->larrow().'&nbsp;'.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() . '&nbsp;' . get_string('add'); ?>"
title="<?php print_string('add'); ?>" /><br />

<div class="enroloptions">

Expand All @@ -205,7 +207,9 @@
</div>

<div id="removecontrols">
<input name="remove" id="remove" <?php echo $removeenabled; ?> type="submit" value="<?php echo get_string('remove').'&nbsp;'.$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') . '&nbsp;' . $OUTPUT->rarrow(); ?>"
title="<?php print_string('remove'); ?>" />
</div>
</td>
<td id="potentialcell">
Expand Down

0 comments on commit 6651b3f

Please sign in to comment.