Commit d87c1c0508a26b67a2f3d0276b2aa43ef58939da

Authored by Marcelo Puebla
1 parent 9d95a4615d
Exists in master and in 1 other branch develop

agregada imagen de buscar productos y clase css btn-producto

img/buscarProductos.png

9.88 KB

src/sass/_botonera-secundaria.scss
1 .botonera-secundaria { 1 .botonera-secundaria {
2 .row { 2 .row {
3 border-radius: 5px; 3 border-radius: 5px;
4 overflow: hidden; 4 overflow: hidden;
5 } 5 }
6 .btn-xs { 6 .btn-xs {
7 display: grid; 7 display: grid;
8 border-width: 3px !important; 8 border-width: 3px !important;
9 border-radius: .7rem !important; 9 border-radius: .7rem !important;
10 margin-right: 1px; 10 margin-right: 1px;
11 width: calc(100% - 1px); 11 width: calc(100% - 1px);
12 margin-bottom: 1px; 12 margin-bottom: 1px;
13 &:hover{ 13 &:hover{
14 background-color: #cd903550 ; 14 background-color: #cd903550 ;
15 border-color: #cd9035 !important; 15 border-color: #cd9035 !important;
16 } 16 }
17 &:focus{ 17 &:focus{
18 box-shadow: 0 0 0 0.2rem rgb(216, 176, 125); 18 box-shadow: 0 0 0 0.2rem rgb(216, 176, 125);
19 } 19 }
20 img{ 20 img{
21 width: 40%; 21 width: 40%;
22 margin: auto 22 margin: auto
23 } 23 }
24 span{ 24 span{
25 font-size: 11px; 25 font-size: 11px;
26 margin-left: -.25rem; 26 margin-left: -.25rem;
27 margin-right: -.25rem; 27 margin-right: -.25rem;
28 } 28 }
29 } 29 }
30 .btn-tarjeta { 30 .btn-tarjeta {
31 border-width: 3px !important; 31 border-width: 3px !important;
32 border-radius: .7rem !important; 32 border-radius: .7rem !important;
33 &:hover{ 33 &:hover{
34 background-color: #cd903550 ; 34 background-color: #cd903550 ;
35 border-color: #cd9035 !important; 35 border-color: #cd9035 !important;
36 } 36 }
37 &:focus{ 37 &:focus{
38 box-shadow: none; 38 box-shadow: none;
39 border-color: #cd9035 !important; 39 border-color: #cd9035 !important;
40 } 40 }
41 img{ 41 img{
42 width: 5em; 42 width: 5em;
43 margin: auto 43 margin: auto
44 } 44 }
45 } 45 }
46 .btn-producto {
47 border-width: 3px !important;
48 border-radius: .7rem !important;
49 &:hover{
50 background-color: #cd903550 ;
51 border-color: #cd9035 !important;
52 }
53 &:focus{
54 box-shadow: none;
55 border-color: #cd9035 !important;
56 }
57 img{
58 width: 100%;
59 margin: auto
60 }
61 }
46 @media(max-width: 992px){ 62 @media(max-width: 992px){
47 .btn-xs{ 63 .btn-xs{
48 font-weight: 700; 64 font-weight: 700;
49 } 65 }
50 } 66 }
51 @media(min-width: 1200px){ 67 @media(min-width: 1200px){
52 .btn-xs{ 68 .btn-xs{
53 height: 85px !important; 69 height: 85px !important;
54 } 70 }
55 .foca-facturador-px{ 71 .foca-facturador-px{
56 padding-left: 3rem; 72 padding-left: 3rem;
57 padding-right: 3rem; 73 padding-right: 3rem;
58 } 74 }
59 } 75 }
60 76
61 @media(min-width: 992px) and (max-width: 1200px){ 77 @media(min-width: 992px) and (max-width: 1200px){
62 .btn-xs{ 78 .btn-xs{
63 height: 73px !important; 79 height: 73px !important;
64 } 80 }
65 } 81 }
66 82
67 @media(min-width: 768px) and (max-width: 992px){ 83 @media(min-width: 768px) and (max-width: 992px){
68 .btn-xs{ 84 .btn-xs{
69 height: 62px !important; 85 height: 62px !important;
70 } 86 }
71 } 87 }
72 88
73 @media(min-width: 576px) and (max-width: 768px){ 89 @media(min-width: 576px) and (max-width: 768px){
74 .btn-xs{ 90 .btn-xs{
75 max-height: 51px; 91 max-height: 51px;
76 } 92 }
77 } 93 }
78 94
79 @media(max-width: 576px) { 95 @media(max-width: 576px) {
80 .btn-xs{ 96 .btn-xs{
81 max-height: 22vw; 97 max-height: 22vw;
82 } 98 }
83 } 99 }
84 100
85 } 101 }
86 .foca-overflow-hidden{ 102 .foca-overflow-hidden{
87 overflow: hidden; 103 overflow: hidden;
88 text-overflow: ellipsis; 104 text-overflow: ellipsis;
89 white-space: nowrap; 105 white-space: nowrap;
90 } 106 }
91 107
92 .foca-boton-facturador-right { 108 .foca-boton-facturador-right {
93 right: 5; 109 right: 5;
94 } 110 }
95 111