Commit bbba5871c35a02618b0918519ae68e06b512b211

Authored by Pablo Marco del Pont
1 parent 14bad0d6e7
Exists in master

- Cambios de estilo para mobile.

- Agregué tareas al gulp.
Showing 2 changed files with 13 additions and 9 deletions   Show diff stats
... ... @@ -75,3 +75,7 @@ gulp.task('clean-post-install', function(){
75 75 });
76 76  
77 77 gulp.task('default', ['webserver']);
  78 +
  79 +gulp.task('watch', function() {
  80 + gulp.watch([paths.srcJS, paths.srcViews], ['uglify'])
  81 +});
src/views/modal-domicilio.html
1   -<div class="modal-header">
2   - <h3 class="modal-title">Busqueda de Domicilios</h3>
  1 +<div class="modal-header py-1">
  2 + <h5 class="modal-title">Busqueda de Domicilios</h5>
3 3 </div>
4 4 <div class="modal-body" id="modal-body">
5   - <div class="input-group mb-3" ng-show="!ingreso">
  5 + <div class="input-group" ng-show="!ingreso">
6 6 <input
7 7 type="text"
8   - class="form-control"
  8 + class="form-control form-control-sm"
9 9 placeholder="Busqueda"
10 10 ng-model="filters"
11 11 ng-change="search()"
... ... @@ -67,7 +67,7 @@
67 67 <td>
68 68 <button
69 69 type="button"
70   - class="btn p-2 float-right"
  70 + class="btn btn-sm p-1 float-right"
71 71 ng-class="{
72 72 'btn-secondary': selectedDomicilio != key + 1,
73 73 'btn-primary': selectedDomicilio == key + 1
... ... @@ -82,7 +82,7 @@
82 82 </tbody>
83 83 </table>
84 84 <nav ng-show="currentPageDomicilios.length > 0 && !ingreso">
85   - <ul class="pagination justify-content-end">
  85 + <ul class="pagination pagination-sm mb-0 justify-content-end">
86 86 <li class="page-item" ng-class="{'disabled': currentPage == 1}">
87 87 <a class="page-link" href="#" ng-click="selectPage(currentPage - 1)">
88 88 <span aria-hidden="true">&laquo;</span>
... ... @@ -181,21 +181,21 @@
181 181 <div class="modal-footer">
182 182 <button
183 183 ng-show="!ingreso"
184   - class="btn btn-secondary"
  184 + class="btn btn-sm btn-secondary"
185 185 type="button"
186 186 ng-click="cancel()"
187 187 >Seleccionar otro cliente
188 188 </button>
189 189 <button
190 190 ng-show="ingreso"
191   - class="btn btn-secondary"
  191 + class="btn btn-secondary btn-sm"
192 192 type="button"
193 193 ng-click="ingreso = !ingreso; domicilio = {}; contactos = [{}]"
194 194 >Cancelar
195 195 </button>
196 196 <button
197 197 ng-show="ingreso"
198   - class="btn btn-primary"
  198 + class="btn btn-sm btn-primary"
199 199 type="button"
200 200 ng-click="agregarDomicilio()"
201 201 ng-disabled="!formDomicilio.$valid"