Commit 9972f0583380721f705e1607ffd2ef6fdc413810

Authored by Eric Fernandez
Exists in master

Merge branch 'master' into 'master'

agrego foca-botonera-facturador

See merge request !23
... ... @@ -35,6 +35,7 @@
35 35 <script src="./node_modules/foca-abm-sectores/dist/foca-abm-sectores.min.js"></script>
36 36 <script src="./node_modules/foca-admin-seguimiento/dist/foca-admin-seguimiento.min.js"></script>
37 37 <script src="./node_modules/foca-botonera-principal/dist/foca-botonera-principal.min.js"></script>
  38 + <script src="./node_modules/foca-botonera-facturador/dist/foca-botonera-facturador.min.js"></script>
38 39 <script src="./node_modules/foca-busqueda-cliente/dist/foca-busqueda-cliente.min.js"></script>
39 40 <script src="./node_modules/foca-configuracion/dist/foca-configuracion.min.js"></script>
40 41 <script src="./node_modules/foca-crear-cobranza/dist/foca-crear-cobranza.min.js"></script>
... ... @@ -35,6 +35,7 @@
35 35 "foca-abm-vehiculo": "git+ssh://git@debonline.dyndns.org:npm/foca-abm-vehiculo.git",
36 36 "foca-admin-seguimiento": "git+ssh://git@debonline.dyndns.org:npm/foca-admin-seguimiento.git",
37 37 "foca-botonera-principal": "git+ssh://git@debonline.dyndns.org:npm/foca-botonera-principal.git",
  38 + "foca-botonera-facturador": "git+ssh://git@debonline.dyndns.org:npm/foca-botonera-facturador.git",
38 39 "foca-busqueda-cliente": "git+ssh://git@debonline.dyndns.org:npm/foca-busqueda-cliente.git",
39 40 "foca-configuracion": "git+ssh://git@debonline.dyndns.org:npm/foca-configuracion.git",
40 41 "foca-crear-cobranza": "git+ssh://git@debonline.dyndns.org:npm/foca-crear-cobranza.git",
... ... @@ -18,6 +18,7 @@ angular.module(&#39;appWrapperDemo&#39;, [
18 18 'focaAbmChofer',
19 19 'focaAdminSeguimiento',
20 20 'focaBotoneraPrincipal',
  21 + 'focaBotoneraFacturador',
21 22 'focaBusquedaCliente',
22 23 'focaBusquedaProductos',
23 24 'focaConfiguracion',
src/sass/_botonera-secundaria.scss
... ... @@ -15,6 +15,9 @@
15 15 background-color: #d8b07d;
16 16 border-color: #e09125 !important;
17 17 }
  18 + &:focus{
  19 + box-shadow: 0 0 0 0.2rem rgb(216, 176, 125);
  20 + }
18 21 img{
19 22 width: 50%;
20 23 margin: auto
... ... @@ -25,4 +28,9 @@
25 28 margin-right: -.25rem;
26 29 }
27 30 }
  31 + @media(max-width: 992px){
  32 + .btn{
  33 + font-weight: 700;
  34 + }
  35 + }
28 36 }
src/sass/_foca-crear.scss
... ... @@ -11,6 +11,19 @@
11 11 margin: auto;
12 12 margin-right: 0;
13 13 }
  14 +
  15 + @media(max-width: 992px){
  16 + border-top: none !important;
  17 + border-right: none !important;
  18 + border-left: none !important;
  19 + border-bottom: 2px solid #FFF !important;
  20 + &:last-child{
  21 + border-left: 2px solid #FFF !important;
  22 + }
  23 + &:first-child{
  24 + border-top: 2px solid #FFF !important;
  25 + }
  26 + }
14 27 }
15 28  
16 29 @media(min-width: 992px){
src/sass/_tabla-articulos.scss
... ... @@ -17,4 +17,16 @@
17 17 thead > tr > th {
18 18 line-height: 30px
19 19 }
  20 +
  21 + @media(max-width: 992px){
  22 + tr{
  23 + display: block;
  24 + span{
  25 + line-height: 35px;
  26 + }
  27 + }
  28 + tfoot tr{
  29 + display: flex;
  30 + }
  31 + }
20 32 }