From 63594064614515c543696280a2f1cb0f1c635a59 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luca=20B=C3=B6sch?= Date: Wed, 24 Dec 2025 13:23:45 +0100 Subject: [PATCH] MDL-87456 workshop: Amend action links to switch phase. --- mod/workshop/renderer.php | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/mod/workshop/renderer.php b/mod/workshop/renderer.php index 0c33d404cf3..221c5178f56 100644 --- a/mod/workshop/renderer.php +++ b/mod/workshop/renderer.php @@ -321,7 +321,13 @@ class mod_workshop_renderer extends plugin_renderer_base { } else { $icon = new pix_icon('i/marker', get_string('switchphase'.$phasecode, 'mod_workshop')); } - $actions .= $this->output->action_icon($action->url, $icon, null, null, true); + $actions .= $this->output->action_icon( + $action->url, + $icon, + null, + ['class' => 'action-icon ms-0 ps-0'], + true + ); } } }