fix modal ux counter position

This commit is contained in:
Mathieu Jaumotte 2021-05-05 18:45:51 +02:00
parent 30f490959b
commit 3b53c4451c
2 changed files with 7 additions and 4 deletions

View File

@ -115,7 +115,9 @@ div.modal-body.up {
}
div.results {
div.count {
margin: -0.5em 0 0.7em;;
margin: -0.5em 0 0.7em;
display: flex;
justify-content: space-between;
}
div.list-item {
line-height: 26pt;

View File

@ -31,10 +31,11 @@
<span class="discret">Selection: {{ selected }}</span>
<div class="results">
<div class="count">
<span v-if="suggestedCounter > 0" style="">
<a href="#">{{ $t('action.check_all')}}</a>
<span>
<a v-if="suggestedCounter > 0" href="#">
{{ $t('action.check_all')}}</a>
</span>
<span v-if="selectedCounter > 0" style="float:right;">
<span v-if="selectedCounter > 0">
{{ $tc('add_persons.selected_counter', selectedCounter) }}
</span>
</div>