Adds separator on Field Edition Form for field type options.

This commit is contained in:
mateuswetah 2018-03-21 09:24:33 -03:00
parent fc10a7db54
commit 401b5bf2c3
2 changed files with 4 additions and 9 deletions

View File

@ -88,7 +88,7 @@
<a class="help-button"><b-icon size="is-small" icon="help-circle-outline"></b-icon></a>
</b-field>
<div class="separator"></div>
<div v-if="(!Array.isArray(editForm.field_type_options))" class="separator"></div>
<component
:errors="formErrors['field_type_options']"
@ -222,9 +222,10 @@ export default {
margin-top: 1.0em;
.separator {
color: $draggable-border-color;
background-color: $draggable-border-color;
margin: 1.8em 0;
height: 1px;
width: 60%;
width: 75%;
}
}

View File

@ -176,12 +176,6 @@ export default {
border-top: 1px solid $draggable-border-color;
border-bottom: 1px solid $draggable-border-color;
margin-top: 1.0em;
.separator {
color: $draggable-border-color;
height: 1px;
width: 60%;
}
}
</style>