Commit d49104d1ea576adfbb5a56ab13804d2cc0a68f0d
1 parent
b39a50e380
Exists in
master
agrego nuevo modulo
Showing
5 changed files
with
30 additions
and
3 deletions
Show diff stats
index.html
... | ... | @@ -74,6 +74,7 @@ |
74 | 74 | <script src="./node_modules/foca-modal-grafico-cisternas/dist/foca-modal-grafico-cisternas.min.js"></script> |
75 | 75 | <script src="./node_modules/foca-modal-lista-precio/dist/foca-modal-lista-precio.min.js"></script> |
76 | 76 | <script src="./node_modules/foca-modal-localidad/dist/foca-modal-localidad.min.js"></script> |
77 | + <script src="./node_modules/foca-modal-localizar/dist/foca-modal-localizar.min.js"></script> | |
77 | 78 | <script src="./node_modules/foca-modal-login/dist/foca-modal-login.min.js"></script> |
78 | 79 | <script src="./node_modules/foca-modal-moneda/dist/foca-modal-moneda.min.js"></script> |
79 | 80 | <script src="./node_modules/foca-modal-nota-pedido/dist/foca-modal-nota-pedido.min.js"></script> |
package.json
... | ... | @@ -73,6 +73,7 @@ |
73 | 73 | "foca-modal-grafico-cisternas": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-grafico-cisternas.git", |
74 | 74 | "foca-modal-lista-precio": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-lista-precio.git", |
75 | 75 | "foca-modal-localidad": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-localidad.git", |
76 | + "foca-modal-localizar": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-localizar.git", | |
76 | 77 | "foca-modal-login": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-login.git", |
77 | 78 | "foca-modal-moneda": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-moneda.git", |
78 | 79 | "foca-modal-nota-pedido": "git+ssh://git@debonline.dyndns.org:npm/foca-modal-nota-pedido.git", |
src/js/app.js
src/sass/_botonera-lateral.scss
... | ... | @@ -28,6 +28,9 @@ |
28 | 28 | background-color: #17d236 !important; |
29 | 29 | color: #FFF !important; |
30 | 30 | } |
31 | + div[ladda]{ | |
32 | + background-color: #DDD; | |
33 | + } | |
31 | 34 | |
32 | 35 | button, .btn-group-toggle{ |
33 | 36 | background-color: #DDD; |
... | ... | @@ -63,4 +66,25 @@ |
63 | 66 | display: none; |
64 | 67 | } |
65 | 68 | } |
69 | + | |
70 | + .guardado{ | |
71 | + animation:guardado 4s 1; | |
72 | + -webkit-animation:guardado 4s 1; /* Safari and Chrome */ | |
73 | + } | |
74 | + | |
75 | + @keyframes guardado | |
76 | + { | |
77 | + 0% {background:#DDD; color: #000;} | |
78 | + 25% {background:#28a745; color: #FFF;} | |
79 | + 75% {background:#28a745; color: #FFF;} | |
80 | + 100% {background:#DDD; color: #000;} | |
81 | + } | |
82 | + | |
83 | + @-webkit-keyframes guardado /* Safari and Chrome */ | |
84 | + { | |
85 | + 0% {background:#DDD; color: #000;} | |
86 | + 25% {background:#28a745; color: #FFF;} | |
87 | + 75% {background:#28a745; color: #FFF;} | |
88 | + 100% {background:#DDD; color: #000;} | |
89 | + } | |
66 | 90 | } |