fix(frontend): fix buttons alignments in rtl direction
This commit is contained in:
parent
adc8070ff9
commit
1cf10b563a
|
|
@ -4,7 +4,7 @@
|
|||
v-if="editEnabled && Object.keys(relatedTasks).length > 0"
|
||||
id="showRelatedTasksFormButton"
|
||||
v-tooltip="$t('task.relation.add')"
|
||||
class="is-pulled-right add-task-relation-button d-print-none"
|
||||
class="is-pulled-end add-task-relation-button d-print-none"
|
||||
:class="{'is-active': showNewRelationForm}"
|
||||
variant="secondary"
|
||||
icon="plus"
|
||||
|
|
|
|||
|
|
@ -4,6 +4,10 @@
|
|||
}
|
||||
}
|
||||
|
||||
.is-pulled-right {
|
||||
.is-pulled-end {
|
||||
float: right !important;
|
||||
}
|
||||
|
||||
[dir="rtl"] .is-pulled-end {
|
||||
float: left !important;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
>
|
||||
<XButton
|
||||
:to="{name:'labels.create'}"
|
||||
class="is-pulled-right"
|
||||
class="is-pulled-end"
|
||||
icon="plus"
|
||||
>
|
||||
{{ $t('label.create.header') }}
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
>
|
||||
<XButton
|
||||
:to="{name:'teams.create'}"
|
||||
class="is-pulled-right"
|
||||
class="is-pulled-end"
|
||||
icon="plus"
|
||||
>
|
||||
{{ $t('team.create.title') }}
|
||||
|
|
|
|||
Loading…
Reference in New Issue