Commit 383324d68213ad1b70d693770d5f39561ff80ed0
Exists in
develop
Merge branch 'develop' of http://git.focasoftware.com/npm/wrapper-demo
Showing
6 changed files
Show diff stats
gulpfile.js
img/logo-foca.png
24.1 KB
img/logofoca.png
24.1 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 |
src/sass/_login.scss
1 | -.login { | |
2 | - background: linear-gradient(0 ,#ffffff, #e6e6e6); | |
3 | - border: 1px solid #000000; | |
4 | - border-radius: 3px; | |
5 | - height: calc(280px + 1em); | |
6 | - left: calc(50% - 130px); | |
7 | - opacity: 0.7; | |
8 | - position: absolute; | |
9 | - text-align: center; | |
10 | - top: 190px; | |
11 | - width: 260px; | |
12 | - &-titulo { | |
13 | - border-bottom: 1px solid #ffffff; | |
14 | - padding: 5px 0; | |
15 | - } | |
16 | - &-campo { | |
17 | - label { | |
18 | - display: block; | |
19 | - font-size: 12px; | |
20 | - margin: 5px 0 0; | |
21 | - } | |
22 | - input { | |
23 | - -moz-border-radius: 10px; | |
24 | - -khtml-border-radius: 10px; | |
25 | - -webkit-border-radius: 10px; | |
26 | - -webkit-appearance: none; | |
27 | - padding-right: 5%; | |
28 | - padding-left: 5%; | |
29 | - border-radius: 10px; | |
30 | - outline: 0; | |
31 | - border-color: transparent; | |
32 | - text-transform: none !important; | |
33 | - &:focus { | |
34 | - border-color: #ff9900; | |
35 | - } | |
36 | - } | |
37 | - } | |
38 | - &-button { | |
39 | - width: 80%; | |
40 | - background-color: #cd9035; | |
41 | - color: white; | |
42 | - &:hover { | |
43 | - background-color: #a7743d; | |
44 | - color: white | |
45 | - } | |
46 | - &:focus { | |
47 | - color: white; | |
48 | - } | |
49 | - } | |
50 | - &-alerta-error { | |
51 | - width: 260px; | |
52 | - left: calc(50% - 130px); | |
53 | - top: calc(383px + 1.5em); | |
54 | - } | |
1 | +.bg-gradient-login { | |
2 | + background: linear-gradient(0, #ffffff, #e6e6e6); | |
3 | +} | |
4 | + | |
5 | +.login-small-text { | |
6 | + font-size: 12px; | |
55 | 7 | } |
56 | 8 | |
57 | 9 | @media (min-width: 768px) { |
58 | - .img-login{ | |
59 | - height: 190px; | |
10 | + .img-login { | |
60 | 11 | width: 211px; |
61 | 12 | } |
62 | 13 | } |
63 | 14 | |
64 | 15 | @media (max-width: 768px) { |
65 | - .img-login{ | |
66 | - height: 150px; | |
16 | + .img-login { | |
67 | 17 | width: 158px; |
68 | 18 | } |
69 | 19 | } |
20 | + | |
21 | +.input-icon { | |
22 | + width: 100%; | |
23 | + pointer-events: none; | |
24 | + float: right; | |
25 | + position: absolute; | |
26 | + align-self: center; | |
27 | + z-index: 10; | |
28 | + div { | |
29 | + pointer-events: all; | |
30 | + float: right; | |
31 | + } | |
32 | +} |