Commit 91c11e99e518d4a68070e2437e3d5ac0c6c265b1
Exists in
master
Merge branch 'master' into 'master'
Master See merge request !78
Showing
5 changed files
Show diff stats
index.html
... | ... | @@ -76,7 +76,7 @@ |
76 | 76 | <script src="./node_modules/foca-modal-factura-detalle/dist/foca-modal-factura-detalle.min.js"></script> |
77 | 77 | <script src="./node_modules/foca-modal-flete/dist/foca-modal-flete.min.js"></script> |
78 | 78 | <script src="./node_modules/foca-modal-grafico-cisternas/dist/foca-modal-grafico-cisternas.min.js"></script> |
79 | - <script src="./node_modules/foca-modal-informe-chofer/dist/foca-modal-informe-chofer.min.js"></script> | |
79 | + <script src="./node_modules/foca-modal-informe/dist/foca-modal-informe.min.js"></script> | |
80 | 80 | <script src="./node_modules/foca-modal-informe-hoja-ruta/dist/foca-modal-informe-hoja-ruta.min.js"></script> |
81 | 81 | <script src="./node_modules/foca-modal-lista-precio/dist/foca-modal-lista-precio.min.js"></script> |
82 | 82 | <script src="./node_modules/foca-modal-localizar/dist/foca-modal-localizar.min.js"></script> |
... | ... | @@ -109,4 +109,5 @@ |
109 | 109 | </foca-teclado> |
110 | 110 | </div> |
111 | 111 | </body> |
112 | + | |
112 | 113 | </html> |
package.json
... | ... | @@ -73,8 +73,7 @@ |
73 | 73 | "foca-modal-factura-detalle": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-factura-detalle.git", |
74 | 74 | "foca-modal-flete": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-flete.git", |
75 | 75 | "foca-modal-grafico-cisternas": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-grafico-cisternas.git", |
76 | - "foca-modal-informe-chofer": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-informe-chofer.git", | |
77 | - "foca-modal-informe-hoja-ruta": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-informe-hoja-ruta.git", | |
76 | + "foca-modal-informe": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-informe.git", | |
78 | 77 | "foca-modal-lista-precio": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-lista-precio.git", |
79 | 78 | "foca-modal-localizar": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-localizar.git", |
80 | 79 | "foca-modal-login": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-login.git", |
src/js/app.js
... | ... | @@ -50,8 +50,7 @@ angular.module('appWrapperDemo', [ |
50 | 50 | 'focaModalFacturaDetalle', |
51 | 51 | 'focaModalFlete', |
52 | 52 | 'focaModalGraficoCisternas', |
53 | - 'focaModalInformeChofer', | |
54 | - 'focaModalInformeHojaRuta', | |
53 | + 'focaModalInforme', | |
55 | 54 | 'focaModalListaPrecio', |
56 | 55 | 'focaModalLocalizar', |
57 | 56 | 'focaModalLogin', |
src/sass/_grid.scss
... | ... | @@ -6,6 +6,27 @@ |
6 | 6 | height: 40px !important; |
7 | 7 | } |
8 | 8 | |
9 | -.ui-grid-viewport{ | |
10 | - overflow-x: hidden !important; | |
9 | + | |
10 | +.yellow { | |
11 | + max-width: unset !important; | |
12 | + >div { | |
13 | + background: yellow !important; | |
14 | + font-weight: bold; | |
15 | + } | |
16 | +} | |
17 | + | |
18 | +.red { | |
19 | + max-width: unset !important; | |
20 | + >div { | |
21 | + color: red; | |
22 | + font-weight: bold; | |
23 | + } | |
24 | +} | |
25 | + | |
26 | +.green { | |
27 | + max-width: unset !important; | |
28 | + >div { | |
29 | + color: green; | |
30 | + font-weight: bold; | |
31 | + } | |
11 | 32 | } |