@forgerock/login-widget 1.0.0-beta.10 → 1.0.0-beta.11
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.
- package/CHANGELOG.md +9 -2
- package/index.cjs +737 -489
- package/index.cjs.map +1 -1
- package/index.js +737 -489
- package/index.js.map +1 -1
- package/package.json +1 -8
- package/widget.css +24 -7
package/package.json
CHANGED
package/widget.css
CHANGED
|
@@ -1179,13 +1179,22 @@ margin: 0.25rem;
|
|
|
1179
1179
|
.tw_kba-fieldset {
|
|
1180
1180
|
position: relative;
|
|
1181
1181
|
border-color: #9ca3af;
|
|
1182
|
-
border-bottom-width:
|
|
1183
|
-
border-top-width:
|
|
1184
|
-
|
|
1185
|
-
padding-bottom: 1rem;
|
|
1182
|
+
border-bottom-width: 0;
|
|
1183
|
+
border-top-width: 1px;
|
|
1184
|
+
border-top-style: dashed;
|
|
1186
1185
|
padding-top: 1.5rem;
|
|
1187
1186
|
}
|
|
1188
|
-
.tw_kba-fieldset
|
|
1187
|
+
.tw_kba-fieldset > h2 {
|
|
1188
|
+
display: none;
|
|
1189
|
+
}
|
|
1190
|
+
.tw_kba-fieldset:first-of-type {
|
|
1191
|
+
border-top-width: 0;
|
|
1192
|
+
margin-top: 2.5rem;
|
|
1193
|
+
}
|
|
1194
|
+
.tw_kba-fieldset:first-of-type > h2 {
|
|
1195
|
+
display: block;
|
|
1196
|
+
}
|
|
1197
|
+
.tw_kba-fieldset:first-of-type:after {
|
|
1189
1198
|
border-color: #9ca3af;
|
|
1190
1199
|
border-top-width: 1px;
|
|
1191
1200
|
content: "";
|
|
@@ -1195,7 +1204,7 @@ right: 0;
|
|
|
1195
1204
|
top: -0.1em;
|
|
1196
1205
|
width: 45%;
|
|
1197
1206
|
}
|
|
1198
|
-
.tw_kba-fieldset:before {
|
|
1207
|
+
.tw_kba-fieldset:first-of-type:before {
|
|
1199
1208
|
border-color: #9ca3af;
|
|
1200
1209
|
border-top-width: 1px;
|
|
1201
1210
|
content: "";
|
|
@@ -1204,8 +1213,16 @@ position: absolute;
|
|
|
1204
1213
|
top: -0.1em;
|
|
1205
1214
|
width: 45%;
|
|
1206
1215
|
}
|
|
1207
|
-
.tw_kba-lock-icon {
|
|
1216
|
+
.tw_kba-fieldset:first-of-type .tw_kba-lock-icon {
|
|
1208
1217
|
display: flex;
|
|
1218
|
+
}
|
|
1219
|
+
.tw_kba-fieldset:last-of-type {
|
|
1220
|
+
border-bottom-width: 1px;
|
|
1221
|
+
margin-bottom: 2rem;
|
|
1222
|
+
padding-bottom: 1rem;
|
|
1223
|
+
}
|
|
1224
|
+
.tw_kba-lock-icon {
|
|
1225
|
+
display: none;
|
|
1209
1226
|
justify-content: center;
|
|
1210
1227
|
position: absolute;
|
|
1211
1228
|
top: -0.75rem;
|