Commit b1916f609f2617a44512b1661cfdb8219259dcde
1 parent
3b8cb3ff47
Exists in
master
Cambiado cursor en botonera.
Showing
1 changed file
with
1 additions
and
0 deletions
Show diff stats
src/sass/_botonera-principal.scss
1 | .botonera-principal { | 1 | .botonera-principal { |
2 | menuitem { | 2 | menuitem { |
3 | display: inline-block; | 3 | display: inline-block; |
4 | height: 130px; | 4 | height: 130px; |
5 | text-align: center; | 5 | text-align: center; |
6 | width: 180px; | 6 | width: 180px; |
7 | @media (max-width: 576px) { | 7 | @media (max-width: 576px) { |
8 | width: 100%; | 8 | width: 100%; |
9 | } | 9 | } |
10 | @media (min-width: 992px) and (max-width: 1200px) { | 10 | @media (min-width: 992px) and (max-width: 1200px) { |
11 | width: 150px; | 11 | width: 150px; |
12 | } | 12 | } |
13 | } | 13 | } |
14 | button { | 14 | button { |
15 | cursor: pointer; | ||
15 | background-image: url("../img/botonera.png"); | 16 | background-image: url("../img/botonera.png"); |
16 | border-radius: 12px; | 17 | border-radius: 12px; |
17 | border-width: 0; | 18 | border-width: 0; |
18 | height: 90px; | 19 | height: 90px; |
19 | position: relative; | 20 | position: relative; |
20 | width: 90px; | 21 | width: 90px; |
21 | outline: 0; | 22 | outline: 0; |
22 | span { | 23 | span { |
23 | left: 0; | 24 | left: 0; |
24 | position: absolute; | 25 | position: absolute; |
25 | text-align: center; | 26 | text-align: center; |
26 | top: 90px; | 27 | top: 90px; |
27 | width: 100%; | 28 | width: 100%; |
28 | font-size: 12px; | 29 | font-size: 12px; |
29 | color: #777777; | 30 | color: #777777; |
30 | } | 31 | } |
31 | &:hover { | 32 | &:hover { |
32 | background-color: rgb(250, 250, 250); | 33 | background-color: rgb(250, 250, 250); |
33 | filter: drop-shadow(4px 4px 4px gray); | 34 | filter: drop-shadow(4px 4px 4px gray); |
34 | } | 35 | } |
35 | &:active { | 36 | &:active { |
36 | background-color: rgb(230, 230, 230); | 37 | background-color: rgb(230, 230, 230); |
37 | filter: drop-shadow(4px 4px 4px gray); | 38 | filter: drop-shadow(4px 4px 4px gray); |
38 | } | 39 | } |
39 | &:focus { | 40 | &:focus { |
40 | background-color: rgb(250, 250, 250); | 41 | background-color: rgb(250, 250, 250); |
41 | filter: drop-shadow(4px 4px 4px gray); | 42 | filter: drop-shadow(4px 4px 4px gray); |
42 | } | 43 | } |
43 | } | 44 | } |
44 | &-menu { | 45 | &-menu { |
45 | width: 100%; | 46 | width: 100%; |
46 | padding-left: 90px; | 47 | padding-left: 90px; |
47 | @media (max-width: 576px) { | 48 | @media (max-width: 576px) { |
48 | padding: 0; | 49 | padding: 0; |
49 | } | 50 | } |
50 | } | 51 | } |
51 | &-logo { | 52 | &-logo { |
52 | width: 100%; | 53 | width: 100%; |
53 | margin-left: 50%; | 54 | margin-left: 50%; |
54 | opacity: 0.8; | 55 | opacity: 0.8; |
55 | @media (max-width: 576px) { | 56 | @media (max-width: 576px) { |
56 | width: 180%; | 57 | width: 180%; |
57 | margin-left: 20%; | 58 | margin-left: 20%; |
58 | } | 59 | } |
59 | } | 60 | } |
60 | &-vacio { | 61 | &-vacio { |
61 | & button { | 62 | & button { |
62 | background-position: -4380px 0; | 63 | background-position: -4380px 0; |
63 | &:hover { | 64 | &:hover { |
64 | background-position: -4380px -90px; | 65 | background-position: -4380px -90px; |
65 | } | 66 | } |
66 | } | 67 | } |
67 | } | 68 | } |
68 | &-abrir-turno { | 69 | &-abrir-turno { |
69 | & button { | 70 | & button { |
70 | background-position: 0 0; | 71 | background-position: 0 0; |
71 | &:hover { | 72 | &:hover { |
72 | background-position: 0 -90px; | 73 | background-position: 0 -90px; |
73 | } | 74 | } |
74 | } | 75 | } |
75 | } | 76 | } |
76 | &-cerrar-turno { | 77 | &-cerrar-turno { |
77 | & button { | 78 | & button { |
78 | background-position: -90px 0; | 79 | background-position: -90px 0; |
79 | &:hover { | 80 | &:hover { |
80 | background-position: -90px -90px; | 81 | background-position: -90px -90px; |
81 | } | 82 | } |
82 | } | 83 | } |
83 | } | 84 | } |
84 | &-caja { | 85 | &-caja { |
85 | & button { | 86 | & button { |
86 | background-position: -180px 0; | 87 | background-position: -180px 0; |
87 | &:hover { | 88 | &:hover { |
88 | background-position: -180px -90px; | 89 | background-position: -180px -90px; |
89 | } | 90 | } |
90 | } | 91 | } |
91 | } | 92 | } |
92 | &-estado-cisterna { | 93 | &-estado-cisterna { |
93 | & button { | 94 | & button { |
94 | background-image: url("../img/control_stock.png"); | 95 | background-image: url("../img/control_stock.png"); |
95 | background-size: 90px 90px; | 96 | background-size: 90px 90px; |
96 | } | 97 | } |
97 | } | 98 | } |
98 | &-logistica { | 99 | &-logistica { |
99 | & button { | 100 | & button { |
100 | background-image: url("../img/logistica.png"); | 101 | background-image: url("../img/logistica.png"); |
101 | background-size: 90px 90px; | 102 | background-size: 90px 90px; |
102 | } | 103 | } |
103 | } | 104 | } |
104 | &-facturador { | 105 | &-facturador { |
105 | & button { | 106 | & button { |
106 | background-position: -270px 0px; | 107 | background-position: -270px 0px; |
107 | &:hover { | 108 | &:hover { |
108 | background-position: -270px -90px; | 109 | background-position: -270px -90px; |
109 | } | 110 | } |
110 | } | 111 | } |
111 | } | 112 | } |
112 | &-nota-pedido { | 113 | &-nota-pedido { |
113 | & button { | 114 | & button { |
114 | background-image: url("../img/notaPedido.png"); | 115 | background-image: url("../img/notaPedido.png"); |
115 | background-size: 90px 90px; | 116 | background-size: 90px 90px; |
116 | } | 117 | } |
117 | } | 118 | } |
118 | &-remito { | 119 | &-remito { |
119 | & button { | 120 | & button { |
120 | background-image: url("../img/remito.png"); | 121 | background-image: url("../img/remito.png"); |
121 | background-size: 90px 90px; | 122 | background-size: 90px 90px; |
122 | } | 123 | } |
123 | } | 124 | } |
124 | &-hoja-ruta { | 125 | &-hoja-ruta { |
125 | & button { | 126 | & button { |
126 | background-image: url("../img/hoja-ruta.png"); | 127 | background-image: url("../img/hoja-ruta.png"); |
127 | background-size: 86px 90px; | 128 | background-size: 86px 90px; |
128 | } | 129 | } |
129 | } | 130 | } |
130 | &-activar-hoja-ruta { | 131 | &-activar-hoja-ruta { |
131 | & button { | 132 | & button { |
132 | background-image: url("../img/activar_hoja.png"); | 133 | background-image: url("../img/activar_hoja.png"); |
133 | background-size: 90px 90px; | 134 | background-size: 90px 90px; |
134 | } | 135 | } |
135 | } | 136 | } |
136 | &-hoja-ruta-transportista { | 137 | &-hoja-ruta-transportista { |
137 | & button { | 138 | & button { |
138 | background-image: url("../img/hojaRutaVolante.png"); | 139 | background-image: url("../img/hojaRutaVolante.png"); |
139 | background-size: 90px 90px; | 140 | background-size: 90px 90px; |
140 | } | 141 | } |
141 | } | 142 | } |
142 | &-seguimiento { | 143 | &-seguimiento { |
143 | & button { | 144 | & button { |
144 | background-image: url("../img/seguimientoNotaPedido.png"); | 145 | background-image: url("../img/seguimientoNotaPedido.png"); |
145 | background-size: 90px 90px; | 146 | background-size: 90px 90px; |
146 | } | 147 | } |
147 | } | 148 | } |
148 | &-seguimiento-hoja-ruta { | 149 | &-seguimiento-hoja-ruta { |
149 | & button { | 150 | & button { |
150 | background-image: url("../img/seguimientoHojaRuta.png"); | 151 | background-image: url("../img/seguimientoHojaRuta.png"); |
151 | background-size: 90px 90px; | 152 | background-size: 90px 90px; |
152 | } | 153 | } |
153 | } | 154 | } |
154 | &-cobranzas { | 155 | &-cobranzas { |
155 | & button { | 156 | & button { |
156 | background-image: url("../img/cobranzas.png"); | 157 | background-image: url("../img/cobranzas.png"); |
157 | background-size: 90px 90px; | 158 | background-size: 90px 90px; |
158 | } | 159 | } |
159 | } | 160 | } |
160 | &-seguimiento-cobranzas { | 161 | &-seguimiento-cobranzas { |
161 | & button { | 162 | & button { |
162 | background-image: url("../img/seguimientoCobranza.png"); | 163 | background-image: url("../img/seguimientoCobranza.png"); |
163 | background-size: 90px 90px; | 164 | background-size: 90px 90px; |
164 | } | 165 | } |
165 | } | 166 | } |
166 | &-vehiculo { | 167 | &-vehiculo { |
167 | & button { | 168 | & button { |
168 | background-image: url("../img/abmVehiculos.png"); | 169 | background-image: url("../img/abmVehiculos.png"); |
169 | background-size: 90px 90px; | 170 | background-size: 90px 90px; |
170 | } | 171 | } |
171 | } | 172 | } |
172 | &-precio-condicion { | 173 | &-precio-condicion { |
173 | & button { | 174 | & button { |
174 | background-image: url("../img/abmPrecios.png"); | 175 | background-image: url("../img/abmPrecios.png"); |
175 | background-size: 90px 90px; | 176 | background-size: 90px 90px; |
176 | } | 177 | } |
177 | } | 178 | } |
178 | &-chofer { | 179 | &-chofer { |
179 | & button { | 180 | & button { |
180 | background-image: url("../img/abmChofer.png"); | 181 | background-image: url("../img/abmChofer.png"); |
181 | background-size: 90px 90px; | 182 | background-size: 90px 90px; |
182 | } | 183 | } |
183 | } | 184 | } |
184 | &-agendar-visita { | 185 | &-agendar-visita { |
185 | & button { | 186 | & button { |
186 | background-image: url("../img/agendarVisita.png"); | 187 | background-image: url("../img/agendarVisita.png"); |
187 | background-size: 90px 90px; | 188 | background-size: 90px 90px; |
188 | } | 189 | } |
189 | } | 190 | } |
190 | &-informes { | 191 | &-informes { |
191 | & button { | 192 | & button { |
192 | background-image: url("../img/informes.png"); | 193 | background-image: url("../img/informes.png"); |
193 | background-size: 90px 90px; | 194 | background-size: 90px 90px; |
194 | } | 195 | } |
195 | } | 196 | } |
196 | &-vendedor-cobrador { | 197 | &-vendedor-cobrador { |
197 | & button { | 198 | & button { |
198 | background-image: url("../img/abmVendedorCobrador.png"); | 199 | background-image: url("../img/abmVendedorCobrador.png"); |
199 | background-size: 90px 90px; | 200 | background-size: 90px 90px; |
200 | } | 201 | } |
201 | } | 202 | } |
202 | &-autorizar-nota { | 203 | &-autorizar-nota { |
203 | & button { | 204 | & button { |
204 | background-image: url("../img/autorizarNota.png"); | 205 | background-image: url("../img/autorizarNota.png"); |
205 | background-size: 90px 90px; | 206 | background-size: 90px 90px; |
206 | } | 207 | } |
207 | } | 208 | } |
208 | 209 | ||
209 | &-cliente { | 210 | &-cliente { |
210 | & button { | 211 | & button { |
211 | background-image: url("../img/clientePrincipal.png"); | 212 | background-image: url("../img/clientePrincipal.png"); |
212 | background-size: 90px 90px; | 213 | background-size: 90px 90px; |
213 | } | 214 | } |
214 | } | 215 | } |
215 | 216 | ||
216 | &-parametros { | 217 | &-parametros { |
217 | & button { | 218 | & button { |
218 | background-image: url("../img/parametrizar.png"); | 219 | background-image: url("../img/parametrizar.png"); |
219 | background-size: 90px 90px; | 220 | background-size: 90px 90px; |
220 | } | 221 | } |
221 | } | 222 | } |
222 | .swiper-pagination { | 223 | .swiper-pagination { |
223 | bottom: 0px !important; | 224 | bottom: 0px !important; |
224 | } | 225 | } |
225 | 226 | ||
226 | .swiper-button-next { | 227 | .swiper-button-next { |
227 | background-image: url("../img/derecha.png"); | 228 | background-image: url("../img/derecha.png"); |
228 | &:hover { | 229 | &:hover { |
229 | filter: drop-shadow(4px 4px 4px gray); | 230 | filter: drop-shadow(4px 4px 4px gray); |
230 | } | 231 | } |
231 | } | 232 | } |
232 | 233 | ||
233 | .swiper-button-prev { | 234 | .swiper-button-prev { |
234 | background-image: url("../img/izquierda.png"); | 235 | background-image: url("../img/izquierda.png"); |
235 | &:hover { | 236 | &:hover { |
236 | filter: drop-shadow(4px 4px 4px gray); | 237 | filter: drop-shadow(4px 4px 4px gray); |
237 | } | 238 | } |
238 | } | 239 | } |
239 | @media (min-width: 992px) { | 240 | @media (min-width: 992px) { |
240 | a { | 241 | a { |
241 | margin-top: 2.5rem; | 242 | margin-top: 2.5rem; |
242 | } | 243 | } |
243 | } | 244 | } |
244 | } | 245 | } |
245 | 246 |