Commit 69d6cd5d3f58b0c2a6340fe0f71fb2c3d4ad1887

Authored by Eric Fernandez
Exists in master

Merge branch 'master' of http://git.focasoftware.com/npm/wrapper-demo

... ... @@ -88,15 +88,7 @@
88 88 <foca-nombre-empresa></foca-nombre-empresa>
89 89 <div ng-view class="container contenedor"></div>
90 90 <div ng-controller="appWrapperDemoController" class="teclado-container container d-none d-md-block ">
91   - <div class="container">
92   - <div class="row">
93   - <div class="col-auto my-2 col-lg-2 offset-lg-10 d-none d-md-flex" style="min-height: 176px">
94   - <div class="px-2 mt-auto">
95   - <foca-botonera-lateral></foca-botonera-lateral>
96   - </div>
97   - </div>
98   - </div>
99   - </div>
  91 + <foca-botonera-lateral></foca-botonera-lateral>
100 92 <foca-teclado
101 93 ng-show="usarTeclado && mostrarTeclado"
102 94 alfanumeric="true"
src/sass/_acciones-mobile.scss
... ... @@ -2,4 +2,4 @@
2 2 line-height: 2.5em;
3 3 color: orange;
4 4 font-size: 1.25em
5   -}
6 5 \ No newline at end of file
  6 +}
src/sass/_admin-seguimiento.scss
1 1 .foca-admin-seguimiento {
2 2 osm {
3 3 &>div {
4   - height: 600px;
  4 + height: 535px;
5 5 }
6 6 }
7 7 }
src/sass/_bootstrap.scss
1   -.active{
2   - color: #fff;
  1 +button.active{
3 2 text-decoration: none;
4 3 outline: 0;
5   - background-color: #337ab7;
  4 + background-color: $primary-color;
  5 + &:focus{
  6 + box-shadow: 0 0 0 0.2rem #d8b07d;
  7 + }
6 8 }
7 9 .btn-xs {
8 10 padding: .15rem .5rem;
src/sass/_botonera-lateral.scss
1 1 .botonera-lateral {
  2 + pointer-events: none;
  3 + position: absolute;
  4 + left: 0;
  5 + right: 0;
  6 + top: 402px;
  7 + &.teclado{
  8 + top: 449px;
  9 + z-index: 100000;
  10 + }
  11 + .row{
  12 + margin: 0 !important;
  13 + pointer-events: none;
  14 + }
2 15  
3   - @media (min-width: 768px){
4   - display: grid !important;
  16 + .container{
  17 + @media (min-width: 768px){
  18 + display: grid !important;
  19 + }
5 20 }
6 21  
7 22 button{
... ... @@ -49,16 +64,3 @@
49 64 }
50 65 }
51 66 }
52   -.teclado-container > div{
53   - pointer-events: none;
54   - position: absolute;
55   - z-index: 100000;
56   - left: 0;
57   - right: 0;
58   - top: 449px;
59   - .row{
60   - margin: 0 !important;
61   - pointer-events: none;
62   - }
63   -
64   -}
src/sass/_botonera-principal.scss
... ... @@ -7,6 +7,9 @@
7 7 @media (max-width: 576px) {
8 8 width: 100%;
9 9 }
  10 + @media (min-width: 992px) and (max-width: 1200px){
  11 + width: 150px;
  12 + }
10 13 }
11 14 button {
12 15 background-image: url('../img/botonera.png');
... ... @@ -26,6 +29,7 @@
26 29 }
27 30 }
28 31 &-menu {
  32 + width: 100%;
29 33 padding-left: 90px;
30 34 @media (max-width: 576px) {
31 35 padding: 0;
... ... @@ -187,4 +191,10 @@
187 191 .swiper-button-prev {
188 192 background-image: url('../img/izquierda.png');
189 193 }
  194 +
  195 + @media (min-width: 992px){
  196 + a{
  197 + margin-top: 2.5rem;
  198 + }
  199 + }
190 200 }
src/sass/_contenedor.scss
1 1 body {
2   - @media (min-width: 768px) {
3   - background-color: #cccccc;
4   - }
  2 + background-color: #cccccc;
5 3 }
6 4  
7 5 .contenedor {
src/sass/_swiper.scss
1 1 .swiper {
2 2 &-container {
3 3 height: 300px;
  4 +
4 5 }
5 6 &-slide {
6 7 background: transparent;
... ... @@ -9,4 +10,14 @@
9 10 -webkit-align-items: unset;
10 11 align-items: unset;
11 12 }
  13 +
  14 + @media(max-width: 992px){
  15 + &-container{
  16 + height: 430px;
  17 + }
  18 + &-pagination{
  19 + background: #CCC;
  20 + padding: 0.5rem;
  21 + }
  22 + }
12 23 }
src/sass/_tabla.scss
... ... @@ -6,9 +6,23 @@
6 6 color: #000000;
7 7 background-color: #FF9900;
8 8 }
  9 + &-title{
  10 + background-color: #67615e;
  11 + color: #FFF;
  12 + margin-bottom: 0;
  13 + padding: 0.25rem 0;
  14 + font-size: 1rem;
  15 + }
9 16  
10 17 thead th{
11 18 font-size: 13px;
12 19 }
  20 +
  21 + &.table-abm{
  22 + thead{
  23 + color: #FFF;
  24 + background-color: #67615e;
  25 + }
  26 + }
13 27  
14 28 }
src/sass/general.scss
... ... @@ -31,3 +31,14 @@ input::-webkit-inner-spin-button {
31 31 display: grid !important;
32 32 }
33 33 }
  34 +
  35 +.btn-outline-debo{
  36 + background-color: transparent;
  37 + color: $primary-color;
  38 + border-color: $primary-color;
  39 + &:hover{
  40 + color: #FFF;
  41 + border-color: transparent;
  42 + background-color: $primary-color;
  43 + }
  44 +}