explorak5_login_prueba 8.3 → 8.4
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5872c07b2be31e9a938922ae79c4f7941b649c3ee2a7f120485b72b02a0905ff
|
4
|
+
data.tar.gz: 7bb19b204ec38ba51a22518232db396cd433f1b92ddd8fbb9a3d57ff79614d9b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9aaf22220301c8029c3444ed38008a6a15ea9fc0727d5a3c2a6f848d731a8340f5561b3b8e9952688151a20e28bc8416c1fdd57c7cac3e49617562bc8e3918e8
|
7
|
+
data.tar.gz: c42bc9a5fbfbc16858e0166692e9ad29882a3ce32180b6f144120815d7305ddbfee9ba55241f89a18a413e7a78687ac587e0e81bd6d111889b8c5158f3dff956
|
@@ -55,6 +55,78 @@ body.ic-Login-Body {
|
|
55
55
|
border: none;
|
56
56
|
}
|
57
57
|
|
58
|
+
.ic-Login__actions {
|
59
|
+
display: flex;
|
60
|
+
align-items: center;
|
61
|
+
.ic-Login__actions-timeout {
|
62
|
+
flex: 1;
|
63
|
+
label {
|
64
|
+
color: var(--ic-brand-Login-Content-label-text-color);
|
65
|
+
}
|
66
|
+
|
67
|
+
input[type="checkbox"] {
|
68
|
+
&:focus {
|
69
|
+
outline: 1px solid var(--ic-brand-Login-Content-password-text-color);
|
70
|
+
outline-offset: 1px;
|
71
|
+
}
|
72
|
+
}
|
73
|
+
}
|
74
|
+
.ic-Login__actions--right {
|
75
|
+
flex: 1;
|
76
|
+
display: flex;
|
77
|
+
justify-content: flex-end;
|
78
|
+
}
|
79
|
+
.ic-Login__actions--left {
|
80
|
+
flex: 1;
|
81
|
+
text-align: direction(left);
|
82
|
+
}
|
83
|
+
.ic-Form-control {
|
84
|
+
margin-bottom: 0; // override to help vertical alignment
|
85
|
+
}
|
86
|
+
// simulating a ghost button to work for default high contrast login screen
|
87
|
+
.Button--login {
|
88
|
+
padding: $ic-sp*0.5 $ic-sp*3;
|
89
|
+
background: transparent;
|
90
|
+
color: var(--ic-brand-Login-Content-password-text-color);
|
91
|
+
border: 1px solid var(--ic-brand-Login-Content-password-text-color);
|
92
|
+
overflow: visible;
|
93
|
+
|
94
|
+
&::before {
|
95
|
+
content: "";
|
96
|
+
position: absolute;
|
97
|
+
top: -0.375rem;
|
98
|
+
#{direction(left)}: -0.375rem;
|
99
|
+
#{direction(right)}: -0.375rem;
|
100
|
+
bottom: -0.375rem;
|
101
|
+
border: 1px solid var(--ic-brand-Login-Content-password-text-color);
|
102
|
+
border-radius: 0.375rem;
|
103
|
+
opacity: 0;
|
104
|
+
}
|
105
|
+
|
106
|
+
&:focus {
|
107
|
+
box-shadow: none;
|
108
|
+
&::before {
|
109
|
+
opacity: 1;
|
110
|
+
}
|
111
|
+
}
|
112
|
+
|
113
|
+
&::after {
|
114
|
+
content: "";
|
115
|
+
position: absolute;
|
116
|
+
top: 0;
|
117
|
+
#{direction(left)}: 0;
|
118
|
+
#{direction(right)}: 0;
|
119
|
+
bottom: 0;
|
120
|
+
border-radius: 0.175rem;
|
121
|
+
}
|
122
|
+
|
123
|
+
&:hover::after {
|
124
|
+
background: var(--ic-brand-Login-Content-password-text-color);
|
125
|
+
opacity: 0.1;
|
126
|
+
}
|
127
|
+
}
|
128
|
+
}
|
129
|
+
|
58
130
|
</style>
|
59
131
|
<%
|
60
132
|
# Copyright (C) 2015 - present Instructure, Inc.
|