Commit 9c1f6ac13a476c09cb674166b1d1a1db1fbbde19
Exists in
master
Merge branch 'master' into 'master'
Master (pmarco) See merge request modulos-npm/foca-busqueda-cliente!8
Showing
1 changed file
Show diff stats
src/views/foca-busqueda-cliente-modal.html
1 | -<div class="modal-header"> | |
2 | - <h3 class="modal-title">Búsqueda de cliente</h3> | |
1 | +<div class="modal-header py-1"> | |
2 | + <h5 class="modal-title">Búsqueda de cliente</h5> | |
3 | 3 | </div> |
4 | 4 | <div class="modal-body"> |
5 | 5 | <form> |
... | ... | @@ -18,7 +18,7 @@ |
18 | 18 | typeahead-loading="cargandoClientes" |
19 | 19 | typeahead-no-results="sinResultados" |
20 | 20 | typeahead-on-select="seleccionar($item)" |
21 | - class="form-control" | |
21 | + class="form-control form-control-sm" | |
22 | 22 | foca-focus="true" |
23 | 23 | ng-keypress="$event.keyCode === 13 && aceptar()" |
24 | 24 | > |
... | ... | @@ -30,7 +30,7 @@ |
30 | 30 | </div> |
31 | 31 | </form> |
32 | 32 | </div> |
33 | -<div class="modal-footer"> | |
34 | - <button class="btn" ng-click="aceptar()">Aceptar</button> | |
35 | - <button class="btn" ng-click="cancelar()">Cancelar</button> | |
33 | +<div class="modal-footer py-1"> | |
34 | + <button class="btn btn-sm" ng-click="aceptar()">Aceptar</button> | |
35 | + <button class="btn btn-sm" ng-click="cancelar()">Cancelar</button> | |
36 | 36 | </div> |