summaryrefslogtreecommitdiff
path: root/app/helpers/environment_helper.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/helpers/environment_helper.rb')
-rw-r--r--app/helpers/environment_helper.rb5
1 files changed, 3 insertions, 2 deletions
diff --git a/app/helpers/environment_helper.rb b/app/helpers/environment_helper.rb
index 0e64a98c9da..2b3700a9f21 100644
--- a/app/helpers/environment_helper.rb
+++ b/app/helpers/environment_helper.rb
@@ -58,8 +58,9 @@ module EnvironmentHelper
s_('Deployment|blocked')
end
- klass = "ci-status ci-#{status.dasherize}"
- text = "#{ci_icon_for_status(status)} #{status_text}".html_safe
+ ci_icon_utilities = "gl-display-inline-flex gl-align-items-center gl-line-height-0 gl-px-3 gl-py-2 gl-rounded-base"
+ klass = "ci-status ci-#{status.dasherize} #{ci_icon_utilities}"
+ text = "#{ci_icon_for_status(status)} <span class=\"gl-ml-2\">#{status_text}</span>".html_safe
if deployment.deployable
link_to(text, deployment_path(deployment), class: klass)