Commit d5627842 authored by Jose Vargas's avatar Jose Vargas

Remove append-bottom-5 CSS class

This replaces the append-bottom-5 CSS class
and replaces it for the gl-mb-2 utility
class from GitLab-UI
parent 48b6f793
...@@ -32,7 +32,7 @@ export default { ...@@ -32,7 +32,7 @@ export default {
block: !isLastBlock, block: !isLastBlock,
}" }"
> >
<p class="append-bottom-5"> <p class="gl-mb-2">
<span class="font-weight-bold">{{ __('Commit') }}</span> <span class="font-weight-bold">{{ __('Commit') }}</span>
<gl-link :href="commit.commit_path" class="js-commit-sha commit-sha link-commit"> <gl-link :href="commit.commit_path" class="js-commit-sha commit-sha link-commit">
......
...@@ -46,7 +46,7 @@ export default { ...@@ -46,7 +46,7 @@ export default {
<p <p
v-if="trigger.short_token" v-if="trigger.short_token"
class="js-short-token" class="js-short-token"
:class="{ 'append-bottom-5': hasVariables, 'gl-mb-0': !hasVariables }" :class="{ 'gl-mb-2': hasVariables, 'gl-mb-0': !hasVariables }"
> >
<span class="font-weight-bold">{{ __('Trigger token:') }}</span> {{ trigger.short_token }} <span class="font-weight-bold">{{ __('Trigger token:') }}</span> {{ trigger.short_token }}
</p> </p>
......
...@@ -36,7 +36,7 @@ export default { ...@@ -36,7 +36,7 @@ export default {
}; };
</script> </script>
<template> <template>
<div class="report-block-list-issue-description prepend-top-5 append-bottom-5"> <div class="report-block-list-issue-description prepend-top-5 gl-mb-2">
<div ref="accessibility-issue-description" class="report-block-list-issue-description-text"> <div ref="accessibility-issue-description" class="report-block-list-issue-description-text">
<div <div
v-if="isNew" v-if="isNew"
......
...@@ -25,7 +25,7 @@ export default { ...@@ -25,7 +25,7 @@ export default {
}; };
</script> </script>
<template> <template>
<div class="report-block-list-issue-description prepend-top-5 append-bottom-5"> <div class="report-block-list-issue-description prepend-top-5 gl-mb-2">
<div class="report-block-list-issue-description-text" data-testid="test-issue-body-description"> <div class="report-block-list-issue-description-text" data-testid="test-issue-body-description">
<button <button
type="button" type="button"
......
...@@ -411,7 +411,6 @@ img.emoji { ...@@ -411,7 +411,6 @@ img.emoji {
.append-right-15 { margin-right: 15px; } .append-right-15 { margin-right: 15px; }
.append-right-default { margin-right: $gl-padding; } .append-right-default { margin-right: $gl-padding; }
.append-right-20 { margin-right: 20px; } .append-right-20 { margin-right: 20px; }
.append-bottom-5 { margin-bottom: 5px; }
.append-bottom-10 { margin-bottom: 10px; } .append-bottom-10 { margin-bottom: 10px; }
.append-bottom-15 { margin-bottom: 15px; } .append-bottom-15 { margin-bottom: 15px; }
.append-bottom-20 { margin-bottom: 20px; } .append-bottom-20 { margin-bottom: 20px; }
......
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
= group_icon(@group, class: 'avatar avatar-tile s64', width: 64, height: 64) = group_icon(@group, class: 'avatar avatar-tile s64', width: 64, height: 64)
.d-flex.flex-column.flex-wrap.align-items-baseline .d-flex.flex-column.flex-wrap.align-items-baseline
.d-inline-flex.align-items-baseline .d-inline-flex.align-items-baseline
%h1.home-panel-title.gl-mt-3.append-bottom-5 %h1.home-panel-title.gl-mt-3.gl-mb-2
= @group.name = @group.name
%span.visibility-icon.text-secondary.gl-ml-2.has-tooltip{ data: { container: 'body' }, title: visibility_icon_description(@group) } %span.visibility-icon.text-secondary.gl-ml-2.has-tooltip{ data: { container: 'body' }, title: visibility_icon_description(@group) }
= visibility_level_icon(@group.visibility_level, fw: false, options: {class: 'icon'}) = visibility_level_icon(@group.visibility_level, fw: false, options: {class: 'icon'})
......
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
= project_icon(@project, alt: @project.name, class: 'avatar avatar-tile s64', width: 64, height: 64) = project_icon(@project, alt: @project.name, class: 'avatar avatar-tile s64', width: 64, height: 64)
.d-flex.flex-column.flex-wrap.align-items-baseline .d-flex.flex-column.flex-wrap.align-items-baseline
.d-inline-flex.align-items-baseline .d-inline-flex.align-items-baseline
%h1.home-panel-title.gl-mt-3.append-bottom-5{ data: { qa_selector: 'project_name_content' } } %h1.home-panel-title.gl-mt-3.gl-mb-2{ data: { qa_selector: 'project_name_content' } }
= @project.name = @project.name
%span.visibility-icon.text-secondary.gl-ml-2.has-tooltip{ data: { container: 'body' }, title: visibility_icon_description(@project) } %span.visibility-icon.text-secondary.gl-ml-2.has-tooltip{ data: { container: 'body' }, title: visibility_icon_description(@project) }
= visibility_level_icon(@project.visibility_level, fw: false, options: {class: 'icon'}) = visibility_level_icon(@project.visibility_level, fw: false, options: {class: 'icon'})
......
- if milestone.expired? and not milestone.closed? - if milestone.expired? and not milestone.closed?
.status-box.status-box-expired.append-bottom-5= _('Expired') .status-box.status-box-expired.gl-mb-2= _('Expired')
- if milestone.upcoming? - if milestone.upcoming?
.status-box.status-box-mr-merged.append-bottom-5= _('Upcoming') .status-box.status-box-mr-merged.gl-mb-2= _('Upcoming')
- if milestone.closed? - if milestone.closed?
.status-box.status-box-closed.append-bottom-5= _('Closed') .status-box.status-box-closed.gl-mb-2= _('Closed')
...@@ -5,17 +5,17 @@ ...@@ -5,17 +5,17 @@
%li{ class: "milestone milestone-#{milestone.closed? ? 'closed' : 'open'}", id: custom_dom_id } %li{ class: "milestone milestone-#{milestone.closed? ? 'closed' : 'open'}", id: custom_dom_id }
.row .row
.col-sm-6 .col-sm-6
.append-bottom-5 .gl-mb-2
%strong= link_to truncate(milestone.title, length: 100), milestone_path(milestone) %strong= link_to truncate(milestone.title, length: 100), milestone_path(milestone)
- if @group - if @group
= " - #{milestone_type}" = " - #{milestone_type}"
- if milestone.due_date || milestone.start_date - if milestone.due_date || milestone.start_date
.text-tertiary.append-bottom-5 .text-tertiary.gl-mb-2
= milestone_date_range(milestone) = milestone_date_range(milestone)
- recent_releases, total_count, more_count = recent_releases_with_counts(milestone) - recent_releases, total_count, more_count = recent_releases_with_counts(milestone)
- unless total_count.zero? - unless total_count.zero?
.text-tertiary.append-bottom-5.milestone-release-links .text-tertiary.gl-mb-2.milestone-release-links
= sprite_icon("rocket", size: 12) = sprite_icon("rocket", size: 12)
= n_('Release', 'Releases', total_count) = n_('Release', 'Releases', total_count)
- recent_releases.each do |release| - recent_releases.each do |release|
......
...@@ -30,7 +30,7 @@ export default { ...@@ -30,7 +30,7 @@ export default {
}; };
</script> </script>
<template> <template>
<div class="report-block-list-issue-description prepend-top-5 append-bottom-5"> <div class="report-block-list-issue-description prepend-top-5 gl-mb-2">
<div class="report-block-list-issue-description-text"> <div class="report-block-list-issue-description-text">
<template v-if="isStatusSuccess">{{ s__('ciReport|Fixed:') }}</template> <template v-if="isStatusSuccess">{{ s__('ciReport|Fixed:') }}</template>
......
...@@ -43,7 +43,7 @@ export default { ...@@ -43,7 +43,7 @@ export default {
}; };
</script> </script>
<template> <template>
<div class="report-block-list-issue-description prepend-top-5 append-bottom-5"> <div class="report-block-list-issue-description prepend-top-5 gl-mb-2">
<div class="report-block-list-issue-description-text"> <div class="report-block-list-issue-description-text">
<template v-if="issueScore"> <template v-if="issueScore">
{{ issue.name }}: <strong>{{ issueScore }}</strong> {{ issue.name }}: <strong>{{ issueScore }}</strong>
......
...@@ -34,7 +34,7 @@ export default { ...@@ -34,7 +34,7 @@ export default {
}; };
</script> </script>
<template> <template>
<div class="report-block-list-issue-description prepend-top-5 append-bottom-5"> <div class="report-block-list-issue-description prepend-top-5 gl-mb-2">
<div class="report-block-list-issue-description-text"> <div class="report-block-list-issue-description-text">
<severity-badge v-if="issue.severity" class="d-inline-block" :severity="issue.severity" /> <severity-badge v-if="issue.severity" class="d-inline-block" :severity="issue.severity" />
<modal-open-name :issue="issue" :status="status" /> <modal-open-name :issue="issue" :status="status" />
......
...@@ -231,7 +231,7 @@ export default { ...@@ -231,7 +231,7 @@ export default {
<div class="report-block-list-icon append-right-5 failed"> <div class="report-block-list-icon append-right-5 failed">
<icon :size="32" name="status_failed_borderless" /> <icon :size="32" name="status_failed_borderless" />
</div> </div>
<div class="report-block-list-issue-description prepend-top-5 append-bottom-5"> <div class="report-block-list-issue-description prepend-top-5 gl-mb-2">
<div class="report-block-list-issue-description-text"> <div class="report-block-list-issue-description-text">
{{ instance.method }} {{ instance.method }}
</div> </div>
......
...@@ -29,7 +29,7 @@ ...@@ -29,7 +29,7 @@
.form-group .form-group
= f.label :mirror_user_id_select, _('Mirror user'), class: 'label-light' = f.label :mirror_user_id_select, _('Mirror user'), class: 'label-light'
= select_tag(:mirror_user_id_select, options_for_mirror_user, class: 'js-mirror-user select2 lg append-bottom-5', required: true, disabled: true) = select_tag(:mirror_user_id_select, options_for_mirror_user, class: 'js-mirror-user select2 lg gl-mb-2', required: true, disabled: true)
.help-block .help-block
= _('You will be the author of all events in the activity feed that are the result of an update, like new branches being created or new commits being pushed to existing branches.') = _('You will be the author of all events in the activity feed that are the result of an update, like new branches being created or new commits being pushed to existing branches.')
......
...@@ -205,7 +205,7 @@ key2: value2" ...@@ -205,7 +205,7 @@ key2: value2"
</div> </div>
<div <div
class="report-block-list-issue-description prepend-top-5 append-bottom-5" class="report-block-list-issue-description prepend-top-5 gl-mb-2"
> >
<div <div
class="report-block-list-issue-description-text" class="report-block-list-issue-description-text"
......
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