Small CSS adjustment to terms multiple insertion.

This commit is contained in:
mateuswetah 2023-05-29 16:00:11 -03:00
parent 376958851c
commit 9856278db4
1 changed files with 4 additions and 3 deletions

View File

@ -49,7 +49,7 @@
<div class="separator-term-names"> <div class="separator-term-names">
<label class="label is-inline">{{ $i18n.get('label_separator') }}:</label> <label class="label is-inline">{{ $i18n.get('label_separator') }}:</label>
<b-checkbox <b-checkbox
v-for="separator of ['Enter', 'Tab', ',', ';', '|']" v-for="separator of ['Enter', ',', ';', '|']"
:key="separator" :key="separator"
name="term-multiple-insertion-separator" name="term-multiple-insertion-separator"
v-model="termNamesSeparator" v-model="termNamesSeparator"
@ -147,7 +147,7 @@
return { return {
hasParent: false, hasParent: false,
termNames: [], termNames: [],
termNamesSeparator: [",", "Tab", "Enter"], termNamesSeparator: [",", "Enter"],
parentTerms: [], parentTerms: [],
isFetchingParentTerms: false, isFetchingParentTerms: false,
parentTermSearchQuery: '', parentTermSearchQuery: '',
@ -262,6 +262,7 @@
border: 1px solid var(--tainacan-gray1, #f2f2f2); border: 1px solid var(--tainacan-gray1, #f2f2f2);
border-bottom-right-radius: 2px; border-bottom-right-radius: 2px;
border-bottom-left-radius: 2px; border-bottom-left-radius: 2px;
font-size: 1.25em;
} }
.separator-term-names .b-checkbox { .separator-term-names .b-checkbox {
width: auto; width: auto;
@ -275,7 +276,7 @@
margin-bottom: 0; margin-bottom: 0;
} }
.separator-term-names > label.is-inline { .separator-term-names > label.is-inline {
margin-top: 6px; margin-top: 2px;
} }
.tainacan-multiple-term-insertion--taginput /deep/ .tag, .tainacan-multiple-term-insertion--taginput /deep/ .tag,