Commit e63e300827b44cfdf689ad2f04cbdde9c2bb35fe

Authored by --global
1 parent 92a8efb0b0
Exists in master

overflow: hidden

Showing 1 changed file with 4 additions and 0 deletions   Show diff stats
src/sass/general.scss
1 $primary-color: #e09125; 1 $primary-color: #e09125;
2 @import 'admin-seguimiento'; 2 @import 'admin-seguimiento';
3 @import 'bootstrap'; 3 @import 'bootstrap';
4 @import 'botonera'; 4 @import 'botonera';
5 @import 'botonera-lateral'; 5 @import 'botonera-lateral';
6 @import 'botonera-principal'; 6 @import 'botonera-principal';
7 @import 'botonera-secundaria'; 7 @import 'botonera-secundaria';
8 @import 'contenedor'; 8 @import 'contenedor';
9 @import 'lista'; 9 @import 'lista';
10 @import 'login'; 10 @import 'login';
11 @import 'panel-informativo'; 11 @import 'panel-informativo';
12 @import 'tabla'; 12 @import 'tabla';
13 @import 'teclado'; 13 @import 'teclado';
14 @import 'tabla-articulos'; 14 @import 'tabla-articulos';
15 @import 'acciones-mobile'; 15 @import 'acciones-mobile';
16 @import 'swiper'; 16 @import 'swiper';
17 @import 'foca-crear'; 17 @import 'foca-crear';
18 @import 'logistica-pedido-ruta'; 18 @import 'logistica-pedido-ruta';
19 @import 'tabs'; 19 @import 'tabs';
20 20
21 21
22 //OCULTA FLECHAS INPUT NUMBER 22 //OCULTA FLECHAS INPUT NUMBER
23 input[type='number'] { 23 input[type='number'] {
24 -moz-appearance:textfield; 24 -moz-appearance:textfield;
25 } 25 }
26 input::-webkit-outer-spin-button, 26 input::-webkit-outer-spin-button,
27 input::-webkit-inner-spin-button { 27 input::-webkit-inner-spin-button {
28 -webkit-appearance: none; 28 -webkit-appearance: none;
29 } 29 }
30 30
31 .d-md-grid{ 31 .d-md-grid{
32 @media (min-width: 768px) { 32 @media (min-width: 768px) {
33 display: grid !important; 33 display: grid !important;
34 } 34 }
35 } 35 }
36 36
37 .btn-outline-debo{ 37 .btn-outline-debo{
38 background-color: transparent; 38 background-color: transparent;
39 color: $primary-color; 39 color: $primary-color;
40 border-color: $primary-color; 40 border-color: $primary-color;
41 &:hover{ 41 &:hover{
42 color: #FFF; 42 color: #FFF;
43 border-color: transparent; 43 border-color: transparent;
44 background-color: $primary-color; 44 background-color: $primary-color;
45 } 45 }
46 } 46 }
47 47
48 .front-index{ 48 .front-index{
49 z-index: 9999; 49 z-index: 9999;
50 } 50 }
51
52 .foca-overflow-hidden{
53 overflow: hidden;
54 }