@norskvideo/norsk-studio-aws 1.27.0-2025-04-08-3f13a32b → 1.27.0-2025-04-10-614c23ec
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/client/style.css +538 -76
- package/package.json +3 -3
package/client/style.css
CHANGED
|
@@ -1,102 +1,569 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
1
|
+
/*
|
|
2
|
+
! tailwindcss v3.4.7 | MIT License | https://tailwindcss.com
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
/*
|
|
6
|
+
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
|
|
7
|
+
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
*,
|
|
11
|
+
::before,
|
|
12
|
+
::after {
|
|
13
|
+
box-sizing: border-box;
|
|
14
|
+
/* 1 */
|
|
15
|
+
border-width: 0;
|
|
16
|
+
/* 2 */
|
|
17
|
+
border-style: solid;
|
|
18
|
+
/* 2 */
|
|
19
|
+
border-color: #e5e7eb;
|
|
20
|
+
/* 2 */
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
::before,
|
|
24
|
+
::after {
|
|
25
|
+
--tw-content: '';
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
/*
|
|
29
|
+
1. Use a consistent sensible line-height in all browsers.
|
|
30
|
+
2. Prevent adjustments of font size after orientation changes in iOS.
|
|
31
|
+
3. Use a more readable tab size.
|
|
32
|
+
4. Use the user's configured `sans` font-family by default.
|
|
33
|
+
5. Use the user's configured `sans` font-feature-settings by default.
|
|
34
|
+
6. Use the user's configured `sans` font-variation-settings by default.
|
|
35
|
+
7. Disable tap highlights on iOS
|
|
36
|
+
*/
|
|
37
|
+
|
|
38
|
+
html,
|
|
39
|
+
:host {
|
|
40
|
+
line-height: 1.5;
|
|
41
|
+
/* 1 */
|
|
42
|
+
-webkit-text-size-adjust: 100%;
|
|
43
|
+
/* 2 */
|
|
44
|
+
-moz-tab-size: 4;
|
|
45
|
+
/* 3 */
|
|
46
|
+
-o-tab-size: 4;
|
|
47
|
+
tab-size: 4;
|
|
48
|
+
/* 3 */
|
|
49
|
+
font-family: Inter, ui-sans-serif, system-ui, -apple-system, system-ui, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
|
|
50
|
+
/* 4 */
|
|
51
|
+
font-feature-settings: normal;
|
|
52
|
+
/* 5 */
|
|
53
|
+
font-variation-settings: normal;
|
|
54
|
+
/* 6 */
|
|
55
|
+
-webkit-tap-highlight-color: transparent;
|
|
56
|
+
/* 7 */
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
/*
|
|
60
|
+
1. Remove the margin in all browsers.
|
|
61
|
+
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
|
|
62
|
+
*/
|
|
63
|
+
|
|
64
|
+
body {
|
|
65
|
+
margin: 0;
|
|
66
|
+
/* 1 */
|
|
67
|
+
line-height: inherit;
|
|
68
|
+
/* 2 */
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
/*
|
|
72
|
+
1. Add the correct height in Firefox.
|
|
73
|
+
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
|
|
74
|
+
3. Ensure horizontal rules are visible by default.
|
|
75
|
+
*/
|
|
76
|
+
|
|
77
|
+
hr {
|
|
78
|
+
height: 0;
|
|
79
|
+
/* 1 */
|
|
80
|
+
color: inherit;
|
|
81
|
+
/* 2 */
|
|
82
|
+
border-top-width: 1px;
|
|
83
|
+
/* 3 */
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
/*
|
|
87
|
+
Add the correct text decoration in Chrome, Edge, and Safari.
|
|
88
|
+
*/
|
|
89
|
+
|
|
90
|
+
abbr:where([title]) {
|
|
91
|
+
-webkit-text-decoration: underline dotted;
|
|
92
|
+
text-decoration: underline dotted;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
/*
|
|
96
|
+
Remove the default font size and weight for headings.
|
|
97
|
+
*/
|
|
98
|
+
|
|
99
|
+
h1,
|
|
100
|
+
h2,
|
|
101
|
+
h3,
|
|
102
|
+
h4,
|
|
103
|
+
h5,
|
|
104
|
+
h6 {
|
|
105
|
+
font-size: inherit;
|
|
106
|
+
font-weight: inherit;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
/*
|
|
110
|
+
Reset links to optimize for opt-in styling instead of opt-out.
|
|
111
|
+
*/
|
|
112
|
+
|
|
113
|
+
a {
|
|
114
|
+
color: inherit;
|
|
115
|
+
text-decoration: inherit;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
/*
|
|
119
|
+
Add the correct font weight in Edge and Safari.
|
|
120
|
+
*/
|
|
121
|
+
|
|
122
|
+
b,
|
|
123
|
+
strong {
|
|
124
|
+
font-weight: bolder;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
/*
|
|
128
|
+
1. Use the user's configured `mono` font-family by default.
|
|
129
|
+
2. Use the user's configured `mono` font-feature-settings by default.
|
|
130
|
+
3. Use the user's configured `mono` font-variation-settings by default.
|
|
131
|
+
4. Correct the odd `em` font sizing in all browsers.
|
|
132
|
+
*/
|
|
133
|
+
|
|
134
|
+
code,
|
|
135
|
+
kbd,
|
|
136
|
+
samp,
|
|
137
|
+
pre {
|
|
138
|
+
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
139
|
+
/* 1 */
|
|
140
|
+
font-feature-settings: normal;
|
|
141
|
+
/* 2 */
|
|
142
|
+
font-variation-settings: normal;
|
|
143
|
+
/* 3 */
|
|
144
|
+
font-size: 1em;
|
|
145
|
+
/* 4 */
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
/*
|
|
149
|
+
Add the correct font size in all browsers.
|
|
150
|
+
*/
|
|
151
|
+
|
|
152
|
+
small {
|
|
153
|
+
font-size: 80%;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
/*
|
|
157
|
+
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
|
|
158
|
+
*/
|
|
159
|
+
|
|
160
|
+
sub,
|
|
161
|
+
sup {
|
|
162
|
+
font-size: 75%;
|
|
163
|
+
line-height: 0;
|
|
164
|
+
position: relative;
|
|
165
|
+
vertical-align: baseline;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
sub {
|
|
169
|
+
bottom: -0.25em;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
sup {
|
|
173
|
+
top: -0.5em;
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
/*
|
|
177
|
+
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)
|
|
178
|
+
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)
|
|
179
|
+
3. Remove gaps between table borders by default.
|
|
180
|
+
*/
|
|
181
|
+
|
|
182
|
+
table {
|
|
183
|
+
text-indent: 0;
|
|
184
|
+
/* 1 */
|
|
185
|
+
border-color: inherit;
|
|
186
|
+
/* 2 */
|
|
187
|
+
border-collapse: collapse;
|
|
188
|
+
/* 3 */
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
/*
|
|
192
|
+
1. Change the font styles in all browsers.
|
|
193
|
+
2. Remove the margin in Firefox and Safari.
|
|
194
|
+
3. Remove default padding in all browsers.
|
|
195
|
+
*/
|
|
196
|
+
|
|
197
|
+
button,
|
|
198
|
+
input,
|
|
199
|
+
optgroup,
|
|
200
|
+
select,
|
|
201
|
+
textarea {
|
|
202
|
+
font-family: inherit;
|
|
203
|
+
/* 1 */
|
|
204
|
+
font-feature-settings: inherit;
|
|
205
|
+
/* 1 */
|
|
206
|
+
font-variation-settings: inherit;
|
|
207
|
+
/* 1 */
|
|
208
|
+
font-size: 100%;
|
|
209
|
+
/* 1 */
|
|
210
|
+
font-weight: inherit;
|
|
211
|
+
/* 1 */
|
|
212
|
+
line-height: inherit;
|
|
213
|
+
/* 1 */
|
|
214
|
+
letter-spacing: inherit;
|
|
215
|
+
/* 1 */
|
|
216
|
+
color: inherit;
|
|
217
|
+
/* 1 */
|
|
218
|
+
margin: 0;
|
|
219
|
+
/* 2 */
|
|
220
|
+
padding: 0;
|
|
221
|
+
/* 3 */
|
|
9
222
|
}
|
|
10
223
|
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
224
|
+
/*
|
|
225
|
+
Remove the inheritance of text transform in Edge and Firefox.
|
|
226
|
+
*/
|
|
227
|
+
|
|
228
|
+
button,
|
|
229
|
+
select {
|
|
230
|
+
text-transform: none;
|
|
16
231
|
}
|
|
17
232
|
|
|
18
|
-
|
|
19
|
-
|
|
233
|
+
/*
|
|
234
|
+
1. Correct the inability to style clickable types in iOS and Safari.
|
|
235
|
+
2. Remove default button styles.
|
|
236
|
+
*/
|
|
237
|
+
|
|
238
|
+
button,
|
|
239
|
+
input:where([type='button']),
|
|
240
|
+
input:where([type='reset']),
|
|
241
|
+
input:where([type='submit']) {
|
|
242
|
+
-webkit-appearance: button;
|
|
243
|
+
/* 1 */
|
|
244
|
+
background-color: transparent;
|
|
245
|
+
/* 2 */
|
|
246
|
+
background-image: none;
|
|
247
|
+
/* 2 */
|
|
20
248
|
}
|
|
21
249
|
|
|
22
|
-
|
|
23
|
-
|
|
250
|
+
/*
|
|
251
|
+
Use the modern Firefox focus style for all focusable elements.
|
|
252
|
+
*/
|
|
253
|
+
|
|
254
|
+
:-moz-focusring {
|
|
255
|
+
outline: auto;
|
|
24
256
|
}
|
|
25
257
|
|
|
26
|
-
|
|
27
|
-
|
|
258
|
+
/*
|
|
259
|
+
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
|
|
260
|
+
*/
|
|
261
|
+
|
|
262
|
+
:-moz-ui-invalid {
|
|
263
|
+
box-shadow: none;
|
|
28
264
|
}
|
|
29
265
|
|
|
30
|
-
|
|
31
|
-
|
|
266
|
+
/*
|
|
267
|
+
Add the correct vertical alignment in Chrome and Firefox.
|
|
268
|
+
*/
|
|
269
|
+
|
|
270
|
+
progress {
|
|
271
|
+
vertical-align: baseline;
|
|
32
272
|
}
|
|
33
273
|
|
|
34
|
-
|
|
35
|
-
|
|
274
|
+
/*
|
|
275
|
+
Correct the cursor style of increment and decrement buttons in Safari.
|
|
276
|
+
*/
|
|
277
|
+
|
|
278
|
+
::-webkit-inner-spin-button,
|
|
279
|
+
::-webkit-outer-spin-button {
|
|
280
|
+
height: auto;
|
|
36
281
|
}
|
|
37
282
|
|
|
38
|
-
|
|
39
|
-
|
|
283
|
+
/*
|
|
284
|
+
1. Correct the odd appearance in Chrome and Safari.
|
|
285
|
+
2. Correct the outline style in Safari.
|
|
286
|
+
*/
|
|
287
|
+
|
|
288
|
+
[type='search'] {
|
|
289
|
+
-webkit-appearance: textfield;
|
|
290
|
+
/* 1 */
|
|
291
|
+
outline-offset: -2px;
|
|
292
|
+
/* 2 */
|
|
40
293
|
}
|
|
41
294
|
|
|
42
|
-
|
|
43
|
-
|
|
295
|
+
/*
|
|
296
|
+
Remove the inner padding in Chrome and Safari on macOS.
|
|
297
|
+
*/
|
|
298
|
+
|
|
299
|
+
::-webkit-search-decoration {
|
|
300
|
+
-webkit-appearance: none;
|
|
44
301
|
}
|
|
45
302
|
|
|
46
|
-
|
|
47
|
-
|
|
303
|
+
/*
|
|
304
|
+
1. Correct the inability to style clickable types in iOS and Safari.
|
|
305
|
+
2. Change font properties to `inherit` in Safari.
|
|
306
|
+
*/
|
|
307
|
+
|
|
308
|
+
::-webkit-file-upload-button {
|
|
309
|
+
-webkit-appearance: button;
|
|
310
|
+
/* 1 */
|
|
311
|
+
font: inherit;
|
|
312
|
+
/* 2 */
|
|
48
313
|
}
|
|
49
314
|
|
|
50
|
-
|
|
51
|
-
|
|
315
|
+
/*
|
|
316
|
+
Add the correct display in Chrome and Safari.
|
|
317
|
+
*/
|
|
318
|
+
|
|
319
|
+
summary {
|
|
320
|
+
display: list-item;
|
|
52
321
|
}
|
|
53
322
|
|
|
54
|
-
|
|
55
|
-
|
|
323
|
+
/*
|
|
324
|
+
Removes the default spacing and border for appropriate elements.
|
|
325
|
+
*/
|
|
326
|
+
|
|
327
|
+
blockquote,
|
|
328
|
+
dl,
|
|
329
|
+
dd,
|
|
330
|
+
h1,
|
|
331
|
+
h2,
|
|
332
|
+
h3,
|
|
333
|
+
h4,
|
|
334
|
+
h5,
|
|
335
|
+
h6,
|
|
336
|
+
hr,
|
|
337
|
+
figure,
|
|
338
|
+
p,
|
|
339
|
+
pre {
|
|
340
|
+
margin: 0;
|
|
56
341
|
}
|
|
57
342
|
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
343
|
+
fieldset {
|
|
344
|
+
margin: 0;
|
|
345
|
+
padding: 0;
|
|
61
346
|
}
|
|
62
347
|
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
border-bottom-left-radius: 0.5rem;
|
|
348
|
+
legend {
|
|
349
|
+
padding: 0;
|
|
66
350
|
}
|
|
67
351
|
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
352
|
+
ol,
|
|
353
|
+
ul,
|
|
354
|
+
menu {
|
|
355
|
+
list-style: none;
|
|
356
|
+
margin: 0;
|
|
357
|
+
padding: 0;
|
|
71
358
|
}
|
|
72
359
|
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
360
|
+
/*
|
|
361
|
+
Reset default styling for dialogs.
|
|
362
|
+
*/
|
|
363
|
+
|
|
364
|
+
dialog {
|
|
365
|
+
padding: 0;
|
|
76
366
|
}
|
|
77
367
|
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
368
|
+
/*
|
|
369
|
+
Prevent resizing textareas horizontally by default.
|
|
370
|
+
*/
|
|
371
|
+
|
|
372
|
+
textarea {
|
|
373
|
+
resize: vertical;
|
|
81
374
|
}
|
|
82
375
|
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
376
|
+
/*
|
|
377
|
+
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
|
|
378
|
+
2. Set the default placeholder color to the user's configured gray 400 color.
|
|
379
|
+
*/
|
|
380
|
+
|
|
381
|
+
input::-moz-placeholder, textarea::-moz-placeholder {
|
|
382
|
+
opacity: 1;
|
|
383
|
+
/* 1 */
|
|
384
|
+
color: #9ca3af;
|
|
385
|
+
/* 2 */
|
|
386
|
+
}
|
|
387
|
+
|
|
388
|
+
input::placeholder,
|
|
389
|
+
textarea::placeholder {
|
|
390
|
+
opacity: 1;
|
|
391
|
+
/* 1 */
|
|
392
|
+
color: #9ca3af;
|
|
393
|
+
/* 2 */
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
/*
|
|
397
|
+
Set the default cursor for buttons.
|
|
398
|
+
*/
|
|
399
|
+
|
|
400
|
+
button,
|
|
401
|
+
[role="button"] {
|
|
402
|
+
cursor: pointer;
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
/*
|
|
406
|
+
Make sure disabled buttons don't get the pointer cursor.
|
|
407
|
+
*/
|
|
408
|
+
|
|
409
|
+
:disabled {
|
|
410
|
+
cursor: default;
|
|
86
411
|
}
|
|
87
412
|
|
|
88
|
-
|
|
89
|
-
|
|
413
|
+
/*
|
|
414
|
+
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
|
|
415
|
+
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
|
|
416
|
+
This can trigger a poorly considered lint error in some tools but is included by design.
|
|
417
|
+
*/
|
|
418
|
+
|
|
419
|
+
img,
|
|
420
|
+
svg,
|
|
421
|
+
video,
|
|
422
|
+
canvas,
|
|
423
|
+
audio,
|
|
424
|
+
iframe,
|
|
425
|
+
embed,
|
|
426
|
+
object {
|
|
427
|
+
display: block;
|
|
428
|
+
/* 1 */
|
|
429
|
+
vertical-align: middle;
|
|
430
|
+
/* 2 */
|
|
431
|
+
}
|
|
432
|
+
|
|
433
|
+
/*
|
|
434
|
+
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
|
|
435
|
+
*/
|
|
436
|
+
|
|
437
|
+
img,
|
|
438
|
+
video {
|
|
439
|
+
max-width: 100%;
|
|
440
|
+
height: auto;
|
|
441
|
+
}
|
|
442
|
+
|
|
443
|
+
/* Make elements with the HTML hidden attribute stay hidden by default */
|
|
444
|
+
|
|
445
|
+
[hidden] {
|
|
446
|
+
display: none;
|
|
447
|
+
}
|
|
448
|
+
|
|
449
|
+
*, ::before, ::after {
|
|
450
|
+
--tw-border-spacing-x: 0;
|
|
451
|
+
--tw-border-spacing-y: 0;
|
|
452
|
+
--tw-translate-x: 0;
|
|
453
|
+
--tw-translate-y: 0;
|
|
454
|
+
--tw-rotate: 0;
|
|
455
|
+
--tw-skew-x: 0;
|
|
456
|
+
--tw-skew-y: 0;
|
|
457
|
+
--tw-scale-x: 1;
|
|
458
|
+
--tw-scale-y: 1;
|
|
459
|
+
--tw-pan-x: ;
|
|
460
|
+
--tw-pan-y: ;
|
|
461
|
+
--tw-pinch-zoom: ;
|
|
462
|
+
--tw-scroll-snap-strictness: proximity;
|
|
463
|
+
--tw-gradient-from-position: ;
|
|
464
|
+
--tw-gradient-via-position: ;
|
|
465
|
+
--tw-gradient-to-position: ;
|
|
466
|
+
--tw-ordinal: ;
|
|
467
|
+
--tw-slashed-zero: ;
|
|
468
|
+
--tw-numeric-figure: ;
|
|
469
|
+
--tw-numeric-spacing: ;
|
|
470
|
+
--tw-numeric-fraction: ;
|
|
471
|
+
--tw-ring-inset: ;
|
|
472
|
+
--tw-ring-offset-width: 0px;
|
|
473
|
+
--tw-ring-offset-color: #fff;
|
|
474
|
+
--tw-ring-color: rgb(59 130 246 / 0.5);
|
|
475
|
+
--tw-ring-offset-shadow: 0 0 #0000;
|
|
476
|
+
--tw-ring-shadow: 0 0 #0000;
|
|
477
|
+
--tw-shadow: 0 0 #0000;
|
|
478
|
+
--tw-shadow-colored: 0 0 #0000;
|
|
479
|
+
--tw-blur: ;
|
|
480
|
+
--tw-brightness: ;
|
|
481
|
+
--tw-contrast: ;
|
|
482
|
+
--tw-grayscale: ;
|
|
483
|
+
--tw-hue-rotate: ;
|
|
484
|
+
--tw-invert: ;
|
|
485
|
+
--tw-saturate: ;
|
|
486
|
+
--tw-sepia: ;
|
|
487
|
+
--tw-drop-shadow: ;
|
|
488
|
+
--tw-backdrop-blur: ;
|
|
489
|
+
--tw-backdrop-brightness: ;
|
|
490
|
+
--tw-backdrop-contrast: ;
|
|
491
|
+
--tw-backdrop-grayscale: ;
|
|
492
|
+
--tw-backdrop-hue-rotate: ;
|
|
493
|
+
--tw-backdrop-invert: ;
|
|
494
|
+
--tw-backdrop-opacity: ;
|
|
495
|
+
--tw-backdrop-saturate: ;
|
|
496
|
+
--tw-backdrop-sepia: ;
|
|
497
|
+
--tw-contain-size: ;
|
|
498
|
+
--tw-contain-layout: ;
|
|
499
|
+
--tw-contain-paint: ;
|
|
500
|
+
--tw-contain-style: ;
|
|
501
|
+
}
|
|
502
|
+
|
|
503
|
+
::backdrop {
|
|
504
|
+
--tw-border-spacing-x: 0;
|
|
505
|
+
--tw-border-spacing-y: 0;
|
|
506
|
+
--tw-translate-x: 0;
|
|
507
|
+
--tw-translate-y: 0;
|
|
508
|
+
--tw-rotate: 0;
|
|
509
|
+
--tw-skew-x: 0;
|
|
510
|
+
--tw-skew-y: 0;
|
|
511
|
+
--tw-scale-x: 1;
|
|
512
|
+
--tw-scale-y: 1;
|
|
513
|
+
--tw-pan-x: ;
|
|
514
|
+
--tw-pan-y: ;
|
|
515
|
+
--tw-pinch-zoom: ;
|
|
516
|
+
--tw-scroll-snap-strictness: proximity;
|
|
517
|
+
--tw-gradient-from-position: ;
|
|
518
|
+
--tw-gradient-via-position: ;
|
|
519
|
+
--tw-gradient-to-position: ;
|
|
520
|
+
--tw-ordinal: ;
|
|
521
|
+
--tw-slashed-zero: ;
|
|
522
|
+
--tw-numeric-figure: ;
|
|
523
|
+
--tw-numeric-spacing: ;
|
|
524
|
+
--tw-numeric-fraction: ;
|
|
525
|
+
--tw-ring-inset: ;
|
|
526
|
+
--tw-ring-offset-width: 0px;
|
|
527
|
+
--tw-ring-offset-color: #fff;
|
|
528
|
+
--tw-ring-color: rgb(59 130 246 / 0.5);
|
|
529
|
+
--tw-ring-offset-shadow: 0 0 #0000;
|
|
530
|
+
--tw-ring-shadow: 0 0 #0000;
|
|
531
|
+
--tw-shadow: 0 0 #0000;
|
|
532
|
+
--tw-shadow-colored: 0 0 #0000;
|
|
533
|
+
--tw-blur: ;
|
|
534
|
+
--tw-brightness: ;
|
|
535
|
+
--tw-contrast: ;
|
|
536
|
+
--tw-grayscale: ;
|
|
537
|
+
--tw-hue-rotate: ;
|
|
538
|
+
--tw-invert: ;
|
|
539
|
+
--tw-saturate: ;
|
|
540
|
+
--tw-sepia: ;
|
|
541
|
+
--tw-drop-shadow: ;
|
|
542
|
+
--tw-backdrop-blur: ;
|
|
543
|
+
--tw-backdrop-brightness: ;
|
|
544
|
+
--tw-backdrop-contrast: ;
|
|
545
|
+
--tw-backdrop-grayscale: ;
|
|
546
|
+
--tw-backdrop-hue-rotate: ;
|
|
547
|
+
--tw-backdrop-invert: ;
|
|
548
|
+
--tw-backdrop-opacity: ;
|
|
549
|
+
--tw-backdrop-saturate: ;
|
|
550
|
+
--tw-backdrop-sepia: ;
|
|
551
|
+
--tw-contain-size: ;
|
|
552
|
+
--tw-contain-layout: ;
|
|
553
|
+
--tw-contain-paint: ;
|
|
554
|
+
--tw-contain-style: ;
|
|
90
555
|
}
|
|
91
556
|
|
|
92
|
-
.
|
|
93
|
-
|
|
557
|
+
.static {
|
|
558
|
+
position: static;
|
|
559
|
+
}
|
|
560
|
+
|
|
561
|
+
.inline {
|
|
562
|
+
display: inline;
|
|
94
563
|
}
|
|
95
564
|
|
|
96
|
-
.
|
|
97
|
-
--tw-
|
|
98
|
-
--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
|
|
99
|
-
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
565
|
+
.transform {
|
|
566
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
100
567
|
}
|
|
101
568
|
|
|
102
569
|
.node-editor-label {
|
|
@@ -132,11 +599,11 @@
|
|
|
132
599
|
|
|
133
600
|
.node-editor-text-input:focus {
|
|
134
601
|
--tw-border-opacity: 1;
|
|
135
|
-
border-color: rgb(
|
|
602
|
+
border-color: rgb(59 130 246 / var(--tw-border-opacity));
|
|
136
603
|
outline: 2px solid transparent;
|
|
137
604
|
outline-offset: 2px;
|
|
138
605
|
--tw-ring-opacity: 1;
|
|
139
|
-
--tw-ring-color: rgb(
|
|
606
|
+
--tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity));
|
|
140
607
|
}
|
|
141
608
|
|
|
142
609
|
.node-editor-text-input:is(.dark *) {
|
|
@@ -160,9 +627,9 @@
|
|
|
160
627
|
|
|
161
628
|
.node-editor-text-input:focus:is(.dark *) {
|
|
162
629
|
--tw-border-opacity: 1;
|
|
163
|
-
border-color: rgb(
|
|
630
|
+
border-color: rgb(59 130 246 / var(--tw-border-opacity));
|
|
164
631
|
--tw-ring-opacity: 1;
|
|
165
|
-
--tw-ring-color: rgb(
|
|
632
|
+
--tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity));
|
|
166
633
|
}
|
|
167
634
|
|
|
168
635
|
.node-editor-numeric-input {
|
|
@@ -183,9 +650,9 @@
|
|
|
183
650
|
|
|
184
651
|
.node-editor-numeric-input:focus {
|
|
185
652
|
--tw-border-opacity: 1;
|
|
186
|
-
border-color: rgb(
|
|
653
|
+
border-color: rgb(59 130 246 / var(--tw-border-opacity));
|
|
187
654
|
--tw-ring-opacity: 1;
|
|
188
|
-
--tw-ring-color: rgb(
|
|
655
|
+
--tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity));
|
|
189
656
|
}
|
|
190
657
|
|
|
191
658
|
.node-editor-numeric-input:is(.dark *) {
|
|
@@ -209,9 +676,9 @@
|
|
|
209
676
|
|
|
210
677
|
.node-editor-numeric-input:focus:is(.dark *) {
|
|
211
678
|
--tw-border-opacity: 1;
|
|
212
|
-
border-color: rgb(
|
|
679
|
+
border-color: rgb(59 130 246 / var(--tw-border-opacity));
|
|
213
680
|
--tw-ring-opacity: 1;
|
|
214
|
-
--tw-ring-color: rgb(
|
|
681
|
+
--tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity));
|
|
215
682
|
}
|
|
216
683
|
|
|
217
684
|
.node-editor-select-input {
|
|
@@ -232,9 +699,9 @@
|
|
|
232
699
|
|
|
233
700
|
.node-editor-select-input:focus {
|
|
234
701
|
--tw-border-opacity: 1;
|
|
235
|
-
border-color: rgb(
|
|
702
|
+
border-color: rgb(59 130 246 / var(--tw-border-opacity));
|
|
236
703
|
--tw-ring-opacity: 1;
|
|
237
|
-
--tw-ring-color: rgb(
|
|
704
|
+
--tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity));
|
|
238
705
|
}
|
|
239
706
|
|
|
240
707
|
.node-editor-select-input:is(.dark *) {
|
|
@@ -258,9 +725,9 @@
|
|
|
258
725
|
|
|
259
726
|
.node-editor-select-input:focus:is(.dark *) {
|
|
260
727
|
--tw-border-opacity: 1;
|
|
261
|
-
border-color: rgb(
|
|
728
|
+
border-color: rgb(59 130 246 / var(--tw-border-opacity));
|
|
262
729
|
--tw-ring-opacity: 1;
|
|
263
|
-
--tw-ring-color: rgb(
|
|
730
|
+
--tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity));
|
|
264
731
|
}
|
|
265
732
|
|
|
266
733
|
.node-editor-helper-text {
|
|
@@ -284,8 +751,3 @@
|
|
|
284
751
|
.input-socket {
|
|
285
752
|
display: inline-block;
|
|
286
753
|
}
|
|
287
|
-
|
|
288
|
-
.dark\:\!bg-gray-700:is(.dark *) {
|
|
289
|
-
--tw-bg-opacity: 1 !important;
|
|
290
|
-
background-color: rgb(55 65 81 / var(--tw-bg-opacity)) !important;
|
|
291
|
-
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@norskvideo/norsk-studio-aws",
|
|
3
|
-
"version": "1.27.0-2025-04-
|
|
3
|
+
"version": "1.27.0-2025-04-10-614c23ec",
|
|
4
4
|
"description": "",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"clean": "rm -rf lib",
|
|
@@ -24,8 +24,8 @@
|
|
|
24
24
|
"@aws-sdk/client-mediapackage": "^3.499.0",
|
|
25
25
|
"@aws-sdk/client-s3": "^3.614.0",
|
|
26
26
|
"@aws-sdk/client-translate": "^3.535.0",
|
|
27
|
-
"@norskvideo/norsk-sdk": "^1.0.401-2025-04-
|
|
28
|
-
"@norskvideo/norsk-studio": "1.27.0-2025-04-
|
|
27
|
+
"@norskvideo/norsk-sdk": "^1.0.401-2025-04-10-b3850791",
|
|
28
|
+
"@norskvideo/norsk-studio": "1.27.0-2025-04-10-614c23ec",
|
|
29
29
|
"JSX": "^1.1.0",
|
|
30
30
|
"node-fetch": "^2.7.0",
|
|
31
31
|
"openapi-types": "^12.1.3",
|