From 2e477f03ccfe9d8bde037c9b39bb2140185205a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luca=20B=C3=B6sch?= Date: Sat, 29 Sep 2018 12:56:22 +0200 Subject: [PATCH] =?UTF-8?q?MDL-63487=20badges:=20Style=20"=E2=97=80=20Awar?= =?UTF-8?q?d=20badge"=20and=20"Revoke=20badge=20=E2=96=B6"=20buttons?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- badges/renderer.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/badges/renderer.php b/badges/renderer.php index 307675db55c..c151ef378aa 100644 --- a/badges/renderer.php +++ b/badges/renderer.php @@ -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';