@forgerock/login-widget 1.0.2-beta.1 → 1.0.2-beta.3
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 +363 -0
- package/index.cjs +36261 -0
- package/index.cjs.map +1 -0
- package/index.d.ts +2391 -0
- package/index.js +36252 -0
- package/index.js.map +1 -0
- package/package.json +1 -4
- package/types.d.ts +2385 -0
- package/widget.css +1632 -0
package/widget.css
ADDED
|
@@ -0,0 +1,1632 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Write all your CSS imports here
|
|
3
|
+
*
|
|
4
|
+
* @layer is used here to control the cascade of CSS and to also give the user of the widget
|
|
5
|
+
* more control over how this CSS behaves in their own app.
|
|
6
|
+
*
|
|
7
|
+
* Ref: https://developer.mozilla.org/en-US/docs/Web/CSS/@layer
|
|
8
|
+
*
|
|
9
|
+
* Choose your type of "base CSS":
|
|
10
|
+
* 1. `custom.base.css` – (safer) use this if you don't want globally affecting CSS resets
|
|
11
|
+
* 2. `tailwind.base.css` – use this if you want Tailwind's default globally affecting CSS reset
|
|
12
|
+
*/
|
|
13
|
+
@layer fr-widget.base {
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
* Originally copied from `@tailwind base` with the addition of the `:where` selector
|
|
17
|
+
* to namespace the CSS reset *without* increasing specificity!
|
|
18
|
+
*/
|
|
19
|
+
|
|
20
|
+
/*
|
|
21
|
+
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
|
|
22
|
+
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
|
|
23
|
+
*/
|
|
24
|
+
:where(.fr_widget-root) *,
|
|
25
|
+
:where(.fr_widget-root) ::before,
|
|
26
|
+
:where(.fr_widget-root) ::after {
|
|
27
|
+
box-sizing: border-box; /* 1 */
|
|
28
|
+
border-width: 0; /* 2 */
|
|
29
|
+
border-style: solid; /* 2 */
|
|
30
|
+
border-color: currentColor; /* 2 */
|
|
31
|
+
}
|
|
32
|
+
:where(.fr_widget-root) ::before,
|
|
33
|
+
:where(.fr_widget-root) ::after {
|
|
34
|
+
--tw-content: '';
|
|
35
|
+
}
|
|
36
|
+
/*
|
|
37
|
+
1. Use a consistent sensible line-height in all browsers.
|
|
38
|
+
2. Prevent adjustments of font size after orientation changes in iOS.
|
|
39
|
+
3. Use a more readable tab size.
|
|
40
|
+
4. Use the user's configured `sans` font-family by default.
|
|
41
|
+
*/
|
|
42
|
+
:where(.fr_widget-root) {
|
|
43
|
+
line-height: 1.5; /* 1 */
|
|
44
|
+
-webkit-text-size-adjust: 100%; /* 2 */
|
|
45
|
+
-moz-tab-size: 4; /* 3 */
|
|
46
|
+
-o-tab-size: 4;
|
|
47
|
+
tab-size: 4; /* 3 */
|
|
48
|
+
font-family: 'Open Sans', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI',
|
|
49
|
+
Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', Segoe UI Emoji,
|
|
50
|
+
Segoe UI Symbol, Noto Color Emoji; /* 4 */
|
|
51
|
+
}
|
|
52
|
+
/*
|
|
53
|
+
1. Add the correct height in Firefox.
|
|
54
|
+
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
|
|
55
|
+
3. Ensure horizontal rules are visible by default.
|
|
56
|
+
*/
|
|
57
|
+
:where(.fr_widget-root) hr {
|
|
58
|
+
height: 0; /* 1 */
|
|
59
|
+
color: inherit; /* 2 */
|
|
60
|
+
border-top-width: 1px; /* 3 */
|
|
61
|
+
}
|
|
62
|
+
/*
|
|
63
|
+
Add the correct text decoration in Chrome, Edge, and Safari.
|
|
64
|
+
*/
|
|
65
|
+
:where(.fr_widget-root) abbr:where([title]) {
|
|
66
|
+
-webkit-text-decoration: underline dotted;
|
|
67
|
+
text-decoration: underline dotted;
|
|
68
|
+
}
|
|
69
|
+
/*
|
|
70
|
+
Remove the default font size and weight for headings.
|
|
71
|
+
*/
|
|
72
|
+
:where(.fr_widget-root) h1,
|
|
73
|
+
:where(.fr_widget-root) h2,
|
|
74
|
+
:where(.fr_widget-root) h3,
|
|
75
|
+
:where(.fr_widget-root) h4,
|
|
76
|
+
:where(.fr_widget-root) h5,
|
|
77
|
+
:where(.fr_widget-root) h6 {
|
|
78
|
+
font-size: inherit;
|
|
79
|
+
font-weight: inherit;
|
|
80
|
+
}
|
|
81
|
+
/*
|
|
82
|
+
Base link color when inside of localized content.
|
|
83
|
+
*/
|
|
84
|
+
:where(.fr_widget-root) a {
|
|
85
|
+
--tw-text-opacity: 1;
|
|
86
|
+
color: rgb(37 99 235 / var(--tw-text-opacity));
|
|
87
|
+
}
|
|
88
|
+
:where(.tw_dark) a {
|
|
89
|
+
--tw-text-opacity: 1;
|
|
90
|
+
color: rgb(96 165 250 / var(--tw-text-opacity));
|
|
91
|
+
}
|
|
92
|
+
/*
|
|
93
|
+
Add the correct font weight in Edge and Safari.
|
|
94
|
+
*/
|
|
95
|
+
:where(.fr_widget-root) b,
|
|
96
|
+
:where(.fr_widget-root) strong {
|
|
97
|
+
font-weight: bolder;
|
|
98
|
+
}
|
|
99
|
+
/*
|
|
100
|
+
1. Use the user's configured `mono` font family by default.
|
|
101
|
+
2. Correct the odd `em` font sizing in all browsers.
|
|
102
|
+
*/
|
|
103
|
+
:where(.fr_widget-root) code,
|
|
104
|
+
:where(.fr_widget-root) kbd,
|
|
105
|
+
:where(.fr_widget-root) samp,
|
|
106
|
+
:where(.fr_widget-root) pre {
|
|
107
|
+
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono',
|
|
108
|
+
'Courier New', monospace; /* 1 */
|
|
109
|
+
font-size: 1em; /* 2 */
|
|
110
|
+
}
|
|
111
|
+
/*
|
|
112
|
+
Add the correct font size in all browsers.
|
|
113
|
+
*/
|
|
114
|
+
:where(.fr_widget-root) small {
|
|
115
|
+
font-size: 80%;
|
|
116
|
+
}
|
|
117
|
+
/*
|
|
118
|
+
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
|
|
119
|
+
*/
|
|
120
|
+
:where(.fr_widget-root) sub,
|
|
121
|
+
:where(.fr_widget-root) sup {
|
|
122
|
+
font-size: 75%;
|
|
123
|
+
line-height: 0;
|
|
124
|
+
position: relative;
|
|
125
|
+
vertical-align: baseline;
|
|
126
|
+
}
|
|
127
|
+
:where(.fr_widget-root) sub {
|
|
128
|
+
bottom: -0.25em;
|
|
129
|
+
}
|
|
130
|
+
:where(.fr_widget-root) sup {
|
|
131
|
+
top: -0.5em;
|
|
132
|
+
}
|
|
133
|
+
/*
|
|
134
|
+
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
|
|
135
|
+
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
|
|
136
|
+
3. Remove gaps between table borders by default.
|
|
137
|
+
*/
|
|
138
|
+
:where(.fr_widget-root) table {
|
|
139
|
+
text-indent: 0; /* 1 */
|
|
140
|
+
border-color: inherit; /* 2 */
|
|
141
|
+
border-collapse: collapse; /* 3 */
|
|
142
|
+
}
|
|
143
|
+
/*
|
|
144
|
+
1. Change the font styles in all browsers.
|
|
145
|
+
2. Remove the margin in Firefox and Safari.
|
|
146
|
+
3. Remove default padding in all browsers.
|
|
147
|
+
*/
|
|
148
|
+
:where(.fr_widget-root) button,
|
|
149
|
+
:where(.fr_widget-root) input,
|
|
150
|
+
:where(.fr_widget-root) optgroup,
|
|
151
|
+
:where(.fr_widget-root) select,
|
|
152
|
+
:where(.fr_widget-root) textarea {
|
|
153
|
+
font-family: inherit; /* 1 */
|
|
154
|
+
font-size: 100%; /* 1 */
|
|
155
|
+
line-height: inherit; /* 1 */
|
|
156
|
+
color: inherit; /* 1 */
|
|
157
|
+
margin: 0; /* 2 */
|
|
158
|
+
padding: 0; /* 3 */
|
|
159
|
+
}
|
|
160
|
+
/*
|
|
161
|
+
Remove the inheritance of text transform in Edge and Firefox.
|
|
162
|
+
*/
|
|
163
|
+
:where(.fr_widget-root) button,
|
|
164
|
+
:where(.fr_widget-root) select {
|
|
165
|
+
text-transform: none;
|
|
166
|
+
}
|
|
167
|
+
/*
|
|
168
|
+
1. Correct the inability to style clickable types in iOS and Safari.
|
|
169
|
+
2. Remove default button styles.
|
|
170
|
+
*/
|
|
171
|
+
:where(.fr_widget-root) button,
|
|
172
|
+
:where(.fr_widget-root) [type='button'],
|
|
173
|
+
:where(.fr_widget-root) [type='reset'],
|
|
174
|
+
:where(.fr_widget-root) [type='submit'] {
|
|
175
|
+
-webkit-appearance: button; /* 1 */
|
|
176
|
+
background-color: transparent; /* 2 */
|
|
177
|
+
background-image: none; /* 2 */
|
|
178
|
+
}
|
|
179
|
+
/*
|
|
180
|
+
Use the modern Firefox focus style for all focusable elements.
|
|
181
|
+
*/
|
|
182
|
+
:where(.fr_widget-root) :-moz-focusring {
|
|
183
|
+
outline: auto;
|
|
184
|
+
}
|
|
185
|
+
/*
|
|
186
|
+
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
|
|
187
|
+
*/
|
|
188
|
+
:where(.fr_widget-root) :-moz-ui-invalid {
|
|
189
|
+
box-shadow: none;
|
|
190
|
+
}
|
|
191
|
+
/*
|
|
192
|
+
Add the correct vertical alignment in Chrome and Firefox.
|
|
193
|
+
*/
|
|
194
|
+
:where(.fr_widget-root) progress {
|
|
195
|
+
vertical-align: baseline;
|
|
196
|
+
}
|
|
197
|
+
/*
|
|
198
|
+
Correct the cursor style of increment and decrement buttons in Safari.
|
|
199
|
+
*/
|
|
200
|
+
:where(.fr_widget-root) ::-webkit-inner-spin-button,
|
|
201
|
+
:where(.fr_widget-root) ::-webkit-outer-spin-button {
|
|
202
|
+
height: auto;
|
|
203
|
+
}
|
|
204
|
+
/*
|
|
205
|
+
1. Correct the odd appearance in Chrome and Safari.
|
|
206
|
+
2. Correct the outline style in Safari.
|
|
207
|
+
*/
|
|
208
|
+
:where(.fr_widget-root) [type='search'] {
|
|
209
|
+
-webkit-appearance: textfield; /* 1 */
|
|
210
|
+
outline-offset: -2px; /* 2 */
|
|
211
|
+
}
|
|
212
|
+
/*
|
|
213
|
+
Remove the inner padding in Chrome and Safari on macOS.
|
|
214
|
+
*/
|
|
215
|
+
:where(.fr_widget-root) ::-webkit-search-decoration {
|
|
216
|
+
-webkit-appearance: none;
|
|
217
|
+
}
|
|
218
|
+
/*
|
|
219
|
+
1. Correct the inability to style clickable types in iOS and Safari.
|
|
220
|
+
2. Change font properties to `inherit` in Safari.
|
|
221
|
+
*/
|
|
222
|
+
:where(.fr_widget-root) ::-webkit-file-upload-button {
|
|
223
|
+
-webkit-appearance: button; /* 1 */
|
|
224
|
+
font: inherit; /* 2 */
|
|
225
|
+
}
|
|
226
|
+
/*
|
|
227
|
+
Add the correct display in Chrome and Safari.
|
|
228
|
+
*/
|
|
229
|
+
:where(.fr_widget-root) summary {
|
|
230
|
+
display: list-item;
|
|
231
|
+
}
|
|
232
|
+
/*
|
|
233
|
+
Removes the default spacing and border for appropriate elements.
|
|
234
|
+
*/
|
|
235
|
+
:where(.fr_widget-root) blockquote,
|
|
236
|
+
:where(.fr_widget-root) dl,
|
|
237
|
+
:where(.fr_widget-root) dd,
|
|
238
|
+
:where(.fr_widget-root) h1,
|
|
239
|
+
:where(.fr_widget-root) h2,
|
|
240
|
+
:where(.fr_widget-root) h3,
|
|
241
|
+
:where(.fr_widget-root) h4,
|
|
242
|
+
:where(.fr_widget-root) h5,
|
|
243
|
+
:where(.fr_widget-root) h6,
|
|
244
|
+
:where(.fr_widget-root) hr,
|
|
245
|
+
:where(.fr_widget-root) figure,
|
|
246
|
+
:where(.fr_widget-root) p,
|
|
247
|
+
:where(.fr_widget-root) pre {
|
|
248
|
+
margin: 0;
|
|
249
|
+
}
|
|
250
|
+
:where(.fr_widget-root) fieldset {
|
|
251
|
+
margin: 0;
|
|
252
|
+
padding: 0;
|
|
253
|
+
}
|
|
254
|
+
:where(.fr_widget-root) legend {
|
|
255
|
+
padding: 0;
|
|
256
|
+
}
|
|
257
|
+
:where(.fr_widget-root) ol,
|
|
258
|
+
:where(.fr_widget-root) ul,
|
|
259
|
+
:where(.fr_widget-root) menu {
|
|
260
|
+
list-style: none;
|
|
261
|
+
margin: 0;
|
|
262
|
+
padding: 0;
|
|
263
|
+
}
|
|
264
|
+
/*
|
|
265
|
+
Prevent resizing textareas horizontally by default.
|
|
266
|
+
*/
|
|
267
|
+
:where(.fr_widget-root) textarea {
|
|
268
|
+
resize: vertical;
|
|
269
|
+
}
|
|
270
|
+
/*
|
|
271
|
+
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
|
|
272
|
+
2. Set the default placeholder color to the user's configured gray 400 color.
|
|
273
|
+
*/
|
|
274
|
+
:where(.fr_widget-root) input::-moz-placeholder,
|
|
275
|
+
textarea::-moz-placeholder {
|
|
276
|
+
opacity: 1; /* 1 */
|
|
277
|
+
color: #9ca3af; /* 2 */
|
|
278
|
+
}
|
|
279
|
+
:where(.fr_widget-root) input::-moz-placeholder, :where(.fr_widget-root) textarea::-moz-placeholder {
|
|
280
|
+
opacity: 1; /* 1 */
|
|
281
|
+
color: #9ca3af; /* 2 */
|
|
282
|
+
}
|
|
283
|
+
:where(.fr_widget-root) input::placeholder,
|
|
284
|
+
:where(.fr_widget-root) textarea::placeholder {
|
|
285
|
+
opacity: 1; /* 1 */
|
|
286
|
+
color: #9ca3af; /* 2 */
|
|
287
|
+
}
|
|
288
|
+
/*
|
|
289
|
+
Set the default cursor for buttons.
|
|
290
|
+
*/
|
|
291
|
+
:where(.fr_widget-root) button,
|
|
292
|
+
:where(.fr_widget-root) [role='button'] {
|
|
293
|
+
cursor: pointer;
|
|
294
|
+
}
|
|
295
|
+
/*
|
|
296
|
+
Make sure disabled buttons don't get the pointer cursor.
|
|
297
|
+
*/
|
|
298
|
+
:where(.fr_widget-root) :disabled {
|
|
299
|
+
cursor: default;
|
|
300
|
+
}
|
|
301
|
+
/*
|
|
302
|
+
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
|
|
303
|
+
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
|
|
304
|
+
This can trigger a poorly considered lint error in some tools but is included by design.
|
|
305
|
+
*/
|
|
306
|
+
:where(.fr_widget-root) img,
|
|
307
|
+
:where(.fr_widget-root) svg,
|
|
308
|
+
:where(.fr_widget-root) video,
|
|
309
|
+
:where(.fr_widget-root) canvas,
|
|
310
|
+
:where(.fr_widget-root) audio,
|
|
311
|
+
:where(.fr_widget-root) iframe,
|
|
312
|
+
:where(.fr_widget-root) embed,
|
|
313
|
+
:where(.fr_widget-root) object {
|
|
314
|
+
display: block; /* 1 */
|
|
315
|
+
vertical-align: middle; /* 2 */
|
|
316
|
+
}
|
|
317
|
+
/*
|
|
318
|
+
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
|
|
319
|
+
*/
|
|
320
|
+
:where(.fr_widget-root) img,
|
|
321
|
+
:where(.fr_widget-root) video {
|
|
322
|
+
max-width: 100%;
|
|
323
|
+
height: auto;
|
|
324
|
+
}
|
|
325
|
+
/*
|
|
326
|
+
Ensure the default browser behavior of the `hidden` attribute.
|
|
327
|
+
*/
|
|
328
|
+
:where(.fr_widget-root) [hidden] {
|
|
329
|
+
display: none;
|
|
330
|
+
}
|
|
331
|
+
:where(.fr_widget-root) *,
|
|
332
|
+
:where(.fr_widget-root) ::before,
|
|
333
|
+
:where(.fr_widget-root) ::after {
|
|
334
|
+
--tw-translate-x: 0;
|
|
335
|
+
--tw-translate-y: 0;
|
|
336
|
+
--tw-rotate: 0;
|
|
337
|
+
--tw-skew-x: 0;
|
|
338
|
+
--tw-skew-y: 0;
|
|
339
|
+
--tw-scale-x: 1;
|
|
340
|
+
--tw-scale-y: 1;
|
|
341
|
+
--tw-pan-x: ;
|
|
342
|
+
--tw-pan-y: ;
|
|
343
|
+
--tw-pinch-zoom: ;
|
|
344
|
+
--tw-scroll-snap-strictness: proximity;
|
|
345
|
+
--tw-ordinal: ;
|
|
346
|
+
--tw-slashed-zero: ;
|
|
347
|
+
--tw-numeric-figure: ;
|
|
348
|
+
--tw-numeric-spacing: ;
|
|
349
|
+
--tw-numeric-fraction: ;
|
|
350
|
+
--tw-ring-inset: ;
|
|
351
|
+
--tw-ring-offset-width: 0px;
|
|
352
|
+
--tw-ring-offset-color: #fff;
|
|
353
|
+
--tw-ring-color: rgb(59 130 246 / 0.5);
|
|
354
|
+
--tw-ring-offset-shadow: 0 0 #0000;
|
|
355
|
+
--tw-ring-shadow: 0 0 #0000;
|
|
356
|
+
--tw-shadow: 0 0 #0000;
|
|
357
|
+
--tw-shadow-colored: 0 0 #0000;
|
|
358
|
+
--tw-blur: ;
|
|
359
|
+
--tw-brightness: ;
|
|
360
|
+
--tw-contrast: ;
|
|
361
|
+
--tw-grayscale: ;
|
|
362
|
+
--tw-hue-rotate: ;
|
|
363
|
+
--tw-invert: ;
|
|
364
|
+
--tw-saturate: ;
|
|
365
|
+
--tw-sepia: ;
|
|
366
|
+
--tw-drop-shadow: ;
|
|
367
|
+
--tw-backdrop-blur: ;
|
|
368
|
+
--tw-backdrop-brightness: ;
|
|
369
|
+
--tw-backdrop-contrast: ;
|
|
370
|
+
--tw-backdrop-grayscale: ;
|
|
371
|
+
--tw-backdrop-hue-rotate: ;
|
|
372
|
+
--tw-backdrop-invert: ;
|
|
373
|
+
--tw-backdrop-opacity: ;
|
|
374
|
+
--tw-backdrop-saturate: ;
|
|
375
|
+
--tw-backdrop-sepia: ;
|
|
376
|
+
}
|
|
377
|
+
}/* @import './tailwind.base.css' layer(fr-widget.base); */
|
|
378
|
+
@layer fr-widget.utilities {
|
|
379
|
+
.tw_sr-only {
|
|
380
|
+
position: absolute;
|
|
381
|
+
width: 1px;
|
|
382
|
+
height: 1px;
|
|
383
|
+
padding: 0;
|
|
384
|
+
margin: -1px;
|
|
385
|
+
overflow: hidden;
|
|
386
|
+
clip: rect(0, 0, 0, 0);
|
|
387
|
+
white-space: nowrap;
|
|
388
|
+
border-width: 0;
|
|
389
|
+
}
|
|
390
|
+
.tw_fixed {
|
|
391
|
+
position: fixed;
|
|
392
|
+
}
|
|
393
|
+
.tw_absolute {
|
|
394
|
+
position: absolute;
|
|
395
|
+
}
|
|
396
|
+
.tw_relative {
|
|
397
|
+
position: relative;
|
|
398
|
+
}
|
|
399
|
+
.tw_top-0 {
|
|
400
|
+
top: 0px;
|
|
401
|
+
}
|
|
402
|
+
.tw_left-0 {
|
|
403
|
+
left: 0px;
|
|
404
|
+
}
|
|
405
|
+
.tw_col-start-2 {
|
|
406
|
+
grid-column-start: 2;
|
|
407
|
+
}
|
|
408
|
+
.tw_row-start-2 {
|
|
409
|
+
grid-row-start: 2;
|
|
410
|
+
}
|
|
411
|
+
.tw_my-4 {
|
|
412
|
+
margin-top: 1rem;
|
|
413
|
+
margin-bottom: 1rem;
|
|
414
|
+
}
|
|
415
|
+
.tw_mb-6 {
|
|
416
|
+
margin-bottom: 1.5rem;
|
|
417
|
+
}
|
|
418
|
+
.tw_-mt-5 {
|
|
419
|
+
margin-top: -1.25rem;
|
|
420
|
+
}
|
|
421
|
+
.tw_mb-2 {
|
|
422
|
+
margin-bottom: 0.5rem;
|
|
423
|
+
}
|
|
424
|
+
.tw_ml-10 {
|
|
425
|
+
margin-left: 2.5rem;
|
|
426
|
+
}
|
|
427
|
+
.tw_mb-4 {
|
|
428
|
+
margin-bottom: 1rem;
|
|
429
|
+
}
|
|
430
|
+
.tw_mr-2 {
|
|
431
|
+
margin-right: 0.5rem;
|
|
432
|
+
}
|
|
433
|
+
.tw_ml-1 {
|
|
434
|
+
margin-left: 0.25rem;
|
|
435
|
+
}
|
|
436
|
+
.tw_mt-6 {
|
|
437
|
+
margin-top: 1.5rem;
|
|
438
|
+
}
|
|
439
|
+
.tw_block {
|
|
440
|
+
display: block;
|
|
441
|
+
}
|
|
442
|
+
.tw_inline-block {
|
|
443
|
+
display: inline-block;
|
|
444
|
+
}
|
|
445
|
+
.tw_flex {
|
|
446
|
+
display: flex;
|
|
447
|
+
}
|
|
448
|
+
.tw_grid {
|
|
449
|
+
display: grid;
|
|
450
|
+
}
|
|
451
|
+
.tw_hidden {
|
|
452
|
+
display: none;
|
|
453
|
+
}
|
|
454
|
+
.tw_h-28 {
|
|
455
|
+
height: 7rem;
|
|
456
|
+
}
|
|
457
|
+
.tw_h-full {
|
|
458
|
+
height: 100%;
|
|
459
|
+
}
|
|
460
|
+
.tw_h-32 {
|
|
461
|
+
height: 8rem;
|
|
462
|
+
}
|
|
463
|
+
.tw_h-4 {
|
|
464
|
+
height: 1rem;
|
|
465
|
+
}
|
|
466
|
+
.tw_h-8 {
|
|
467
|
+
height: 2rem;
|
|
468
|
+
}
|
|
469
|
+
.tw_h-24 {
|
|
470
|
+
height: 6rem;
|
|
471
|
+
}
|
|
472
|
+
.tw_min-h-full {
|
|
473
|
+
min-height: 100%;
|
|
474
|
+
}
|
|
475
|
+
.tw_w-full {
|
|
476
|
+
width: 100%;
|
|
477
|
+
}
|
|
478
|
+
.tw_w-28 {
|
|
479
|
+
width: 7rem;
|
|
480
|
+
}
|
|
481
|
+
.tw_w-auto {
|
|
482
|
+
width: auto;
|
|
483
|
+
}
|
|
484
|
+
.tw_w-4 {
|
|
485
|
+
width: 1rem;
|
|
486
|
+
}
|
|
487
|
+
.tw_w-8 {
|
|
488
|
+
width: 2rem;
|
|
489
|
+
}
|
|
490
|
+
.tw_w-24 {
|
|
491
|
+
width: 6rem;
|
|
492
|
+
}
|
|
493
|
+
.tw_flex-1 {
|
|
494
|
+
flex: 1 1 0%;
|
|
495
|
+
}
|
|
496
|
+
@keyframes tw_spin {
|
|
497
|
+
to {
|
|
498
|
+
transform: rotate(360deg);
|
|
499
|
+
}
|
|
500
|
+
}
|
|
501
|
+
.tw_animate-spin {
|
|
502
|
+
animation: tw_spin 1s linear infinite;
|
|
503
|
+
}
|
|
504
|
+
.tw_list-disc {
|
|
505
|
+
list-style-type: disc;
|
|
506
|
+
}
|
|
507
|
+
.tw_grid-cols-\[2\.5em_1fr\] {
|
|
508
|
+
grid-template-columns: 2.5em 1fr;
|
|
509
|
+
}
|
|
510
|
+
.tw_grid-cols-\[1\.5em_1fr\] {
|
|
511
|
+
grid-template-columns: 1.5em 1fr;
|
|
512
|
+
}
|
|
513
|
+
.tw_grid-cols-\[2em_1fr\] {
|
|
514
|
+
grid-template-columns: 2em 1fr;
|
|
515
|
+
}
|
|
516
|
+
.tw_grid-cols-4 {
|
|
517
|
+
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
518
|
+
}
|
|
519
|
+
.tw_grid-cols-3 {
|
|
520
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
521
|
+
}
|
|
522
|
+
.tw_grid-cols-2 {
|
|
523
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
524
|
+
}
|
|
525
|
+
.tw_grid-cols-1 {
|
|
526
|
+
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
527
|
+
}
|
|
528
|
+
.tw_flex-wrap {
|
|
529
|
+
flex-wrap: wrap;
|
|
530
|
+
}
|
|
531
|
+
.tw_justify-center {
|
|
532
|
+
justify-content: center;
|
|
533
|
+
}
|
|
534
|
+
.tw_justify-items-stretch {
|
|
535
|
+
justify-items: stretch;
|
|
536
|
+
}
|
|
537
|
+
.tw_gap-4 {
|
|
538
|
+
gap: 1rem;
|
|
539
|
+
}
|
|
540
|
+
.tw_rounded-full {
|
|
541
|
+
border-radius: 9999px;
|
|
542
|
+
}
|
|
543
|
+
.\!tw_rounded-r-none {
|
|
544
|
+
border-top-right-radius: 0px !important;
|
|
545
|
+
border-bottom-right-radius: 0px !important;
|
|
546
|
+
}
|
|
547
|
+
.tw_border-0 {
|
|
548
|
+
border-width: 0px;
|
|
549
|
+
}
|
|
550
|
+
.tw_border {
|
|
551
|
+
border-width: 1px;
|
|
552
|
+
}
|
|
553
|
+
.tw_border-4 {
|
|
554
|
+
border-width: 4px;
|
|
555
|
+
}
|
|
556
|
+
.tw_border-b {
|
|
557
|
+
border-bottom-width: 1px;
|
|
558
|
+
}
|
|
559
|
+
.\!tw_border-r-0 {
|
|
560
|
+
border-right-width: 0px !important;
|
|
561
|
+
}
|
|
562
|
+
.tw_border-secondary-light {
|
|
563
|
+
--tw-border-opacity: 1;
|
|
564
|
+
border-color: rgb(209 213 219 / var(--tw-border-opacity));
|
|
565
|
+
}
|
|
566
|
+
.tw_border-transparent {
|
|
567
|
+
border-color: transparent;
|
|
568
|
+
}
|
|
569
|
+
.tw_bg-background-light {
|
|
570
|
+
--tw-bg-opacity: 1;
|
|
571
|
+
background-color: rgb(241 245 249 / var(--tw-bg-opacity));
|
|
572
|
+
}
|
|
573
|
+
.tw_bg-body-light {
|
|
574
|
+
--tw-bg-opacity: 1;
|
|
575
|
+
background-color: rgb(51 65 85 / var(--tw-bg-opacity));
|
|
576
|
+
}
|
|
577
|
+
.tw_fill-current {
|
|
578
|
+
fill: currentColor;
|
|
579
|
+
}
|
|
580
|
+
.tw_p-6 {
|
|
581
|
+
padding: 1.5rem;
|
|
582
|
+
}
|
|
583
|
+
.tw_py-4 {
|
|
584
|
+
padding-top: 1rem;
|
|
585
|
+
padding-bottom: 1rem;
|
|
586
|
+
}
|
|
587
|
+
.tw_pt-10 {
|
|
588
|
+
padding-top: 2.5rem;
|
|
589
|
+
}
|
|
590
|
+
.tw_pb-6 {
|
|
591
|
+
padding-bottom: 1.5rem;
|
|
592
|
+
}
|
|
593
|
+
.tw_text-center {
|
|
594
|
+
text-align: center;
|
|
595
|
+
}
|
|
596
|
+
.tw_text-right {
|
|
597
|
+
text-align: right;
|
|
598
|
+
}
|
|
599
|
+
.tw_text-base {
|
|
600
|
+
font-size: 0.9375rem;
|
|
601
|
+
line-height: 1.25;
|
|
602
|
+
}
|
|
603
|
+
.tw_text-sm {
|
|
604
|
+
font-size: 0.875rem;
|
|
605
|
+
line-height: 1.25;
|
|
606
|
+
}
|
|
607
|
+
.tw_text-4xl {
|
|
608
|
+
font-size: 2.25rem;
|
|
609
|
+
line-height: 2.5rem;
|
|
610
|
+
}
|
|
611
|
+
.tw_font-light {
|
|
612
|
+
font-weight: 300;
|
|
613
|
+
}
|
|
614
|
+
.tw_font-bold {
|
|
615
|
+
font-weight: 700;
|
|
616
|
+
}
|
|
617
|
+
.tw_text-primary-light {
|
|
618
|
+
--tw-text-opacity: 1;
|
|
619
|
+
color: rgb(2 122 184 / var(--tw-text-opacity));
|
|
620
|
+
}
|
|
621
|
+
.tw_text-gray-400 {
|
|
622
|
+
--tw-text-opacity: 1;
|
|
623
|
+
color: rgb(156 163 175 / var(--tw-text-opacity));
|
|
624
|
+
}
|
|
625
|
+
.tw_text-secondary-dark {
|
|
626
|
+
--tw-text-opacity: 1;
|
|
627
|
+
color: rgb(55 65 81 / var(--tw-text-opacity));
|
|
628
|
+
}
|
|
629
|
+
.tw_text-link-dark {
|
|
630
|
+
--tw-text-opacity: 1;
|
|
631
|
+
color: rgb(37 99 235 / var(--tw-text-opacity));
|
|
632
|
+
}
|
|
633
|
+
.tw_text-error-dark {
|
|
634
|
+
--tw-text-opacity: 1;
|
|
635
|
+
color: rgb(153 27 27 / var(--tw-text-opacity));
|
|
636
|
+
}
|
|
637
|
+
.tw_outline-none {
|
|
638
|
+
outline: 2px solid transparent;
|
|
639
|
+
outline-offset: 2px;
|
|
640
|
+
}
|
|
641
|
+
.tw_focusable-element {
|
|
642
|
+
outline-color: rgba(126, 34, 206, 0.30000000000000004);
|
|
643
|
+
outline-offset: 0;
|
|
644
|
+
outline-style: solid;
|
|
645
|
+
outline-width: 0;
|
|
646
|
+
transition: background-color ease-in-out 0.15s, outline-color ease-in-out 0.2s, outline-offset ease-in-out 0.1s;
|
|
647
|
+
}
|
|
648
|
+
.tw_focusable-element:focus {
|
|
649
|
+
outline-offset: 0;
|
|
650
|
+
outline-width: 3px;
|
|
651
|
+
outline-color: rgba(126, 34, 206, 0.9);
|
|
652
|
+
}
|
|
653
|
+
.tw_focusable-element:active {
|
|
654
|
+
outline-offset: 2px;
|
|
655
|
+
outline-width: 4px;
|
|
656
|
+
}
|
|
657
|
+
.tw_input-spacing {
|
|
658
|
+
margin-bottom: 1rem;
|
|
659
|
+
}
|
|
660
|
+
.tw_primary-header {
|
|
661
|
+
color: #334155;
|
|
662
|
+
font-size: 2rem;
|
|
663
|
+
font-weight: 300;
|
|
664
|
+
margin-bottom: 1rem;
|
|
665
|
+
text-align: center;
|
|
666
|
+
}
|
|
667
|
+
.tw_secondary-header {
|
|
668
|
+
font-weight: 500;
|
|
669
|
+
font-size: 0.9375rem;
|
|
670
|
+
margin-bottom: 1rem;
|
|
671
|
+
}
|
|
672
|
+
}
|
|
673
|
+
@layer fr-widget.components {
|
|
674
|
+
.tw_alert {
|
|
675
|
+
background-color: #f1f5f9;
|
|
676
|
+
border-color: hsl(210, 40%, 86.5%);
|
|
677
|
+
border-radius: 0.25rem;
|
|
678
|
+
border-width: 1px;
|
|
679
|
+
color: #000;
|
|
680
|
+
font-size: 0.9375rem;
|
|
681
|
+
margin-bottom: 1.5rem;
|
|
682
|
+
padding: 1rem;
|
|
683
|
+
}
|
|
684
|
+
.tw_alert:focus {
|
|
685
|
+
border-radius: 0.25rem;
|
|
686
|
+
outline-color: rgba(126, 34, 206, 0.9);
|
|
687
|
+
outline-offset: 2px;
|
|
688
|
+
outline-style: solid;
|
|
689
|
+
outline-width: 3px;
|
|
690
|
+
}
|
|
691
|
+
.tw_alert-error {
|
|
692
|
+
background-color: #fecaca;
|
|
693
|
+
border-color: #991b1b;
|
|
694
|
+
}
|
|
695
|
+
.tw_alert-error svg {
|
|
696
|
+
color: #991b1b;
|
|
697
|
+
fill: currentColor;
|
|
698
|
+
}
|
|
699
|
+
.tw_alert-info {
|
|
700
|
+
background-color: hsl(200.39999999999998, 97.8%, 69.3%);
|
|
701
|
+
border-color: #027AB8;
|
|
702
|
+
}
|
|
703
|
+
.tw_alert-info svg {
|
|
704
|
+
color: #334155;
|
|
705
|
+
fill: currentColor;
|
|
706
|
+
}
|
|
707
|
+
.tw_alert-success {
|
|
708
|
+
background-color: #bbf7d0;
|
|
709
|
+
border-color: #166534;
|
|
710
|
+
}
|
|
711
|
+
.tw_alert-success svg {
|
|
712
|
+
color: #166534;
|
|
713
|
+
fill: currentColor;
|
|
714
|
+
}
|
|
715
|
+
.tw_alert-warning {
|
|
716
|
+
background-color: #fef08a;
|
|
717
|
+
border-color: #854d0e;
|
|
718
|
+
}
|
|
719
|
+
.tw_alert-warning svg {
|
|
720
|
+
color: #854d0e;
|
|
721
|
+
fill: currentColor;
|
|
722
|
+
}
|
|
723
|
+
.tw_button-base {
|
|
724
|
+
border: 1px solid;
|
|
725
|
+
border-radius: 0.25rem;
|
|
726
|
+
font-size: 0.9375rem;
|
|
727
|
+
outline-offset: 0;
|
|
728
|
+
position: relative;
|
|
729
|
+
line-height: 1.5;
|
|
730
|
+
padding: 0.75rem 1.5rem;
|
|
731
|
+
z-index: 0;
|
|
732
|
+
}
|
|
733
|
+
.tw_button-base:focus {
|
|
734
|
+
outline-offset: 2px;
|
|
735
|
+
}
|
|
736
|
+
.tw_button-base:active {
|
|
737
|
+
outline-offset: 3px;
|
|
738
|
+
}
|
|
739
|
+
.tw_button-base::before {
|
|
740
|
+
background: black;
|
|
741
|
+
outline: 1px solid black;
|
|
742
|
+
border-radius: 0.25rem;
|
|
743
|
+
content: "";
|
|
744
|
+
display: block;
|
|
745
|
+
height: 100%;
|
|
746
|
+
left: 0;
|
|
747
|
+
position: absolute;
|
|
748
|
+
opacity: 0;
|
|
749
|
+
top: 0;
|
|
750
|
+
transition: opacity 0.25s;
|
|
751
|
+
width: 100%;
|
|
752
|
+
z-index: -1;
|
|
753
|
+
}
|
|
754
|
+
.tw_button-base:hover::before, .tw_button-base:focus::before {
|
|
755
|
+
opacity: 0.05;
|
|
756
|
+
}
|
|
757
|
+
.tw_button-primary {
|
|
758
|
+
border-color: #334155;
|
|
759
|
+
background-color: #334155;
|
|
760
|
+
color: #fff;
|
|
761
|
+
}
|
|
762
|
+
.tw_button-primary:hover::before, .tw_button-primary:focus::before {
|
|
763
|
+
opacity: 0.2;
|
|
764
|
+
}
|
|
765
|
+
.tw_button-outline {
|
|
766
|
+
border-color: #374151;
|
|
767
|
+
}
|
|
768
|
+
.tw_button-secondary {
|
|
769
|
+
border-color: #d1d5db;
|
|
770
|
+
background-color: #d1d5db;
|
|
771
|
+
color: #000;
|
|
772
|
+
}
|
|
773
|
+
.tw_button-secondary:hover::before, .tw_button-secondary:focus::before {
|
|
774
|
+
opacity: 0.1;
|
|
775
|
+
}
|
|
776
|
+
.tw_checkbox-input {
|
|
777
|
+
accent-color: #334155;
|
|
778
|
+
border-radius: 0.25rem;
|
|
779
|
+
flex: 1;
|
|
780
|
+
height: 1rem;
|
|
781
|
+
margin-right: 0.25rem;
|
|
782
|
+
position: relative;
|
|
783
|
+
width: 1rem;
|
|
784
|
+
top: 0.25rem;
|
|
785
|
+
}
|
|
786
|
+
.tw_checkbox-input ~ span > .tw_input-error-message {
|
|
787
|
+
display: none;
|
|
788
|
+
}
|
|
789
|
+
.tw_checkbox-input ~ span > .tw_input-info-message {
|
|
790
|
+
display: none;
|
|
791
|
+
}
|
|
792
|
+
.tw_checkbox-input ~ * > p {
|
|
793
|
+
display: none;
|
|
794
|
+
}
|
|
795
|
+
.tw_checkbox-input[aria-invalid="true"] {
|
|
796
|
+
background: no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='rgb(153, 27, 27)' viewBox='0 0 16 16'%3E%3Cpath d='M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z'/%3E%3C/svg%3E");;
|
|
797
|
+
background-color: hsl(210, 40%, 97%);
|
|
798
|
+
background-position: right 0.75rem center;
|
|
799
|
+
background-size: 1rem 1rem;
|
|
800
|
+
}
|
|
801
|
+
.tw_checkbox-input[aria-invalid="true"] ~ * > p {
|
|
802
|
+
display: block;
|
|
803
|
+
}
|
|
804
|
+
.tw_checkbox-input[aria-invalid="true"] ~ button {
|
|
805
|
+
border-color: #991b1b;
|
|
806
|
+
}
|
|
807
|
+
.tw_checkbox-input.tw_checkbox-input[aria-invalid="true"] {
|
|
808
|
+
outline-color: rgba(254, 202, 202, 0.19999999999999996);
|
|
809
|
+
}
|
|
810
|
+
.tw_checkbox-input.tw_checkbox-input[aria-invalid="true"]:focus {
|
|
811
|
+
outline-color: rgba(254, 202, 202, 0.5);
|
|
812
|
+
}
|
|
813
|
+
.tw_checkbox-input[aria-invalid="true"]:focus {
|
|
814
|
+
background-color: hsl(210, 40%, 100%);
|
|
815
|
+
}
|
|
816
|
+
.tw_form-base {}
|
|
817
|
+
.tw_input-base {
|
|
818
|
+
background-color: hsl(210, 40%, 94.2%);
|
|
819
|
+
border: 1px solid #9ca3af;
|
|
820
|
+
border-radius: 0.25rem;
|
|
821
|
+
color: #000;
|
|
822
|
+
font-size: 0.9375rem;
|
|
823
|
+
line-height: 1.5rem;
|
|
824
|
+
padding: 0.75rem;
|
|
825
|
+
}
|
|
826
|
+
.tw_input-base:hover {
|
|
827
|
+
background-color: #f1f5f9;
|
|
828
|
+
}
|
|
829
|
+
.tw_input-base:focus {
|
|
830
|
+
background-color: #f1f5f9;
|
|
831
|
+
}
|
|
832
|
+
.tw_input-base[aria-invalid="true"] {
|
|
833
|
+
border-color: #991b1b;
|
|
834
|
+
background: no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='rgb(153, 27, 27)' viewBox='0 0 16 16'%3E%3Cpath d='M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z'/%3E%3C/svg%3E");;
|
|
835
|
+
background-color: hsl(210, 40%, 94.2%);
|
|
836
|
+
background-position: right 0.75rem center;
|
|
837
|
+
background-size: 1rem 1rem;
|
|
838
|
+
}
|
|
839
|
+
.tw_input-base[aria-invalid="true"] ~ button {
|
|
840
|
+
border-color: #991b1b;
|
|
841
|
+
}
|
|
842
|
+
.tw_input-base.tw_input-base[aria-invalid="true"] {
|
|
843
|
+
outline-color: rgba(254, 202, 202, 0.19999999999999996);
|
|
844
|
+
}
|
|
845
|
+
.tw_input-base.tw_input-base[aria-invalid="true"]:focus {
|
|
846
|
+
outline-color: rgba(153, 27, 27, 0.7);
|
|
847
|
+
background-color: #f1f5f9;
|
|
848
|
+
}
|
|
849
|
+
.tw_input-base[aria-invalid="true"]:hover {
|
|
850
|
+
background-color: #f1f5f9;
|
|
851
|
+
}
|
|
852
|
+
.tw_input-label {
|
|
853
|
+
color: #374151;
|
|
854
|
+
font-size: 0.9375rem;
|
|
855
|
+
}
|
|
856
|
+
.tw_input-error-message {
|
|
857
|
+
color: #991b1b;
|
|
858
|
+
font-size: 0.875rem;
|
|
859
|
+
margin: 0.25rem;
|
|
860
|
+
width: 100%;
|
|
861
|
+
}
|
|
862
|
+
.tw_input-info-message {
|
|
863
|
+
color: #374151;
|
|
864
|
+
font-size: 0.875rem;
|
|
865
|
+
margin: 0.25rem;
|
|
866
|
+
width: 100%;
|
|
867
|
+
}
|
|
868
|
+
.tw_input-info-message.tw_isInvalid {
|
|
869
|
+
color: #991b1b;
|
|
870
|
+
}
|
|
871
|
+
.tw_input-info-message_dark.tw_isInvalid {
|
|
872
|
+
color: #fecaca;
|
|
873
|
+
}
|
|
874
|
+
.tw_link {
|
|
875
|
+
color: #2563eb;
|
|
876
|
+
font-size: 0.9375rem;
|
|
877
|
+
text-decoration: underline;
|
|
878
|
+
}
|
|
879
|
+
.tw_link:hover {
|
|
880
|
+
text-decoration: none;
|
|
881
|
+
}
|
|
882
|
+
.tw_select-base {
|
|
883
|
+
-webkit-appearance: none;
|
|
884
|
+
-moz-appearance: none;
|
|
885
|
+
appearance: none;
|
|
886
|
+
background: no-repeat right 0.75rem center url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgb(55, 65, 81)' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
|
|
887
|
+
background-color: hsl(210, 40%, 94.2%);
|
|
888
|
+
background-size: 16px 12px;
|
|
889
|
+
color: #374151;
|
|
890
|
+
height: calc(3rem + 2px);
|
|
891
|
+
}
|
|
892
|
+
.tw_select-base:hover {
|
|
893
|
+
background-color: hsl(210, 40%, 91.3%);
|
|
894
|
+
}
|
|
895
|
+
.tw_select-base:focus {
|
|
896
|
+
background-color: hsl(210, 40%, 91.3%);
|
|
897
|
+
}
|
|
898
|
+
.tw_select-base[aria-invalid="true"] {
|
|
899
|
+
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgb(55, 65, 81)' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='rgb(153, 27, 27)' viewBox='0 0 16 16'%3E%3Cpath d='M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z'/%3E%3C/svg%3E");;
|
|
900
|
+
background-color: hsl(210, 40%, 94.2%);
|
|
901
|
+
background-position: right 0.75rem center, center right 2.25rem;
|
|
902
|
+
background-size: 16px 12px, 1rem 1rem;
|
|
903
|
+
}
|
|
904
|
+
.tw_spinner {
|
|
905
|
+
vertical-align: -0.125em;
|
|
906
|
+
border: 0.25em solid;
|
|
907
|
+
border-right-color: transparent;
|
|
908
|
+
}
|
|
909
|
+
.tw_containing-box {
|
|
910
|
+
background-color: #f1f5f9;
|
|
911
|
+
border-color: #000;
|
|
912
|
+
border-radius: 0.25rem;
|
|
913
|
+
box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
|
|
914
|
+
padding: 1.5rem 1rem;
|
|
915
|
+
width: 500px;
|
|
916
|
+
}
|
|
917
|
+
.tw_animated-check {
|
|
918
|
+
cursor: pointer;
|
|
919
|
+
font-size: 1.5em;
|
|
920
|
+
height: 1em;
|
|
921
|
+
position: relative;
|
|
922
|
+
width: 1em;
|
|
923
|
+
}
|
|
924
|
+
.tw_animated-check:after {
|
|
925
|
+
border: 3px solid transparent;
|
|
926
|
+
border-left: none;
|
|
927
|
+
border-top: none;
|
|
928
|
+
bottom: 0.45em;
|
|
929
|
+
content: "";
|
|
930
|
+
left: 0.15em;
|
|
931
|
+
overflow: hidden;
|
|
932
|
+
position: absolute;
|
|
933
|
+
transform: rotate(45deg);
|
|
934
|
+
transform-origin: left bottom;
|
|
935
|
+
width: 0.35em;
|
|
936
|
+
will-change: height;
|
|
937
|
+
}
|
|
938
|
+
.tw_animated-check:before {
|
|
939
|
+
border-color: #9ca3af;
|
|
940
|
+
border-radius: 0.25rem;
|
|
941
|
+
border-width: 1px;
|
|
942
|
+
content: "";
|
|
943
|
+
display: block;
|
|
944
|
+
height: 100%;
|
|
945
|
+
outline-color: rgba(126, 34, 206, 0.30000000000000004);
|
|
946
|
+
outline-offset: 0;
|
|
947
|
+
outline-style: solid;
|
|
948
|
+
outline-width: 0;
|
|
949
|
+
position: absolute;
|
|
950
|
+
transition: border-color ease-in-out 0.15s, border-width 250ms cubic-bezier(.4,.0,.23,1), box-shadow ease-in-out 0.15s, outline-color ease-in-out 0.2s, outline-offset ease-in-out 0.1s;
|
|
951
|
+
width: 100%;
|
|
952
|
+
}
|
|
953
|
+
.tw_checkbox-input_animated ~ div > p {
|
|
954
|
+
display: none;
|
|
955
|
+
}
|
|
956
|
+
.tw_checkbox-input_animated[aria-invalid="true"] ~ div > p {
|
|
957
|
+
display: block;
|
|
958
|
+
}
|
|
959
|
+
.tw_checkbox-input_animated:checked + label > span:after {
|
|
960
|
+
animation: tw_check 100ms 250ms cubic-bezier(.4,.0,.23,1) forwards;
|
|
961
|
+
content: "";
|
|
962
|
+
}
|
|
963
|
+
.tw_checkbox-input_animated:checked + label > span:before {
|
|
964
|
+
animation: tw_squish 200ms cubic-bezier(.4,.0,.23,1);
|
|
965
|
+
border-color: #334155;
|
|
966
|
+
border-width: 0.5em;
|
|
967
|
+
}
|
|
968
|
+
.tw_checkbox-input_animated:focus + label > span:before {
|
|
969
|
+
outline-color: rgba(126, 34, 206, 0.9);
|
|
970
|
+
outline-offset: 1px;
|
|
971
|
+
outline-width: 3px;
|
|
972
|
+
}
|
|
973
|
+
.tw_dialog-box {
|
|
974
|
+
background-color: #f1f5f9;
|
|
975
|
+
border: 1px solid #374151;
|
|
976
|
+
bottom: 0;
|
|
977
|
+
border-radius: 0.25rem;
|
|
978
|
+
box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
|
|
979
|
+
height: 100%;
|
|
980
|
+
margin: 0.5rem 0 0 0;
|
|
981
|
+
max-height: 100%;
|
|
982
|
+
max-width: 100%;
|
|
983
|
+
padding: 0px;
|
|
984
|
+
top: 0;
|
|
985
|
+
width: 100%;
|
|
986
|
+
position: fixed;
|
|
987
|
+
}
|
|
988
|
+
.tw_dialog-box_animate {
|
|
989
|
+
opacity: 0;
|
|
990
|
+
top: 75%;
|
|
991
|
+
will-change: top, opacity;
|
|
992
|
+
}
|
|
993
|
+
.tw_dialog-box_animate[open] {
|
|
994
|
+
animation: tw_slideUp 100ms ease-out forwards;
|
|
995
|
+
}
|
|
996
|
+
.tw_dialog-box_animate::backdrop {
|
|
997
|
+
animation: tw_fadeIn 500ms ease forwards;
|
|
998
|
+
background-color: rgba(51, 65, 85, 0.8);
|
|
999
|
+
}
|
|
1000
|
+
.tw_dialog-body {
|
|
1001
|
+
margin: 2.5rem 1.5rem;
|
|
1002
|
+
}
|
|
1003
|
+
.tw_dialog-header {
|
|
1004
|
+
align-items: stretch;
|
|
1005
|
+
background-color: #f1f5f9;
|
|
1006
|
+
border-bottom: 1px solid #9ca3af;
|
|
1007
|
+
border-top-left-radius: 0.25rem;
|
|
1008
|
+
border-top-right-radius: 0.25rem;
|
|
1009
|
+
display: flex;
|
|
1010
|
+
justify-content: center;
|
|
1011
|
+
min-height: 10rem;
|
|
1012
|
+
padding: 2rem 6rem;
|
|
1013
|
+
position: relative;
|
|
1014
|
+
margin-bottom: 2rem;
|
|
1015
|
+
}
|
|
1016
|
+
.tw_dialog-header .tw_dialog-logo {
|
|
1017
|
+
display: inline-flex;
|
|
1018
|
+
height: inherit;
|
|
1019
|
+
}
|
|
1020
|
+
.tw_dialog-logo {
|
|
1021
|
+
background-image: var(--logo-light);
|
|
1022
|
+
background-position: center;
|
|
1023
|
+
background-repeat: no-repeat;
|
|
1024
|
+
background-size: contain;
|
|
1025
|
+
height: 100%;
|
|
1026
|
+
width: 100%;
|
|
1027
|
+
}
|
|
1028
|
+
.tw_dialog-box_medium .tw_dialog-body {
|
|
1029
|
+
margin: 1.5rem 3rem 4rem;
|
|
1030
|
+
}
|
|
1031
|
+
.tw_dialog-box_medium .tw_dialog-header {
|
|
1032
|
+
padding: 2rem 7rem;
|
|
1033
|
+
margin-bottom: 4rem;
|
|
1034
|
+
}
|
|
1035
|
+
.tw_dialog-closing[open] {
|
|
1036
|
+
animation: tw_slideDown 100ms ease-out forwards;
|
|
1037
|
+
display: block;
|
|
1038
|
+
}
|
|
1039
|
+
.tw_dialog-closing::backdrop {
|
|
1040
|
+
animation: tw_fadeOut 500ms ease-out forwards;
|
|
1041
|
+
background-color: rgba(51, 65, 85, 0.8);
|
|
1042
|
+
}
|
|
1043
|
+
.tw_dialog-x {
|
|
1044
|
+
border-radius: 0.25rem;
|
|
1045
|
+
margin-right: 0.5rem;
|
|
1046
|
+
position: absolute;
|
|
1047
|
+
right: 1rem;
|
|
1048
|
+
top: 1.75rem;
|
|
1049
|
+
}
|
|
1050
|
+
.tw_input-floating:not(:-moz-placeholder-shown) {
|
|
1051
|
+
padding-bottom: 0.25rem;
|
|
1052
|
+
padding-top: 1.25rem;
|
|
1053
|
+
}
|
|
1054
|
+
.tw_input-floating:focus, .tw_input-floating:not(:placeholder-shown) {
|
|
1055
|
+
padding-bottom: 0.25rem;
|
|
1056
|
+
padding-top: 1.25rem;
|
|
1057
|
+
}
|
|
1058
|
+
.tw_input-floating::-ms-reveal {
|
|
1059
|
+
display: none;
|
|
1060
|
+
}
|
|
1061
|
+
.tw_input-floating::-moz-placeholder {
|
|
1062
|
+
color: transparent;
|
|
1063
|
+
}
|
|
1064
|
+
.tw_input-floating::placeholder {
|
|
1065
|
+
color: transparent;
|
|
1066
|
+
}
|
|
1067
|
+
.tw_input-floating:not(:-moz-placeholder-shown) ~ label {
|
|
1068
|
+
font-weight: 500;
|
|
1069
|
+
transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
|
|
1070
|
+
}
|
|
1071
|
+
.tw_input-floating:focus ~ label, .tw_input-floating:not(:placeholder-shown) ~ label {
|
|
1072
|
+
font-weight: 500;
|
|
1073
|
+
transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
|
|
1074
|
+
}
|
|
1075
|
+
.tw_input-floating-label {
|
|
1076
|
+
height: calc(3rem + 2px);
|
|
1077
|
+
line-height: 1.5rem;
|
|
1078
|
+
padding: 0.75rem;
|
|
1079
|
+
pointer-events: none;
|
|
1080
|
+
transform-origin: 0 0;
|
|
1081
|
+
transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
|
|
1082
|
+
white-space: nowrap;
|
|
1083
|
+
}
|
|
1084
|
+
.tw_input-stacked-label {
|
|
1085
|
+
display: block;
|
|
1086
|
+
font-weight: bold;
|
|
1087
|
+
line-height: 1.5rem;
|
|
1088
|
+
margin-bottom: 0.25rem;
|
|
1089
|
+
}
|
|
1090
|
+
.tw_select-floating {
|
|
1091
|
+
line-height: 1rem;
|
|
1092
|
+
padding: 1.5rem 2.25rem 0.25rem 0.75rem;
|
|
1093
|
+
}
|
|
1094
|
+
.tw_select-floating-label {
|
|
1095
|
+
font-weight: 500;
|
|
1096
|
+
left: 0px;
|
|
1097
|
+
top: 0px;
|
|
1098
|
+
transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
|
|
1099
|
+
transform-origin: top left;
|
|
1100
|
+
white-space: nowrap;
|
|
1101
|
+
}
|
|
1102
|
+
.tw_animated-radio {
|
|
1103
|
+
position: relative;
|
|
1104
|
+
cursor: pointer;
|
|
1105
|
+
height: 24px;
|
|
1106
|
+
width: 24px;
|
|
1107
|
+
}
|
|
1108
|
+
.tw_animated-radio:after {
|
|
1109
|
+
background-color: #334155;
|
|
1110
|
+
border-radius: 9999px;
|
|
1111
|
+
height: 100%;
|
|
1112
|
+
left: 0;
|
|
1113
|
+
overflow: hidden;
|
|
1114
|
+
position: absolute;
|
|
1115
|
+
top: 0;
|
|
1116
|
+
transform: scale(0);
|
|
1117
|
+
transform-origin: center;
|
|
1118
|
+
width: 100%;
|
|
1119
|
+
will-change: transform;
|
|
1120
|
+
}
|
|
1121
|
+
.tw_animated-radio:before {
|
|
1122
|
+
border-color: #fff;
|
|
1123
|
+
border-radius: 9999px;
|
|
1124
|
+
border-width: 2px;
|
|
1125
|
+
box-shadow: 0 0 0 1px #9ca3af;
|
|
1126
|
+
content: "";
|
|
1127
|
+
cursor: pointer;
|
|
1128
|
+
display: block;
|
|
1129
|
+
height: 100%;
|
|
1130
|
+
position: absolute;
|
|
1131
|
+
transition: border-width 250ms cubic-bezier(.4,.0,.23,1), box-shadow ease-in-out 0.15s;
|
|
1132
|
+
width: 100%;
|
|
1133
|
+
}
|
|
1134
|
+
.tw_radio-input_animated:focus + label > span:before {
|
|
1135
|
+
box-shadow: 0 0 0 4px rgba(126, 34, 206, 0.9) !important;
|
|
1136
|
+
}
|
|
1137
|
+
.tw_radio-input_animated:checked + label > span:after {
|
|
1138
|
+
animation: tw_radio 125ms 150ms cubic-bezier(.4,.0,.23,1) forwards;
|
|
1139
|
+
content: "";
|
|
1140
|
+
}
|
|
1141
|
+
.tw_radio-input_animated:checked + label > span:before {
|
|
1142
|
+
animation: tw_squish 200ms cubic-bezier(.4,.0,.23,1);
|
|
1143
|
+
border-width: 0.5em;
|
|
1144
|
+
}
|
|
1145
|
+
.tw_button-apple {
|
|
1146
|
+
border-color: #d1d5db;
|
|
1147
|
+
background-color: #000;
|
|
1148
|
+
color: #fff;
|
|
1149
|
+
}
|
|
1150
|
+
.tw_button-apple:hover::before, .tw_button-apple:focus::before {
|
|
1151
|
+
opacity: 0.1;
|
|
1152
|
+
}
|
|
1153
|
+
.tw_button-facebook {
|
|
1154
|
+
border-color: #d1d5db;
|
|
1155
|
+
background-color: #1877F2;
|
|
1156
|
+
color: #fff;
|
|
1157
|
+
}
|
|
1158
|
+
.tw_button-facebook:hover::before, .tw_button-facebook:focus::before {
|
|
1159
|
+
opacity: 0.1;
|
|
1160
|
+
}
|
|
1161
|
+
.tw_button-google {
|
|
1162
|
+
border-color: #d1d5db;
|
|
1163
|
+
background-color: #fff;
|
|
1164
|
+
color: #000;
|
|
1165
|
+
}
|
|
1166
|
+
.tw_button-google:hover::before, .tw_button-google:focus::before {
|
|
1167
|
+
opacity: 0.1;
|
|
1168
|
+
}
|
|
1169
|
+
.tw_input-policies {
|
|
1170
|
+
font-size: 0.875rem;
|
|
1171
|
+
}
|
|
1172
|
+
.tw_input-policies p {
|
|
1173
|
+
font-weight: 700;
|
|
1174
|
+
margin: 0.25rem;
|
|
1175
|
+
}
|
|
1176
|
+
.tw_input-policies ul {
|
|
1177
|
+
margin: 0.25rem;
|
|
1178
|
+
}
|
|
1179
|
+
.tw_kba-fieldset {
|
|
1180
|
+
position: relative;
|
|
1181
|
+
border-color: #9ca3af;
|
|
1182
|
+
border-bottom-width: 0;
|
|
1183
|
+
border-top-width: 1px;
|
|
1184
|
+
border-top-style: dashed;
|
|
1185
|
+
padding-top: 1.5rem;
|
|
1186
|
+
}
|
|
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 {
|
|
1198
|
+
border-color: #9ca3af;
|
|
1199
|
+
border-top-width: 1px;
|
|
1200
|
+
content: "";
|
|
1201
|
+
display: block;
|
|
1202
|
+
position: absolute;
|
|
1203
|
+
right: 0;
|
|
1204
|
+
top: -0.1em;
|
|
1205
|
+
width: 45%;
|
|
1206
|
+
}
|
|
1207
|
+
.tw_kba-fieldset:first-of-type:before {
|
|
1208
|
+
border-color: #9ca3af;
|
|
1209
|
+
border-top-width: 1px;
|
|
1210
|
+
content: "";
|
|
1211
|
+
display: block;
|
|
1212
|
+
position: absolute;
|
|
1213
|
+
top: -0.1em;
|
|
1214
|
+
width: 45%;
|
|
1215
|
+
}
|
|
1216
|
+
.tw_kba-fieldset:first-of-type .tw_kba-lock-icon {
|
|
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;
|
|
1226
|
+
justify-content: center;
|
|
1227
|
+
position: absolute;
|
|
1228
|
+
top: -0.75rem;
|
|
1229
|
+
width: 100%;
|
|
1230
|
+
}
|
|
1231
|
+
.tw_kba-lock-icon > svg {
|
|
1232
|
+
color: #9ca3af;
|
|
1233
|
+
fill: currentcolor;
|
|
1234
|
+
top: -0.75rem;
|
|
1235
|
+
width: 3em;
|
|
1236
|
+
}
|
|
1237
|
+
.tw_password-button {
|
|
1238
|
+
align-items: center;
|
|
1239
|
+
background-color: hsl(210, 40%, 94.2%);
|
|
1240
|
+
border-left: 0 !important;
|
|
1241
|
+
border-top-left-radius: 0px !important;
|
|
1242
|
+
border-bottom-left-radius: 0px !important;
|
|
1243
|
+
display: flex;
|
|
1244
|
+
line-height: 1.5rem;
|
|
1245
|
+
padding: 0.25rem 0.75rem;
|
|
1246
|
+
text-align: center;
|
|
1247
|
+
vertical-align: middle;
|
|
1248
|
+
}
|
|
1249
|
+
.tw_password-icon {
|
|
1250
|
+
color: #374151;
|
|
1251
|
+
fill: currentcolor;
|
|
1252
|
+
}
|
|
1253
|
+
}
|
|
1254
|
+
@layer fr-widget.variants {
|
|
1255
|
+
.tw_dark .dark\:tw_alert_dark {
|
|
1256
|
+
background-color: #1e293b;
|
|
1257
|
+
border-color: #000;
|
|
1258
|
+
color: #fff;
|
|
1259
|
+
}
|
|
1260
|
+
.tw_dark .dark\:tw_alert_dark:focus {
|
|
1261
|
+
outline-color: hsla(272.1, 71.7%, 56.5%, 0.9);
|
|
1262
|
+
}
|
|
1263
|
+
.tw_dark .dark\:tw_alert_dark svg {
|
|
1264
|
+
color: #fff;
|
|
1265
|
+
fill: currentColor;
|
|
1266
|
+
}
|
|
1267
|
+
.tw_dark .dark\:tw_alert-error_dark {
|
|
1268
|
+
background-color: #991b1b;
|
|
1269
|
+
border-color: hsl(0, 70%, 28.2%);
|
|
1270
|
+
}
|
|
1271
|
+
.tw_dark .dark\:tw_alert-error_dark svg {
|
|
1272
|
+
color: #fecaca;
|
|
1273
|
+
fill: currentColor;
|
|
1274
|
+
}
|
|
1275
|
+
.tw_dark .dark\:tw_alert-info_dark {
|
|
1276
|
+
background-color: hsl(200.39999999999998, 97.8%, 21.9%);
|
|
1277
|
+
border-color: hsl(215.29999999999995, 25%, 21.3%);
|
|
1278
|
+
}
|
|
1279
|
+
.tw_dark .dark\:tw_alert-info_dark svg {
|
|
1280
|
+
color: hsl(200.39999999999998, 97.8%, 69.3%);
|
|
1281
|
+
fill: currentColor;
|
|
1282
|
+
}
|
|
1283
|
+
.tw_dark .dark\:tw_alert-success_dark {
|
|
1284
|
+
background-color: #166534;
|
|
1285
|
+
border-color: hsl(142.8, 64.2%, 19.3%);
|
|
1286
|
+
}
|
|
1287
|
+
.tw_dark .dark\:tw_alert-success_dark svg {
|
|
1288
|
+
color: #bbf7d0;
|
|
1289
|
+
fill: currentColor;
|
|
1290
|
+
}
|
|
1291
|
+
.tw_dark .dark\:tw_alert-warning_dark {
|
|
1292
|
+
background-color: #854d0e;
|
|
1293
|
+
border-color: hsl(31.80000000000001, 81%, 23.1%);
|
|
1294
|
+
}
|
|
1295
|
+
.tw_dark .dark\:tw_alert-warning_dark svg {
|
|
1296
|
+
color: #fef08a;
|
|
1297
|
+
fill: currentColor;
|
|
1298
|
+
}
|
|
1299
|
+
.tw_dark .dark\:tw_button-primary_dark {
|
|
1300
|
+
border-color: #027AB8;
|
|
1301
|
+
background-color: #027AB8;
|
|
1302
|
+
}
|
|
1303
|
+
.tw_dark .dark\:tw_button-primary_dark:hover::before,.tw_dark .dark\:tw_button-primary_dark:focus::before {
|
|
1304
|
+
opacity: 0.2;
|
|
1305
|
+
}
|
|
1306
|
+
.tw_dark .dark\:tw_button-outline_dark {
|
|
1307
|
+
border-color: #d1d5db;
|
|
1308
|
+
color: #fff;
|
|
1309
|
+
}
|
|
1310
|
+
.tw_dark .dark\:tw_button-outline_dark:hover::before,.tw_dark .dark\:tw_button-outline_dark:focus::before {
|
|
1311
|
+
opacity: 0.3;
|
|
1312
|
+
}
|
|
1313
|
+
.tw_dark .dark\:tw_button-secondary_dark {}
|
|
1314
|
+
.tw_dark .dark\:tw_checkbox-input_dark {
|
|
1315
|
+
accent-color: #027AB8;
|
|
1316
|
+
}
|
|
1317
|
+
.tw_dark .dark\:tw_input-base_dark {
|
|
1318
|
+
background-color: rgba(15, 23, 42, 0.5);
|
|
1319
|
+
border-color: #374151;
|
|
1320
|
+
color: #fff;
|
|
1321
|
+
}
|
|
1322
|
+
.tw_dark .dark\:tw_input-base_dark:focus {
|
|
1323
|
+
background-color: rgba(15, 23, 42, 0.75);
|
|
1324
|
+
}
|
|
1325
|
+
.tw_dark .dark\:tw_input-base_dark:hover {
|
|
1326
|
+
background-color: rgba(15, 23, 42, 0.75);
|
|
1327
|
+
}
|
|
1328
|
+
.tw_dark .dark\:tw_input-base_dark[aria-invalid="true"] {
|
|
1329
|
+
border-color: #fecaca;
|
|
1330
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='rgb(254, 202, 202)' viewBox='0 0 16 16'%3E%3Cpath d='M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z'/%3E%3C/svg%3E");;
|
|
1331
|
+
background-color: rgba(15, 23, 42, 0.5);
|
|
1332
|
+
}
|
|
1333
|
+
.tw_dark .dark\:tw_input-base_dark[aria-invalid="true"]:focus {
|
|
1334
|
+
outline-color: rgba(254, 202, 202, 0.7) !important;
|
|
1335
|
+
background-color: rgba(15, 23, 42, 0.75);
|
|
1336
|
+
}
|
|
1337
|
+
.tw_dark .dark\:tw_input-base_dark[aria-invalid="true"]:hover {
|
|
1338
|
+
background-color: rgba(15, 23, 42, 0.75);
|
|
1339
|
+
}
|
|
1340
|
+
.tw_dark .dark\:tw_input-base_dark[aria-invalid="true"] ~ button {
|
|
1341
|
+
border-color: #fecaca;
|
|
1342
|
+
}
|
|
1343
|
+
.tw_dark .dark\:tw_input-label_dark {
|
|
1344
|
+
color: #d1d5db;
|
|
1345
|
+
}
|
|
1346
|
+
:where(input:-webkit-autofill) + .tw_dark .dark\:tw_input-label_dark {
|
|
1347
|
+
color: #374151;
|
|
1348
|
+
}
|
|
1349
|
+
:where(input:autofill) + .tw_dark .dark\:tw_input-label_dark {
|
|
1350
|
+
color: #374151;
|
|
1351
|
+
}
|
|
1352
|
+
.tw_dark .dark\:tw_input-error-message_dark {
|
|
1353
|
+
color: #fecaca;
|
|
1354
|
+
}
|
|
1355
|
+
.tw_dark .dark\:tw_input-info-message_dark {
|
|
1356
|
+
color: #d1d5db;
|
|
1357
|
+
}
|
|
1358
|
+
.tw_dark .dark\:tw_input-info-message_dark.tw_isInvalid {
|
|
1359
|
+
color: #fecaca;
|
|
1360
|
+
}
|
|
1361
|
+
.tw_dark .dark\:tw_link_dark {
|
|
1362
|
+
color: #60a5fa;
|
|
1363
|
+
}
|
|
1364
|
+
.tw_dark .dark\:tw_select-base_dark {
|
|
1365
|
+
background: no-repeat right 0.75rem center / 16px 12px url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgb(209, 213, 219)' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
|
|
1366
|
+
background-color: rgba(15, 23, 42, 0.5);
|
|
1367
|
+
color: #d1d5db;
|
|
1368
|
+
}
|
|
1369
|
+
.tw_dark .dark\:tw_select-base_dark:hover {
|
|
1370
|
+
background-color: rgba(15, 23, 42, 0.75);
|
|
1371
|
+
}
|
|
1372
|
+
.tw_dark .dark\:tw_select-base_dark:focus {
|
|
1373
|
+
background-color: rgba(15, 23, 42, 0.75);
|
|
1374
|
+
}
|
|
1375
|
+
.tw_dark .dark\:tw_select-base_dark[aria-invalid="true"] {
|
|
1376
|
+
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgb(209, 213, 219)' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='rgb(254, 202, 202)' viewBox='0 0 16 16'%3E%3Cpath d='M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z'/%3E%3C/svg%3E");;
|
|
1377
|
+
background-color: rgba(15, 23, 42, 0.5);
|
|
1378
|
+
background-position: right 0.75rem center, center right 2.25rem;
|
|
1379
|
+
background-size: 16px 12px, 1rem 1rem;
|
|
1380
|
+
}
|
|
1381
|
+
.tw_dark .dark\:tw_containing-box_dark {
|
|
1382
|
+
background-color: #1e293b;
|
|
1383
|
+
}
|
|
1384
|
+
.tw_dark .dark\:tw_checkbox-input_animated_dark:checked + label > span:before {
|
|
1385
|
+
border-color: #027AB8;
|
|
1386
|
+
}
|
|
1387
|
+
.tw_dark .dark\:tw_dialog-box_dark {
|
|
1388
|
+
background-color: #1e293b;
|
|
1389
|
+
border-color: #000;
|
|
1390
|
+
}
|
|
1391
|
+
.tw_dark .dark\:tw_dialog-box_dark::backdrop {
|
|
1392
|
+
background-color: rgba(15, 23, 42, 0.8);
|
|
1393
|
+
}
|
|
1394
|
+
.tw_dark .dark\:tw_dialog-header_dark {
|
|
1395
|
+
background-color: #1e293b;
|
|
1396
|
+
border-bottom-color: #374151;
|
|
1397
|
+
}
|
|
1398
|
+
.tw_dark .dark\:tw_dialog-logo_dark {
|
|
1399
|
+
background-image: var(--logo-dark);
|
|
1400
|
+
}
|
|
1401
|
+
.tw_dark .dark\:tw_input-floating_dark:-webkit-autofill + label {
|
|
1402
|
+
color: #374151 !important;
|
|
1403
|
+
}
|
|
1404
|
+
.tw_dark .dark\:tw_input-floating_dark:autofill + label {
|
|
1405
|
+
color: #374151 !important;
|
|
1406
|
+
}
|
|
1407
|
+
.tw_dark .dark\:tw_animated-radio_dark:before {
|
|
1408
|
+
border-color: #d1d5db;
|
|
1409
|
+
box-shadow: none;
|
|
1410
|
+
}
|
|
1411
|
+
.tw_dark .dark\:tw_animated-radio_dark:after {
|
|
1412
|
+
background-color: #027AB8;
|
|
1413
|
+
}
|
|
1414
|
+
.tw_dark .dark\:tw_radio-input_animated_dark:checked + label > span:before {
|
|
1415
|
+
border-color: #d1d5db;
|
|
1416
|
+
}
|
|
1417
|
+
.tw_dark .dark\:tw_button-apple_dark {
|
|
1418
|
+
border-color: #d1d5db;
|
|
1419
|
+
background-color: #fff;
|
|
1420
|
+
color: #000;
|
|
1421
|
+
}
|
|
1422
|
+
.tw_dark .dark\:tw_button-apple_dark:hover::before,.tw_dark .dark\:tw_button-apple_dark:focus::before {
|
|
1423
|
+
opacity: 0.1;
|
|
1424
|
+
}
|
|
1425
|
+
.tw_dark .dark\:tw_button-facebook_dark {
|
|
1426
|
+
border-color: #d1d5db;
|
|
1427
|
+
background-color: #fff;
|
|
1428
|
+
color: #1877F2;
|
|
1429
|
+
}
|
|
1430
|
+
.tw_dark .dark\:tw_button-facebook_dark:hover::before,.tw_dark .dark\:tw_button-facebook_dark:focus::before {
|
|
1431
|
+
opacity: 0.1;
|
|
1432
|
+
}
|
|
1433
|
+
.tw_dark .dark\:tw_button-google_dark {
|
|
1434
|
+
border-color: #d1d5db;
|
|
1435
|
+
background-color: #fff;
|
|
1436
|
+
color: #000;
|
|
1437
|
+
}
|
|
1438
|
+
.tw_dark .dark\:tw_button-google_dark:hover::before,.tw_dark .dark\:tw_button-google_dark:focus::before {
|
|
1439
|
+
opacity: 0.1;
|
|
1440
|
+
}
|
|
1441
|
+
.tw_dark .dark\:tw_kba-fieldset_dark {
|
|
1442
|
+
border-color: hsl(217.89999999999998, 10.6%, 48.7%);
|
|
1443
|
+
}
|
|
1444
|
+
.tw_dark .dark\:tw_kba-fieldset_dark:after {
|
|
1445
|
+
border-color: hsl(217.89999999999998, 10.6%, 48.7%);
|
|
1446
|
+
}
|
|
1447
|
+
.tw_dark .dark\:tw_kba-fieldset_dark:before {
|
|
1448
|
+
border-color: hsl(217.89999999999998, 10.6%, 48.7%);
|
|
1449
|
+
}
|
|
1450
|
+
.tw_dark .dark\:tw_kba-lock-icon_dark > svg {
|
|
1451
|
+
color: #d1d5db;
|
|
1452
|
+
fill: currentcolor;
|
|
1453
|
+
}
|
|
1454
|
+
.tw_dark .dark\:tw_password-button_dark {
|
|
1455
|
+
background-color: rgba(15, 23, 42, 0.5);
|
|
1456
|
+
}
|
|
1457
|
+
.tw_dark .dark\:tw_password-icon_dark {
|
|
1458
|
+
color: #d1d5db;
|
|
1459
|
+
}
|
|
1460
|
+
.tw_dark .dark\:tw_border-secondary-dark {
|
|
1461
|
+
--tw-border-opacity: 1;
|
|
1462
|
+
border-color: rgb(55 65 81 / var(--tw-border-opacity));
|
|
1463
|
+
}
|
|
1464
|
+
.tw_dark .dark\:tw_bg-background-dark {
|
|
1465
|
+
--tw-bg-opacity: 1;
|
|
1466
|
+
background-color: rgb(30 41 59 / var(--tw-bg-opacity));
|
|
1467
|
+
}
|
|
1468
|
+
.tw_dark .dark\:tw_bg-body-dark {
|
|
1469
|
+
--tw-bg-opacity: 1;
|
|
1470
|
+
background-color: rgb(15 23 42 / var(--tw-bg-opacity));
|
|
1471
|
+
}
|
|
1472
|
+
.tw_dark .dark\:tw_text-secondary-light {
|
|
1473
|
+
--tw-text-opacity: 1;
|
|
1474
|
+
color: rgb(209 213 219 / var(--tw-text-opacity));
|
|
1475
|
+
}
|
|
1476
|
+
.tw_dark .dark\:tw_text-link-light {
|
|
1477
|
+
--tw-text-opacity: 1;
|
|
1478
|
+
color: rgb(96 165 250 / var(--tw-text-opacity));
|
|
1479
|
+
}
|
|
1480
|
+
.tw_dark .dark\:tw_text-white {
|
|
1481
|
+
--tw-text-opacity: 1;
|
|
1482
|
+
color: rgb(255 255 255 / var(--tw-text-opacity));
|
|
1483
|
+
}
|
|
1484
|
+
.tw_dark .dark\:tw_text-error-light {
|
|
1485
|
+
--tw-text-opacity: 1;
|
|
1486
|
+
color: rgb(254 202 202 / var(--tw-text-opacity));
|
|
1487
|
+
}
|
|
1488
|
+
.tw_dark .dark\:tw_focusable-element_dark {
|
|
1489
|
+
outline-color: hsla(272.1, 71.7%, 56.5%, 0.30000000000000004);
|
|
1490
|
+
}
|
|
1491
|
+
.tw_dark .dark\:tw_focusable-element_dark:focus {
|
|
1492
|
+
outline-color: hsla(272.1, 71.7%, 56.5%, 0.9);
|
|
1493
|
+
}
|
|
1494
|
+
.tw_dark .dark\:tw_primary-header_dark {
|
|
1495
|
+
color: #d1d5db;
|
|
1496
|
+
}
|
|
1497
|
+
.tw_dark .dark\:tw_secondary-header_dark {
|
|
1498
|
+
color: #d1d5db;
|
|
1499
|
+
}
|
|
1500
|
+
@media (min-width: 768px) {
|
|
1501
|
+
.md\:tw_h-36 {
|
|
1502
|
+
height: 9rem;
|
|
1503
|
+
}
|
|
1504
|
+
.md\:tw_containing-box_medium {
|
|
1505
|
+
height: -moz-fit-content;
|
|
1506
|
+
height: fit-content;
|
|
1507
|
+
margin: auto 0;
|
|
1508
|
+
padding: 2.5rem 2.5rem;
|
|
1509
|
+
}
|
|
1510
|
+
.md\:tw_dialog-box_medium {
|
|
1511
|
+
height: -moz-fit-content;
|
|
1512
|
+
height: fit-content;
|
|
1513
|
+
margin: auto;
|
|
1514
|
+
max-width: 32rem;
|
|
1515
|
+
padding: 0px;
|
|
1516
|
+
}
|
|
1517
|
+
.md\:tw_dialog-box_medium .tw_dialog-body {
|
|
1518
|
+
margin: 1.5rem 3rem 4rem;
|
|
1519
|
+
}
|
|
1520
|
+
.md\:tw_dialog-box_medium .tw_dialog-header {
|
|
1521
|
+
padding: 2rem 7rem;
|
|
1522
|
+
margin-bottom: 4rem;
|
|
1523
|
+
}
|
|
1524
|
+
.md\:tw_dialog-box_medium .tw_dialog-no-header {
|
|
1525
|
+
padding: 2.5rem 0;
|
|
1526
|
+
}
|
|
1527
|
+
.md\:tw_dialog-x_medium {}
|
|
1528
|
+
.md\:tw_pt-10 {
|
|
1529
|
+
padding-top: 2.5rem;
|
|
1530
|
+
}
|
|
1531
|
+
}
|
|
1532
|
+
}/* Including this here to ensure the animation and keyframes get included from config */
|
|
1533
|
+
@keyframes tw_check {
|
|
1534
|
+
0% {
|
|
1535
|
+
border-color: #fff;
|
|
1536
|
+
height: 0;
|
|
1537
|
+
}
|
|
1538
|
+
100% {
|
|
1539
|
+
border-color: #fff;
|
|
1540
|
+
height: 0.7em;
|
|
1541
|
+
}
|
|
1542
|
+
}
|
|
1543
|
+
.do-not-modify {
|
|
1544
|
+
animation: tw_check 100ms 250ms cubic-bezier(.4,.0,.23,1) forwards;
|
|
1545
|
+
}
|
|
1546
|
+
@keyframes tw_fadeIn {
|
|
1547
|
+
0% {
|
|
1548
|
+
opacity: 0;
|
|
1549
|
+
}
|
|
1550
|
+
100% {
|
|
1551
|
+
opacity: 1;
|
|
1552
|
+
}
|
|
1553
|
+
}
|
|
1554
|
+
.do-not-modify {
|
|
1555
|
+
animation: tw_fadeIn 500ms ease forwards;
|
|
1556
|
+
}
|
|
1557
|
+
@keyframes tw_fadeOut {
|
|
1558
|
+
0% {
|
|
1559
|
+
opacity: 1;
|
|
1560
|
+
}
|
|
1561
|
+
100% {
|
|
1562
|
+
opacity: 0;
|
|
1563
|
+
}
|
|
1564
|
+
}
|
|
1565
|
+
.do-not-modify {
|
|
1566
|
+
animation: tw_fadeOut 500ms ease-out forwards;
|
|
1567
|
+
}
|
|
1568
|
+
@keyframes tw_slideDown {
|
|
1569
|
+
0% {
|
|
1570
|
+
opacity: 1;
|
|
1571
|
+
top: 0%;
|
|
1572
|
+
}
|
|
1573
|
+
50% {
|
|
1574
|
+
opacity: 1;
|
|
1575
|
+
top: 35%;
|
|
1576
|
+
}
|
|
1577
|
+
100% {
|
|
1578
|
+
opacity: 0;
|
|
1579
|
+
top: 50%;
|
|
1580
|
+
}
|
|
1581
|
+
}
|
|
1582
|
+
.do-not-modify {
|
|
1583
|
+
animation: tw_slideDown 100ms ease-out forwards;
|
|
1584
|
+
}
|
|
1585
|
+
@keyframes tw_slideUp {
|
|
1586
|
+
0% {
|
|
1587
|
+
opacity: 0;
|
|
1588
|
+
top: 50%;
|
|
1589
|
+
}
|
|
1590
|
+
50% {
|
|
1591
|
+
opacity: 1;
|
|
1592
|
+
top: 15%;
|
|
1593
|
+
}
|
|
1594
|
+
100% {
|
|
1595
|
+
opacity: 1;
|
|
1596
|
+
top: 0;
|
|
1597
|
+
}
|
|
1598
|
+
}
|
|
1599
|
+
.do-not-modify {
|
|
1600
|
+
animation: tw_slideUp 100ms ease-out forwards;
|
|
1601
|
+
}
|
|
1602
|
+
@keyframes tw_radio {
|
|
1603
|
+
0% {
|
|
1604
|
+
transform: scale(0);
|
|
1605
|
+
}
|
|
1606
|
+
33% {
|
|
1607
|
+
transform: scale(0.5);
|
|
1608
|
+
}
|
|
1609
|
+
80% {
|
|
1610
|
+
transform: scale(0.9);
|
|
1611
|
+
}
|
|
1612
|
+
100% {
|
|
1613
|
+
transform: scale(0.8);
|
|
1614
|
+
}
|
|
1615
|
+
}
|
|
1616
|
+
.do-not-modify {
|
|
1617
|
+
animation: tw_radio 125ms 150ms cubic-bezier(.4,.0,.23,1) forwards;
|
|
1618
|
+
}
|
|
1619
|
+
@keyframes tw_squish {
|
|
1620
|
+
0% {
|
|
1621
|
+
transform: scale(1);
|
|
1622
|
+
}
|
|
1623
|
+
33% {
|
|
1624
|
+
transform: scale(.85);
|
|
1625
|
+
}
|
|
1626
|
+
100% {
|
|
1627
|
+
transform: scale(1);
|
|
1628
|
+
}
|
|
1629
|
+
}
|
|
1630
|
+
.do-not-modify {
|
|
1631
|
+
animation: tw_squish 200ms cubic-bezier(.4,.0,.23,1);
|
|
1632
|
+
}
|