Adds ellipsing to checkboxes on every Tainacan Form.

This commit is contained in:
mateuswetah 2018-08-02 21:42:00 -03:00
parent 5137e7fc12
commit 8879429979
3 changed files with 7 additions and 2 deletions

View File

@ -538,6 +538,7 @@
}
.tainacan-li-checkbox-modal {
display: flex;
&:hover {
background-color: $blue1;
}

View File

@ -61,7 +61,8 @@
.radio, .checkbox {
margin-bottom: 5px;
align-items: center;
width: 100%;
&.is-danger {
border-color: $danger;
}
@ -70,6 +71,9 @@
color: $tainacan-input-color;
padding-left: 0.8em;
font-size: 12px;
text-overflow: ellipsis;
overflow-x: hidden;
white-space: nowrap;
}
.select {

View File

@ -9,7 +9,7 @@
@focus="isTouched = true"
@input="validate_values()"
icon="calendar-today"/>
<p class="is-size-7 has-text-centered">{{ $i18n.get('label_until') }}</p>
<p class="is-size-7 has-text-centered is-marginless">{{ $i18n.get('label_until') }}</p>
<b-datepicker
:placeholder="$i18n.get('label_selectbox_init')"
v-model="date_end"