Merge branch 'MDL-63487-master' of https://github.com/lucaboesch/moodle

This commit is contained in:
David Monllao 2018-11-19 08:07:05 +01:00
commit 9b2d10e522

View File

@ -113,13 +113,13 @@ class core_badges_renderer extends plugin_renderer_base {
'type' => 'submit',
'name' => 'award',
'value' => $this->output->larrow() . ' ' . get_string('award', 'badges'),
'class' => 'actionbutton')
'class' => 'actionbutton btn btn-secondary')
);
$actioncell->text .= html_writer::empty_tag('input', array(
'type' => 'submit',
'name' => 'revoke',
'value' => get_string('revoke', 'badges') . ' ' . $this->output->rarrow(),
'class' => 'actionbutton')
'class' => 'actionbutton btn btn-secondary')
);
$actioncell->text .= html_writer::end_tag('div', array());
$actioncell->attributes['class'] = 'actions';