Commit 30c7c061077d4052af8cefcbe88cce1e120242e9
1 parent
93daa859
Exists in
master
and in
2 other branches
Fix'd search field in the manage users template
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
... | ... | @@ -26,10 +26,10 @@ |
26 | 26 | <div class="col-md-9"> |
27 | 27 | <form action="{% url 'users:search' %}" method="GET" class="form-horizontal"> |
28 | 28 | <div class="form-group"> |
29 | - <div class="col-md-11 col-sm-11 col-xs-11"> | |
29 | + <div class="col-md-11 col-sm-10 col-xs-10"> | |
30 | 30 | <input type="text" class="form-control" name="search" placeholder="{% trans 'Search...' %}" /> |
31 | 31 | </div> |
32 | - <div class="col-md-1 col-sm-1 col-xs-1"> | |
32 | + <div class="col-md-1 col-sm-2 col-xs-2"> | |
33 | 33 | <button type="submit" class="btn btn-fab btn-fab-mini"> |
34 | 34 | <i class="fa fa-search"></i> |
35 | 35 | </button> | ... | ... |