explorak5_login_prueba 8.1 → 8.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 55e4470aca92634f02383a4eee2605a013a574492d4b6d85b0c6c29217815cbc
4
- data.tar.gz: 6be84c8207c0c90b94047c7260edb8bf190142f6f51591737ad1a9b0c8b52ab9
3
+ metadata.gz: 2e9ef22d5a86a25126b36b2b3fe1f23ec3a8049705603b2a10c4aee6ac06a399
4
+ data.tar.gz: 3fc462acf7fabbd41e0b8ad8b93017681f4036b9b57848b5c12c00103c197b00
5
5
  SHA512:
6
- metadata.gz: 0a8163a20beabe53d379d6a1c531d527aa9902a644ef494f609258448f26dc4f422a0380b702a79586d3f10ab544e416e4ed096599a569e5a287e0e192e83d20
7
- data.tar.gz: 748d97761b79a7e6376696623a47cf667f6e73a6cb1630cb877b6c4b26716bdb847a4bed38ca546859843ca8e6c1e3cd78071cea742b36711e2560125fff89d0
6
+ metadata.gz: 723a4a5a7825f88cfca7df864c29d9a7cab4dbbb2b2f90f815511b641975b708b6e21ed4dd2b47f28ab20c3eaf2a2020084ecffadaabdbbd4a60a3468a7f928a
7
+ data.tar.gz: 1d7b694d0b4f14f51b37019f7387579e891856a5a33eb357e49836dde33379490f9f91e51ee531947b3c3dea686ac3c91ece37c775ea04b93d801e7366730dde
@@ -1,43 +1,14 @@
1
1
  <style>
2
2
 
3
- body.ic-Login-Body { // apply the background to the body element so that you don't see white bg as you scroll
4
- // background-color: var(--ic-brand-Login-body-bgd-color);
5
- // background-image:
6
- // linear-gradient(transparent, transparent 80%, var(--ic-brand-Login-body-bgd-shadow-color)),
7
- // var(--ic-brand-Login-body-bgd-image); // if there is a custom image
8
- // background-attachment: fixed;
9
- // height: 100vh; // enable full height
3
+ body.ic-Login-Body {
10
4
  background-size: cover;
11
- // Agregado por explora k5
12
5
  background-image: url("/images/images_k5/fondo.png");
13
6
  background-repeat: no-repeat;
14
7
 
15
8
  }
16
- .ic-Login {
17
- display: flex;
18
- justify-content: center;
19
- color: $ic-color-light;
20
- }
21
- .ic-Login__container {
22
- margin-top: $ic-sp*2;
23
- }
24
- .ic-Login__content {
25
- width: 400px;
26
- margin: 0 auto;
27
- background: var(--ic-brand-Login-Content-bgd-color);
28
- border: 5px solid var(--ic-brand-Login-Content-border-color);
29
- padding: $ic-sp;
30
- border-radius: $ic-Login-border-radius;
31
- }
32
- .ic-Login__innerContent {
33
- padding-top: $ic-sp*2;
34
- background: var(--ic-brand-Login-Content-inner-bgd);
35
- border: 2px solid var(--ic-brand-Login-Content-inner-border);
36
- border-radius: $ic-Login-border-radius;
37
- }
9
+
38
10
  .ic-Login__title {
39
11
  color: var(--ic-brand-Login-Content-label-text-color);
40
- // Agregado por explora k5
41
12
  text-align: center;
42
13
  }
43
14
  .ic-Login__text {
@@ -56,10 +27,7 @@ body.ic-Login-Body { // apply the background to the body element so that you don
56
27
  .ic-Form-control--login .ic-Label {
57
28
  color: var(--ic-brand-Login-Content-label-text-color) !important;
58
29
  }
59
- .ic-Login__link {
60
- color: var(--ic-brand-Login-Content-password-text-color) !important;
61
- text-decoration: underline;
62
- }
30
+
63
31
  .ic-Login__body__error {
64
32
  display: block;
65
33
  position:relative;
@@ -67,6 +35,81 @@ body.ic-Login-Body { // apply the background to the body element so that you don
67
35
  #{direction(left)}: auto;
68
36
  max-width: 400px;
69
37
  }
38
+ .ic-Login__actions {
39
+ //display: flex;
40
+ align-items: center;
41
+ .ic-Login__actions-timeout {
42
+ flex: 1;
43
+ label {
44
+ color: var(--ic-brand-Login-Content-label-text-color);
45
+ }
46
+
47
+ input[type="checkbox"] {
48
+ &:focus {
49
+ outline: 1px solid var(--ic-brand-Login-Content-password-text-color);
50
+ outline-offset: 1px;
51
+ }
52
+ }
53
+ }
54
+ .ic-Login__actions--right {
55
+ flex: 1;
56
+ display: flex;
57
+ justify-content: flex-end;
58
+ }
59
+ .ic-Login__actions--left {
60
+ flex: 1;
61
+ text-align: direction(left);
62
+ }
63
+ .ic-Form-control {
64
+ margin-bottom: 0; // override to help vertical alignment
65
+ }
66
+ // simulating a ghost button to work for default high contrast login screen
67
+ .Button--login {
68
+ padding: $ic-sp*0.5 $ic-sp*3;
69
+ background: transparent;
70
+ color: var(--ic-brand-Login-Content-password-text-color);
71
+ border: 1px solid var(--ic-brand-Login-Content-password-text-color);
72
+ overflow: visible;
73
+ // Agregado por explora k5
74
+ width: 100%;
75
+ border-radius: 20px;
76
+
77
+ &::before {
78
+ content: "";
79
+ position: absolute;
80
+ top: -0.375rem;
81
+ #{direction(left)}: -0.375rem;
82
+ #{direction(right)}: -0.375rem;
83
+ bottom: -0.375rem;
84
+ border: 1px solid var(--ic-brand-Login-Content-password-text-color);
85
+ border-radius: 0.375rem;
86
+ opacity: 0;
87
+ }
88
+
89
+ &:focus {
90
+ box-shadow: none;
91
+ &::before {
92
+ opacity: 1;
93
+ }
94
+ }
95
+
96
+ &::after {
97
+ content: "";
98
+ position: absolute;
99
+ top: 0;
100
+ #{direction(left)}: 0;
101
+ #{direction(right)}: 0;
102
+ bottom: 0;
103
+ border-radius: 0.175rem;
104
+ }
105
+
106
+ &:hover::after {
107
+ background: var(--ic-brand-Login-Content-password-text-color);
108
+ opacity: 0.1;
109
+ }
110
+ }
111
+ }
112
+
70
113
  .btn-img-login-espol {
71
114
  float: left;
72
115
  width: 6%;
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Explorak5LoginPrueba
4
- VERSION = "8.1"
4
+ VERSION = "8.2"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: explorak5_login_prueba
3
3
  version: !ruby/object:Gem::Version
4
- version: '8.1'
4
+ version: '8.2'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kevin Ibarra