infinity-forge 13.8.5 → 13.8.6
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/dist/ui/atena/presentation/site-configurations/use-site-configurations.d.ts +2 -0
- package/dist/ui/atena/presentation/site-configurations/use-site-configurations.js.map +1 -1
- package/dist/ui/components/form/text-editor/react-quill.css +930 -0
- package/dist/ui/styles/fonts.css +768 -0
- package/dist/ui/styles/reset.css +383 -0
- package/package.json +1 -1
|
@@ -0,0 +1,383 @@
|
|
|
1
|
+
*,
|
|
2
|
+
*::before,
|
|
3
|
+
*::after {
|
|
4
|
+
box-sizing: border-box;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
button,
|
|
8
|
+
a {
|
|
9
|
+
outline: unset !important;
|
|
10
|
+
cursor: pointer;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
html {
|
|
14
|
+
font-family: sans-serif;
|
|
15
|
+
line-height: 1.15;
|
|
16
|
+
-webkit-text-size-adjust: 100%;
|
|
17
|
+
-ms-text-size-adjust: 100%;
|
|
18
|
+
-ms-overflow-style: scrollbar;
|
|
19
|
+
-webkit-tap-highlight-color: transparent;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.row {
|
|
23
|
+
display: flex;
|
|
24
|
+
gap: 15px;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
@-ms-viewport {
|
|
28
|
+
width: device-width;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
article,
|
|
32
|
+
aside,
|
|
33
|
+
dialog,
|
|
34
|
+
figcaption,
|
|
35
|
+
figure,
|
|
36
|
+
footer,
|
|
37
|
+
header,
|
|
38
|
+
hgroup,
|
|
39
|
+
main,
|
|
40
|
+
nav,
|
|
41
|
+
section {
|
|
42
|
+
display: block;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
body {
|
|
46
|
+
margin: 0;
|
|
47
|
+
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif,
|
|
48
|
+
'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
|
|
49
|
+
font-size: 1rem;
|
|
50
|
+
font-weight: normal;
|
|
51
|
+
line-height: 1.5;
|
|
52
|
+
color: #212529;
|
|
53
|
+
text-align: left;
|
|
54
|
+
background-color: #fff;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
[tabindex='-1']:focus {
|
|
58
|
+
outline: none !important;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
hr {
|
|
62
|
+
box-sizing: content-box;
|
|
63
|
+
height: 0;
|
|
64
|
+
overflow: visible;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
h1,
|
|
68
|
+
h2,
|
|
69
|
+
h3,
|
|
70
|
+
h4,
|
|
71
|
+
h5,
|
|
72
|
+
h6 {
|
|
73
|
+
margin-top: 0;
|
|
74
|
+
margin-bottom: 0.5rem;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
p {
|
|
78
|
+
margin-top: 0;
|
|
79
|
+
margin-bottom: 1rem;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
abbr[title],
|
|
83
|
+
abbr[data-original-title] {
|
|
84
|
+
text-decoration: underline;
|
|
85
|
+
-webkit-text-decoration: underline dotted;
|
|
86
|
+
text-decoration: underline dotted;
|
|
87
|
+
cursor: help;
|
|
88
|
+
border-bottom: 0;
|
|
89
|
+
}
|
|
90
|
+
address {
|
|
91
|
+
margin-bottom: 1rem;
|
|
92
|
+
font-style: normal;
|
|
93
|
+
line-height: inherit;
|
|
94
|
+
}
|
|
95
|
+
ol,
|
|
96
|
+
ul,
|
|
97
|
+
dl {
|
|
98
|
+
margin-top: 0;
|
|
99
|
+
margin-bottom: 1rem;
|
|
100
|
+
}
|
|
101
|
+
ol ol,
|
|
102
|
+
ul ul,
|
|
103
|
+
ol ul,
|
|
104
|
+
ul ol {
|
|
105
|
+
margin-bottom: 0;
|
|
106
|
+
}
|
|
107
|
+
dt {
|
|
108
|
+
font-weight: bold;
|
|
109
|
+
}
|
|
110
|
+
dd {
|
|
111
|
+
margin-bottom: 0.5rem;
|
|
112
|
+
margin-left: 0;
|
|
113
|
+
}
|
|
114
|
+
blockquote {
|
|
115
|
+
margin: 0 0 1rem;
|
|
116
|
+
}
|
|
117
|
+
dfn {
|
|
118
|
+
font-style: italic;
|
|
119
|
+
}
|
|
120
|
+
b,
|
|
121
|
+
strong {
|
|
122
|
+
font-weight: bolder;
|
|
123
|
+
}
|
|
124
|
+
small {
|
|
125
|
+
font-size: 80%;
|
|
126
|
+
}
|
|
127
|
+
sub,
|
|
128
|
+
sup {
|
|
129
|
+
position: relative;
|
|
130
|
+
font-size: 75%;
|
|
131
|
+
line-height: 0;
|
|
132
|
+
vertical-align: baseline;
|
|
133
|
+
}
|
|
134
|
+
sub {
|
|
135
|
+
bottom: -0.25em;
|
|
136
|
+
}
|
|
137
|
+
sup {
|
|
138
|
+
top: -0.5em;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
a {
|
|
142
|
+
color: #007bff;
|
|
143
|
+
text-decoration: none;
|
|
144
|
+
background-color: transparent;
|
|
145
|
+
-webkit-text-decoration-skip: objects;
|
|
146
|
+
}
|
|
147
|
+
a:hover {
|
|
148
|
+
color: #0056b3;
|
|
149
|
+
text-decoration: underline;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
a:not([href]):not([tabindex]) {
|
|
153
|
+
text-decoration: none;
|
|
154
|
+
}
|
|
155
|
+
a:not([href]):not([tabindex]):focus,
|
|
156
|
+
a:not([href]):not([tabindex]):hover {
|
|
157
|
+
text-decoration: none;
|
|
158
|
+
}
|
|
159
|
+
a:not([href]):not([tabindex]):focus {
|
|
160
|
+
outline: 0;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
pre,
|
|
164
|
+
code,
|
|
165
|
+
kbd,
|
|
166
|
+
samp {
|
|
167
|
+
font-family: monospace, monospace;
|
|
168
|
+
font-size: 1em;
|
|
169
|
+
}
|
|
170
|
+
pre {
|
|
171
|
+
margin-top: 0;
|
|
172
|
+
|
|
173
|
+
margin-bottom: 1rem;
|
|
174
|
+
overflow: auto;
|
|
175
|
+
-ms-overflow-style: scrollbar;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
figure {
|
|
179
|
+
margin: 0 0 1rem;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
img {
|
|
183
|
+
vertical-align: middle;
|
|
184
|
+
border-style: none;
|
|
185
|
+
}
|
|
186
|
+
svg:not(:root) {
|
|
187
|
+
overflow: hidden;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
a,
|
|
191
|
+
area,
|
|
192
|
+
button,
|
|
193
|
+
[role='button'],
|
|
194
|
+
input:not([type='range']),
|
|
195
|
+
label,
|
|
196
|
+
select,
|
|
197
|
+
summary,
|
|
198
|
+
textarea {
|
|
199
|
+
-ms-touch-action: manipulation;
|
|
200
|
+
touch-action: manipulation;
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
table {
|
|
204
|
+
border-collapse: collapse;
|
|
205
|
+
}
|
|
206
|
+
caption {
|
|
207
|
+
padding-top: 0.75rem;
|
|
208
|
+
padding-bottom: 0.75rem;
|
|
209
|
+
color: #868e96;
|
|
210
|
+
text-align: left;
|
|
211
|
+
caption-side: bottom;
|
|
212
|
+
}
|
|
213
|
+
th {
|
|
214
|
+
text-align: inherit;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
label {
|
|
218
|
+
display: inline-block;
|
|
219
|
+
margin-bottom: 0.5rem;
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
button {
|
|
223
|
+
border-radius: 0;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
button:focus {
|
|
227
|
+
outline: 1px dotted;
|
|
228
|
+
outline: 5px auto -webkit-focus-ring-color;
|
|
229
|
+
}
|
|
230
|
+
input,
|
|
231
|
+
button,
|
|
232
|
+
select,
|
|
233
|
+
optgroup,
|
|
234
|
+
textarea {
|
|
235
|
+
margin: 0;
|
|
236
|
+
font-family: inherit;
|
|
237
|
+
font-size: inherit;
|
|
238
|
+
line-height: inherit;
|
|
239
|
+
}
|
|
240
|
+
button,
|
|
241
|
+
input {
|
|
242
|
+
overflow: visible;
|
|
243
|
+
}
|
|
244
|
+
button,
|
|
245
|
+
select {
|
|
246
|
+
text-transform: none;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
button,
|
|
250
|
+
html [type='button'],
|
|
251
|
+
[type='reset'],
|
|
252
|
+
[type='submit'] {
|
|
253
|
+
-webkit-appearance: button;
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
button::-moz-focus-inner,
|
|
257
|
+
[type='button']::-moz-focus-inner,
|
|
258
|
+
[type='reset']::-moz-focus-inner,
|
|
259
|
+
[type='submit']::-moz-focus-inner {
|
|
260
|
+
padding: 0;
|
|
261
|
+
border-style: none;
|
|
262
|
+
}
|
|
263
|
+
input[type='radio'],
|
|
264
|
+
input[type='checkbox'] {
|
|
265
|
+
box-sizing: border-box;
|
|
266
|
+
padding: 0;
|
|
267
|
+
}
|
|
268
|
+
input[type='date'],
|
|
269
|
+
input[type='time'],
|
|
270
|
+
input[type='datetime-local'],
|
|
271
|
+
input[type='month'] {
|
|
272
|
+
-webkit-appearance: listbox;
|
|
273
|
+
}
|
|
274
|
+
textarea {
|
|
275
|
+
overflow: auto;
|
|
276
|
+
resize: vertical;
|
|
277
|
+
}
|
|
278
|
+
fieldset {
|
|
279
|
+
min-width: 0;
|
|
280
|
+
padding: 0;
|
|
281
|
+
margin: 0;
|
|
282
|
+
border: 0;
|
|
283
|
+
}
|
|
284
|
+
input[id*="-focus"] {
|
|
285
|
+
width: unset !important;
|
|
286
|
+
height: unset !important;
|
|
287
|
+
position: absolute !important;
|
|
288
|
+
top: 0 !important;
|
|
289
|
+
left: 0 !important;
|
|
290
|
+
opacity: 0 !important;
|
|
291
|
+
pointer-events: none;
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
legend {
|
|
295
|
+
display: block;
|
|
296
|
+
width: 100%;
|
|
297
|
+
max-width: 100%;
|
|
298
|
+
padding: 0;
|
|
299
|
+
margin-bottom: 0.5rem;
|
|
300
|
+
font-size: 1.5rem;
|
|
301
|
+
line-height: inherit;
|
|
302
|
+
color: inherit;
|
|
303
|
+
white-space: normal;
|
|
304
|
+
}
|
|
305
|
+
progress {
|
|
306
|
+
vertical-align: baseline;
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
[type='number']::-webkit-inner-spin-button,
|
|
310
|
+
[type='number']::-webkit-outer-spin-button {
|
|
311
|
+
height: auto;
|
|
312
|
+
}
|
|
313
|
+
[type='search'] {
|
|
314
|
+
outline-offset: -2px;
|
|
315
|
+
-webkit-appearance: none;
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
[type='search']::-webkit-search-cancel-button,
|
|
319
|
+
[type='search']::-webkit-search-decoration {
|
|
320
|
+
-webkit-appearance: none;
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
::-webkit-file-upload-button {
|
|
324
|
+
font: inherit;
|
|
325
|
+
-webkit-appearance: button;
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
output {
|
|
329
|
+
display: inline-block;
|
|
330
|
+
}
|
|
331
|
+
summary {
|
|
332
|
+
display: list-item;
|
|
333
|
+
}
|
|
334
|
+
template {
|
|
335
|
+
display: none;
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
[hidden] {
|
|
339
|
+
display: none !important;
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
ul,
|
|
343
|
+
ul li {
|
|
344
|
+
list-style-type: none;
|
|
345
|
+
padding-left: 0;
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
@keyframes placeHolderShimmer {
|
|
349
|
+
0% {
|
|
350
|
+
background-position: 0px 0;
|
|
351
|
+
}
|
|
352
|
+
100% {
|
|
353
|
+
background-position: 100vw 0;
|
|
354
|
+
}
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
#__next {
|
|
358
|
+
position: relative;
|
|
359
|
+
z-index: 1;
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
.conntent_form_infinity_forge .button-flag {
|
|
363
|
+
background: transparent;
|
|
364
|
+
border: none;
|
|
365
|
+
padding: 0;
|
|
366
|
+
transition: all 0.2s;
|
|
367
|
+
margin: 0 15px 15px 0;
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
.conntent_form_infinity_forge .button-flag img {
|
|
371
|
+
max-width: 50px;
|
|
372
|
+
width: auto !important;
|
|
373
|
+
height: 30px;
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
.conntent_form_infinity_forge .button-flag:hover {
|
|
377
|
+
box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.2) !important;
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
body:has(> [id*='enabled-overflow-tooltip']) {
|
|
381
|
+
overflow: hidden;
|
|
382
|
+
}
|
|
383
|
+
|