Commit e015c79b9c30fb2bae6a6192f9ecf630618a0cd7
1 parent
7f8f758189
Exists in
master
detalles
Showing
2 changed files
with
1 additions
and
3 deletions
Show diff stats
src/sass/_botonera-lateral.scss
| 1 | .botonera-lateral { | 1 | .botonera-lateral { |
| 2 | 2 | ||
| 3 | @media (min-width: 768px){ | 3 | @media (min-width: 768px){ |
| 4 | display: grid !important; | 4 | display: grid !important; |
| 5 | } | 5 | } |
| 6 | 6 | ||
| 7 | button{ | 7 | button{ |
| 8 | pointer-events: all; | 8 | pointer-events: all; |
| 9 | background-color: #DDD; | 9 | background-color: #DDD; |
| 10 | } | 10 | } |
| 11 | 11 | ||
| 12 | .teclado-activar { | 12 | .teclado-activar { |
| 13 | background-color: #17d236 !important; | 13 | background-color: #17d236 !important; |
| 14 | color: #FFF !important; | 14 | color: #FFF !important; |
| 15 | } | 15 | } |
| 16 | 16 | ||
| 17 | button, .btn-group-toggle{ | 17 | button, .btn-group-toggle{ |
| 18 | background-color: #DDD; | 18 | background-color: #DDD; |
| 19 | color: #000; | 19 | color: #000; |
| 20 | text-transform: uppercase; | 20 | text-transform: uppercase; |
| 21 | min-width: 109px; | 21 | min-width: 109px; |
| 22 | &:hover{ | 22 | &:hover{ |
| 23 | color: #FFF; | 23 | color: #FFF; |
| 24 | .boton-activar-teclado{ | 24 | .boton-activar-teclado{ |
| 25 | color: #FFF; | 25 | color: #FFF; |
| 26 | } | 26 | } |
| 27 | background-color: #000; | 27 | background-color: #000; |
| 28 | } | 28 | } |
| 29 | } | 29 | } |
| 30 | 30 | ||
| 31 | 31 | ||
| 32 | .btn-group-toggle{ | 32 | .btn-group-toggle{ |
| 33 | pointer-events: all; | 33 | pointer-events: all; |
| 34 | &.active{ | 34 | &.active{ |
| 35 | background-color: $primary-color; | 35 | background-color: $primary-color; |
| 36 | .boton-activar-teclado{ | 36 | .boton-activar-teclado{ |
| 37 | color: #FFF; | 37 | color: #FFF; |
| 38 | } | 38 | } |
| 39 | } | 39 | } |
| 40 | 40 | ||
| 41 | .boton-activar-teclado{ | 41 | .boton-activar-teclado{ |
| 42 | cursor: pointer; | 42 | cursor: pointer; |
| 43 | color: #000; | 43 | color: #000; |
| 44 | background-color: transparent; | 44 | background-color: transparent; |
| 45 | } | 45 | } |
| 46 | 46 | ||
| 47 | input{ | 47 | input{ |
| 48 | display: none; | 48 | display: none; |
| 49 | } | 49 | } |
| 50 | } | 50 | } |
| 51 | } | 51 | } |
| 52 | .teclado-container > div{ | 52 | .teclado-container > div{ |
| 53 | pointer-events: none; | 53 | pointer-events: none; |
| 54 | position: absolute; | 54 | position: absolute; |
| 55 | z-index: 100000; | 55 | z-index: 100000; |
| 56 | left: 0; | 56 | left: 0; |
| 57 | right: 0; | 57 | right: 0; |
| 58 | top: 449px; | 58 | top: 449px; |
| 59 | .row{ | 59 | .row{ |
| 60 | margin: 0 !important; | 60 | margin: 0 !important; |
| 61 | pointer-events: none; | 61 | pointer-events: none; |
| 62 | } | 62 | } |
| 63 | 63 | ||
| 64 | } | ||
| 64 | } |
src/sass/general.scss
| 1 | $primary-color: #e09125; | 1 | $primary-color: #e09125; |
| 2 | |||
| 3 | |||
| 4 | @import 'admin-seguimiento'; | 2 | @import 'admin-seguimiento'; |
| 5 | @import 'bootstrap'; | 3 | @import 'bootstrap'; |
| 6 | @import 'botonera'; | 4 | @import 'botonera'; |
| 7 | @import 'botonera-lateral'; | 5 | @import 'botonera-lateral'; |
| 8 | @import 'botonera-principal'; | 6 | @import 'botonera-principal'; |
| 9 | @import 'botonera-secundaria'; | 7 | @import 'botonera-secundaria'; |
| 10 | @import 'contenedor'; | 8 | @import 'contenedor'; |
| 11 | @import 'lista'; | 9 | @import 'lista'; |
| 12 | @import 'login'; | 10 | @import 'login'; |
| 13 | @import 'panel-informativo'; | 11 | @import 'panel-informativo'; |
| 14 | @import 'tabla'; | 12 | @import 'tabla'; |
| 15 | @import 'teclado'; | 13 | @import 'teclado'; |
| 16 | @import 'tabla-articulos'; | 14 | @import 'tabla-articulos'; |
| 17 | @import 'acciones-mobile'; | 15 | @import 'acciones-mobile'; |
| 18 | @import 'swiper'; | 16 | @import 'swiper'; |
| 19 | @import 'foca-crear'; | 17 | @import 'foca-crear'; |
| 20 | 18 | ||
| 21 | 19 | ||
| 22 | //OCULTA FLECHAS INPUT NUMBER | 20 | //OCULTA FLECHAS INPUT NUMBER |
| 23 | input[type='number'] { | 21 | input[type='number'] { |
| 24 | -moz-appearance:textfield; | 22 | -moz-appearance:textfield; |
| 25 | } | 23 | } |
| 26 | input::-webkit-outer-spin-button, | 24 | input::-webkit-outer-spin-button, |
| 27 | input::-webkit-inner-spin-button { | 25 | input::-webkit-inner-spin-button { |
| 28 | -webkit-appearance: none; | 26 | -webkit-appearance: none; |
| 29 | } | 27 | } |
| 30 | 28 | ||
| 31 | .d-md-grid{ | 29 | .d-md-grid{ |
| 32 | @media (min-width: 768px) { | 30 | @media (min-width: 768px) { |
| 33 | display: grid !important; | 31 | display: grid !important; |
| 34 | } | 32 | } |
| 35 | } | 33 | } |
| 36 | 34 |