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

This commit is contained in:
Clement Ho 2018-04-09 11:57:53 -05:00
parent 917b7e0dd9
commit 3ae87eef06
3 changed files with 4 additions and 4 deletions

View File

@ -261,7 +261,7 @@ Please check your network connection and try again.`;
<div class="discussion-reply-holder">
<template v-if="!isReplying && canReply">
<div
class="btn-group-justified discussion-with-resolve-btn"
class="btn-group d-flex discussion-with-resolve-btn"
role="group">
<div
class="btn-group"

View File

@ -22,7 +22,7 @@
- if discussion.potentially_resolvable?
- 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" }
= link_to_reply_discussion(discussion, line_type)

View File

@ -27,7 +27,7 @@
%span= time_ago_in_words @build.artifacts_expire_at
- 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)
= link_to keep_project_job_artifacts_path(@project, @build), class: 'btn btn-sm btn-secondary', method: :post do
Keep
@ -51,7 +51,7 @@
- if @build.trigger_variables.any?
%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
- @build.trigger_variables.each do |trigger_variable|