Skip to content

Commit

Permalink
MDL-70578 cohorts: Add bootstrap classes to buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
lucaboesch committed Jan 8, 2021
1 parent ed24004 commit e25c56a
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions cohort/assign.php
Original file line number Diff line number Diff line change
Expand Up @@ -115,11 +115,14 @@
</td>
<td id="buttonscell">
<div id="addcontrols">
<input name="add" id="add" type="submit" value="<?php echo $OUTPUT->larrow().'&nbsp;'.s(get_string('add')); ?>" title="<?php p(get_string('add')); ?>" /><br />
<input class="btn btn-secondary" name="add" id="add" type="submit" value="<?php echo $OUTPUT->larrow() . '&nbsp;' .
s(get_string('add')); ?>" title="<?php p(get_string('add')); ?>" /><br />
</div>

<div id="removecontrols">
<input name="remove" id="remove" type="submit" value="<?php echo s(get_string('remove')).'&nbsp;'.$OUTPUT->rarrow(); ?>" title="<?php p(get_string('remove')); ?>" />
<input class="btn btn-secondary" name="remove" id="remove" type="submit"
value="<?php echo s(get_string('remove')) . '&nbsp;' . $OUTPUT->rarrow(); ?>"
title="<?php p(get_string('remove')); ?>" />
</div>
</td>
<td id="potentialcell">
Expand All @@ -128,7 +131,7 @@
</td>
</tr>
<tr><td colspan="3" id='backcell'>
<input type="submit" name="cancel" value="<?php p(get_string('backtocohorts', 'cohort')); ?>" />
<input class="btn btn-secondary" type="submit" name="cancel" value="<?php p(get_string('backtocohorts', 'cohort')); ?>" />
</td></tr>
</table>
</div></form>
Expand Down

0 comments on commit e25c56a

Please sign in to comment.