Commit a0cb257c authored by Tim Zallmann's avatar Tim Zallmann Committed by Clement Ho

Resolve "Epics Page Styling is broken"

parent d230ec46
......@@ -35,7 +35,12 @@ export default {
</script>
<template>
<div class="hide-collapsed value issuable-show-labels js-value">
<div
class="hide-collapsed value issuable-show-labels js-value"
:class="{
'has-labels':!isEmpty,
}"
>
<span
v-if="isEmpty"
class="text-secondary"
......@@ -50,7 +55,7 @@ export default {
>
<span
v-tooltip
class="label color-label"
class="badge color-label"
data-placement="bottom"
data-container="body"
:style="labelStyle(label)"
......
......@@ -23,7 +23,10 @@ export default {
<template>
<div
class="flex"
:class="{ 'issue-info-container': !canReorder }"
:class="{
'issue-info-container': !canReorder,
'card-body': canReorder,
}"
>
<div class="block-truncated append-right-10">
<a
......
......@@ -93,10 +93,13 @@ export default {
},
mounted() {
if (this.canReorder) {
this.sortable = Sortable.create(this.$refs.list, Object.assign({}, sortableConfig, {
onStart: this.addDraggingCursor,
onEnd: this.reordered,
}));
this.sortable = Sortable.create(
this.$refs.list,
Object.assign({}, sortableConfig, {
onStart: this.addDraggingCursor,
onEnd: this.reordered,
}),
);
}
},
methods: {
......@@ -225,7 +228,7 @@ issue-count-badge-add-button btn btn-sm btn-default"
:class="{
'user-can-drag': canReorder,
'sortable-row': canReorder,
card: canReorder
'card-slim': canReorder
}"
:data-key="issue.id"
:data-epic-issue-id="issue.epic_issue_id"
......
......@@ -82,7 +82,7 @@ describe('DropdownValueComponent', () => {
});
it('renders label element with tooltip and styles based on label details', () => {
const labelEl = vm.$el.querySelector('a span.label.color-label');
const labelEl = vm.$el.querySelector('a span.badge.color-label');
expect(labelEl).not.toBeNull();
expect(labelEl.dataset.placement).toBe('bottom');
expect(labelEl.dataset.container).toBe('body');
......
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