feat(ui): revois le champ de recherche d'une asso

master
Jérôme Lebleu 2019-09-13 18:01:04 +02:00
Parent 76a150a3da
révision 775358a93b
4 fichiers modifiés avec 13 ajouts et 8 suppressions

Voir le fichier

@ -56,10 +56,7 @@
}
}
// Visible placeholder for search form
.search-input{
// Make the search input more visible
.input-group .search-input {
border-color: $white;
&::placeholder{
color: $gray-200;
}
}

Voir le fichier

@ -20,6 +20,12 @@
}
}
.title-buttons {
.form-group:last-child {
margin-bottom: 0;
}
}
// Container with content
.content-container {

Voir le fichier

@ -2,7 +2,7 @@
{% load tapeforms %}
{% block titlebuttons %}
<div class="title-buttons ml-3 mt-2">
<div class="title-buttons ml-sm-3 mt-3">
{% form filter.form %}
</div>
{% endblock %}

Voir le fichier

@ -3,8 +3,10 @@
{% block widget %}
<div class="input-group">
{{ field }}
<div class="input-group-append mr-3">
<button class="btn btn-outline-primary fa fa-search" type="button" id="button-addon"></button>
<div class="input-group-append">
<button type="submit" class="btn btn-outline-primary" aria-label="Filtrer">
<i class="fa fa-search" aria-hidden="true"></i>
</button>
</div>
</div>
{% endblock %}