Commit 49d381a2f9427ab6696c76bd5c4a042972da8f57
Exists in
master
Merge branch 'develop' of git.focasoftware.com:npm/wrapper-demo
Showing
12 changed files
Show diff stats
gulpfile.js
img/Orden_de_Carga.png
3.65 KB
img/chofer_secundario.png
8.29 KB
img/fechaDeEntrega.png
7.44 KB
img/graficar.png
3.84 KB
img/hojaDeRuta.png
7.41 KB
img/logo-foca.png
24.1 KB
img/logofoca.png
24.1 KB
img/remito_abierto.png
7.65 KB
img/vehiculo_secundario.png
5.91 KB
img/verCisterna.png
9.29 KB
src/sass/_botonera-principal.scss
... | ... | @@ -20,6 +20,7 @@ |
20 | 20 | position: relative; |
21 | 21 | width: 90px; |
22 | 22 | outline: 0; |
23 | + transition: 0.3s; | |
23 | 24 | span { |
24 | 25 | left: 0; |
25 | 26 | position: absolute; |
... | ... | @@ -254,44 +255,41 @@ |
254 | 255 | } |
255 | 256 | } |
256 | 257 | |
257 | - .btn-tareas-pausadas{ | |
258 | - background-color: #cd9035; | |
259 | - border-color: #cd9035 !important; | |
260 | - height: 30px; | |
261 | - text-align: center; | |
262 | - width: 280px; | |
258 | + .btn-tareas-pausadas { | |
259 | + padding-left: 2rem; | |
260 | + padding-right: 2rem; | |
261 | + border-radius: 4px; | |
262 | + font-size: 14px; | |
263 | + width: auto; | |
264 | + height: 35px; | |
265 | + color: white; | |
263 | 266 | background-image: none; |
264 | - flood-color: #ffffff; | |
265 | - &:hover { | |
266 | - background-color: #cd9035; | |
267 | - } | |
267 | + background-color: #cd9035; | |
268 | + transition: 0.3s; | |
269 | + &:hover, | |
268 | 270 | &:focus { |
269 | 271 | background-color: #cd9035; |
270 | 272 | } |
271 | 273 | } |
272 | 274 | |
273 | - .dropdown-tareas-pausadas{ | |
274 | - background: linear-gradient(0 ,#ffffff, #e6e6e6); | |
275 | - position: absolute; | |
276 | - will-change: transform; | |
277 | - top: 0px; | |
278 | - left: 0px; | |
279 | - transform: translate3d(0px, 0px, 0px); | |
280 | - margin-bottom: 5px; | |
275 | + .dropdown-tareas-pausadas { | |
281 | 276 | padding: 0px; |
282 | - box-sizing: content-box; | |
283 | - border-radius: 12px; | |
284 | - font: small; | |
277 | + border-radius: 4px; | |
278 | + background: linear-gradient(0, #ffffff, #e6e6e6); | |
285 | 279 | transform: translate3d(0px, 30px, 0px); |
280 | + box-sizing: content-box; | |
281 | + font-size: 12px; | |
282 | + transition: 0.3s; | |
286 | 283 | } |
287 | 284 | |
288 | - .items-dropdown{ | |
289 | - background-color:rgba(0, 0, 0, 0); | |
290 | - cursor: hand; | |
291 | - &:hover { | |
285 | + .items-dropdown { | |
286 | + cursor: pointer; | |
287 | + width: auto; | |
288 | + background-color: rgba(0, 0, 0, 0); | |
289 | + transition: 0.3s; | |
290 | + &:hover, | |
291 | + &:focus { | |
292 | 292 | background-color: #e6e6e6; |
293 | - width: 98%; | |
294 | - border-radius: 12px; | |
295 | 293 | } |
296 | 294 | } |
297 | 295 |