Column span all for title in metadatum form #569
This commit is contained in:
parent
cf57e63aa7
commit
184585285d
|
@ -451,6 +451,10 @@
|
|||
.field > .field:not(:last-child) {
|
||||
margin-bottom: 0em;
|
||||
}
|
||||
.field:first-child {
|
||||
-webkit-column-span: all;
|
||||
column-span: all;
|
||||
}
|
||||
.help-wrapper {
|
||||
font-size: 1.25em;
|
||||
}
|
||||
|
|
|
@ -17,7 +17,8 @@
|
|||
v-model="collection"
|
||||
@change.native="emitValues()"
|
||||
@focus="clear()"
|
||||
:loading="loading">
|
||||
:loading="loading"
|
||||
expanded>
|
||||
<option
|
||||
v-for="option in collections"
|
||||
:value="option.id"
|
||||
|
@ -40,22 +41,19 @@
|
|||
:title="$i18n.getHelperTitle('tainacan-relationship', 'search')"
|
||||
:message="$i18n.getHelperMessage('tainacan-relationship', 'search')"/>
|
||||
</label>
|
||||
<b-select
|
||||
name="metadata_type_relationship[search]"
|
||||
v-model="modelSearch">
|
||||
|
||||
<option
|
||||
v-for="(option, index) in metadata"
|
||||
:key="index"
|
||||
:value="option.id"
|
||||
class="field">
|
||||
{{ option.name }}
|
||||
</option>
|
||||
|
||||
</b-select>
|
||||
|
||||
<b-select
|
||||
name="metadata_type_relationship[search]"
|
||||
v-model="modelSearch"
|
||||
expanded>
|
||||
<option
|
||||
v-for="(option, index) in metadata"
|
||||
:key="index"
|
||||
:value="option.id"
|
||||
class="field">
|
||||
{{ option.name }}
|
||||
</option>
|
||||
</b-select>
|
||||
</b-field>
|
||||
|
||||
</transition>
|
||||
|
||||
<b-field
|
||||
|
|
|
@ -18,7 +18,8 @@
|
|||
v-model="taxonomy_id"
|
||||
@input="emitValues()"
|
||||
@focus="clear"
|
||||
:loading="loading">
|
||||
:loading="loading"
|
||||
expanded>
|
||||
<option value="">{{ $i18n.get('label_selectbox_init') }}...</option>
|
||||
<option
|
||||
v-for="option in taxonomies"
|
||||
|
@ -41,7 +42,8 @@
|
|||
name="metadata_type_options[component_type]"
|
||||
placeholder="Select the input type for the taxonomy metadatum"
|
||||
@input="emitValues()"
|
||||
v-model="input_type">
|
||||
v-model="input_type"
|
||||
expanded>
|
||||
<option
|
||||
v-for="(option, index) in single_types"
|
||||
:value="index"
|
||||
|
@ -55,7 +57,8 @@
|
|||
placeholder="Select the input type for the taxonomy metadatum"
|
||||
v-model="input_type"
|
||||
@input="emitValues()"
|
||||
v-else>
|
||||
v-else
|
||||
expanded>
|
||||
<option
|
||||
v-for="(option, index) in multiple_types"
|
||||
:value="index"
|
||||
|
|
Loading…
Reference in New Issue