Commit 4c6963785ff6d61021de274cee4dc0239fa6631e
Exists in
master
Merge branch 'master' into 'master'
oculto flechas inputs number See merge request !8
Showing
2 changed files
Show diff stats
src/sass/_bootstrap.scss
... | ... | @@ -26,13 +26,30 @@ |
26 | 26 | width:44px; |
27 | 27 | } |
28 | 28 | .modal-content { |
29 | + .modal-header{ | |
30 | + display: block; | |
31 | + >div.row{ | |
32 | + margin: 0 !important; | |
33 | + >div{ | |
34 | + padding: 0 !important; | |
35 | + } | |
36 | + } | |
37 | + } | |
29 | 38 | @media (max-width: 576px) { |
30 | 39 | height: auto; |
31 | 40 | height: 100%; |
32 | 41 | border-radius: 0; |
33 | 42 | } |
34 | 43 | } |
35 | -.modal-dialog { | |
44 | +.modal.show .modal-dialog { | |
45 | + @media (min-width: 1201px){ | |
46 | + -webkit-transform: translate(0, 70px); | |
47 | + transform: translate(0, 70px); | |
48 | + } | |
49 | + @media (min-width: 576px) { | |
50 | + -webkit-transform: translate(0, 90px); | |
51 | + transform: translate(0, 90px); | |
52 | + } | |
36 | 53 | @media (max-width: 576px) { |
37 | 54 | width: 100%; |
38 | 55 | height: 100%; |
src/sass/general.scss
... | ... | @@ -14,3 +14,13 @@ |
14 | 14 | @import 'acciones-mobile'; |
15 | 15 | @import 'swiper'; |
16 | 16 | @import 'crear-nota-pedido'; |
17 | + | |
18 | + | |
19 | +//OCULTA FLECHAS INPUT NUMBER | |
20 | +input[type='number'] { | |
21 | + -moz-appearance:textfield; | |
22 | +} | |
23 | +input::-webkit-outer-spin-button, | |
24 | +input::-webkit-inner-spin-button { | |
25 | + -webkit-appearance: none; | |
26 | +} |