Commit 3ae87eef authored by Clement Ho's avatar Clement Ho

Replace .btn-group-justified with .btn-group.d-flex

parent 917b7e0d
...@@ -261,7 +261,7 @@ Please check your network connection and try again.`; ...@@ -261,7 +261,7 @@ Please check your network connection and try again.`;
<div class="discussion-reply-holder"> <div class="discussion-reply-holder">
<template v-if="!isReplying && canReply"> <template v-if="!isReplying && canReply">
<div <div
class="btn-group-justified discussion-with-resolve-btn" class="btn-group d-flex discussion-with-resolve-btn"
role="group"> role="group">
<div <div
class="btn-group" class="btn-group"
......
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
- if discussion.potentially_resolvable? - if discussion.potentially_resolvable?
- line_type = local_assigns.fetch(:line_type, nil) - line_type = local_assigns.fetch(:line_type, nil)
.btn-group-justified.discussion-with-resolve-btn{ role: "group" } .btn-group.d-flex.discussion-with-resolve-btn{ role: "group" }
.btn-group{ role: "group" } .btn-group{ role: "group" }
= link_to_reply_discussion(discussion, line_type) = link_to_reply_discussion(discussion, line_type)
......
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
%span= time_ago_in_words @build.artifacts_expire_at %span= time_ago_in_words @build.artifacts_expire_at
- if @build.artifacts? - if @build.artifacts?
.btn-group.btn-group-justified{ role: :group } .btn-group.btn-group.d-flex{ role: :group }
- if @build.has_expiring_artifacts? && can?(current_user, :update_build, @build) - if @build.has_expiring_artifacts? && can?(current_user, :update_build, @build)
= link_to keep_project_job_artifacts_path(@project, @build), class: 'btn btn-sm btn-secondary', method: :post do = link_to keep_project_job_artifacts_path(@project, @build), class: 'btn btn-sm btn-secondary', method: :post do
Keep Keep
...@@ -51,7 +51,7 @@ ...@@ -51,7 +51,7 @@
- if @build.trigger_variables.any? - if @build.trigger_variables.any?
%p %p
%button.btn.group.btn-group-justified.js-reveal-variables Reveal Variables %button.btn.group.btn-group.d-flex.js-reveal-variables Reveal Variables
%dl.js-build-variables.trigger-build-variables.hide %dl.js-build-variables.trigger-build-variables.hide
- @build.trigger_variables.each do |trigger_variable| - @build.trigger_variables.each do |trigger_variable|
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment