@cesdk/cesdk-js 1.63.0-nightly.20251014 → 1.63.0-nightly.20251016
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/assets/core/{cesdk-v1.63.0-nightly.20251014-4H7QYOOP.wasm → cesdk-v1.63.0-nightly.20251016-76HKYHP2.wasm} +0 -0
- package/assets/core/{worker-host-v1.63.0-nightly.20251014.js → worker-host-v1.63.0-nightly.20251016.js} +1 -1
- package/assets/i18n/de.json +2 -0
- package/assets/i18n/en.json +2 -0
- package/assets/ui/stylesheets/cesdk-themes.css +49 -0
- package/assets/ui/stylesheets/cesdk.css +235 -48
- package/cesdk.umd.js +1 -1
- package/index.d.ts +5 -1
- package/index.js +1 -1
- package/package.json +2 -2
- /package/assets/core/{cesdk-v1.63.0-nightly.20251014-44YCFRT6.data → cesdk-v1.63.0-nightly.20251016-44YCFRT6.data} +0 -0
package/assets/i18n/de.json
CHANGED
|
@@ -420,6 +420,8 @@
|
|
|
420
420
|
"component.scalingSelect.large.description": "Große Skalierung auswählen",
|
|
421
421
|
"component.scalingSelect.normal": "Normal",
|
|
422
422
|
"component.scalingSelect.normal.description": "Normale Skalierung auswählen",
|
|
423
|
+
"component.scalingSelect.modern": "Modern",
|
|
424
|
+
"component.scalingSelect.modern.description": "Moderne Skalierung auswählen",
|
|
423
425
|
"component.settings.toggle": "Editor anpassen",
|
|
424
426
|
"component.settings.toggle.description": "Einstellungen öffnen um den Editor anzupassen",
|
|
425
427
|
"component.settingsPanel.appearance": "Aussehen",
|
package/assets/i18n/en.json
CHANGED
|
@@ -420,6 +420,8 @@
|
|
|
420
420
|
"component.scalingSelect.large.description": "Select large scaling",
|
|
421
421
|
"component.scalingSelect.normal": "Normal",
|
|
422
422
|
"component.scalingSelect.normal.description": "Select normal scaling",
|
|
423
|
+
"component.scalingSelect.modern": "Modern",
|
|
424
|
+
"component.scalingSelect.modern.description": "Select modern scaling",
|
|
423
425
|
"component.settings.toggle": "Customize Editor",
|
|
424
426
|
"component.settings.toggle.description": "Open settings to customize editor",
|
|
425
427
|
"component.settingsPanel.appearance": "Appearance",
|
|
@@ -226,3 +226,52 @@
|
|
|
226
226
|
--ubq-border_radius-m: 10px;
|
|
227
227
|
--ubq-border_radius-l: 15px;
|
|
228
228
|
}
|
|
229
|
+
.ubq-modern {
|
|
230
|
+
--ubq-typography-headline-l-font_family: var( --ubq-typography-font_family, "Inter", sans-serif );
|
|
231
|
+
--ubq-typography-headline-l-size: 16px;
|
|
232
|
+
--ubq-typography-headline-l-weight: 600;
|
|
233
|
+
--ubq-typography-headline-l-letter_spacing: 0.01em;
|
|
234
|
+
--ubq-typography-headline-l-line_height: 20px;
|
|
235
|
+
--ubq-typography-headline-m-font_family: var( --ubq-typography-font_family, "Inter", sans-serif );
|
|
236
|
+
--ubq-typography-headline-m-size: 12px;
|
|
237
|
+
--ubq-typography-headline-m-weight: 600;
|
|
238
|
+
--ubq-typography-headline-m-letter_spacing: 0.03em;
|
|
239
|
+
--ubq-typography-headline-m-line_height: 16px;
|
|
240
|
+
--ubq-typography-label-m-font_family: var( --ubq-typography-font_family, "Inter", sans-serif );
|
|
241
|
+
--ubq-typography-label-m-size: 12px;
|
|
242
|
+
--ubq-typography-label-m-weight: 450;
|
|
243
|
+
--ubq-typography-label-m-letter_spacing: 0.02em;
|
|
244
|
+
--ubq-typography-label-m-line_height: 16px;
|
|
245
|
+
--ubq-typography-label-s-font_family: var( --ubq-typography-font_family, "Inter", sans-serif );
|
|
246
|
+
--ubq-typography-label-s-size: 10px;
|
|
247
|
+
--ubq-typography-label-s-weight: 450;
|
|
248
|
+
--ubq-typography-label-s-letter_spacing: 0.02em;
|
|
249
|
+
--ubq-typography-label-s-line_height: 14px;
|
|
250
|
+
--ubq-typography-body-m-font_family: var( --ubq-typography-font_family, "Inter", sans-serif );
|
|
251
|
+
--ubq-typography-body-m-size: 12px;
|
|
252
|
+
--ubq-typography-body-m-weight: 450;
|
|
253
|
+
--ubq-typography-body-m-letter_spacing: 0.02em;
|
|
254
|
+
--ubq-typography-body-m-line_height: 18px;
|
|
255
|
+
--ubq-typography-input-m-font_family: var( --ubq-typography-font_family, "Inter", sans-serif );
|
|
256
|
+
--ubq-typography-input-m-size: 12px;
|
|
257
|
+
--ubq-typography-input-m-weight: 450;
|
|
258
|
+
--ubq-typography-input-m-letter_spacing: 0.02em;
|
|
259
|
+
--ubq-typography-input-m-line_height: 16px;
|
|
260
|
+
--ubq-typography-button-m-font_family: var( --ubq-typography-font_family, "Inter", sans-serif );
|
|
261
|
+
--ubq-typography-button-m-size: 12px;
|
|
262
|
+
--ubq-typography-button-m-weight: 450;
|
|
263
|
+
--ubq-typography-button-m-letter_spacing: 0.02em;
|
|
264
|
+
--ubq-typography-button-m-line_height: 16px;
|
|
265
|
+
--ubq-scale-base: 4px;
|
|
266
|
+
--ubq-margin-base: 4px;
|
|
267
|
+
--ubq-margin-xs: 4px;
|
|
268
|
+
--ubq-margin-s: 8px;
|
|
269
|
+
--ubq-margin-m: 12px;
|
|
270
|
+
--ubq-margin-l: 16px;
|
|
271
|
+
--ubq-margin-xl: 24px;
|
|
272
|
+
--ubq-border_radius-base: 4px;
|
|
273
|
+
--ubq-border_radius-xs: 2px;
|
|
274
|
+
--ubq-border_radius-s: 4px;
|
|
275
|
+
--ubq-border_radius-m: 8px;
|
|
276
|
+
--ubq-border_radius-l: 12px;
|
|
277
|
+
}
|
|
@@ -33,6 +33,15 @@
|
|
|
33
33
|
width: calc(6 * var(--ubq-scale-base));
|
|
34
34
|
}
|
|
35
35
|
|
|
36
|
+
/* esbuild-sass-plugin:css-chunk:packages/ui/design-system/components/Theme/Theme.module.scss */
|
|
37
|
+
.UBQ_Theme-module__block--y8Z5g {
|
|
38
|
+
height: 100%;
|
|
39
|
+
width: 100%;
|
|
40
|
+
}
|
|
41
|
+
.UBQ_Theme-module__transition--lBTNM * * {
|
|
42
|
+
transition: color, background-color 0.2s ease-in-out;
|
|
43
|
+
}
|
|
44
|
+
|
|
36
45
|
/* esbuild-sass-plugin:css-chunk:packages/ui/design-system/components/Button/Button.module.scss */
|
|
37
46
|
.UBQ_Button-module__block--XyrVB {
|
|
38
47
|
font-family: var(--ubq-typography-font_family, var(--ubq-typography-button-m-font_family));
|
|
@@ -259,6 +268,10 @@
|
|
|
259
268
|
.UBQ_Button-module__ubq-size_large--0g59K {
|
|
260
269
|
padding: var(--ubq-margin-m);
|
|
261
270
|
}
|
|
271
|
+
.UBQ_Button-module__ubq-size_modern--6-lui {
|
|
272
|
+
border-radius: var(--ubq-border_radius-m);
|
|
273
|
+
padding: var(--ubq-margin-s);
|
|
274
|
+
}
|
|
262
275
|
@keyframes UBQ_Button-module__spin--0WFIV {
|
|
263
276
|
from {
|
|
264
277
|
transform: rotate(0deg);
|
|
@@ -291,15 +304,6 @@
|
|
|
291
304
|
color: var(--ubq-foreground-default);
|
|
292
305
|
}
|
|
293
306
|
|
|
294
|
-
/* esbuild-sass-plugin:css-chunk:packages/ui/design-system/components/Theme/Theme.module.scss */
|
|
295
|
-
.UBQ_Theme-module__block--y8Z5g {
|
|
296
|
-
height: 100%;
|
|
297
|
-
width: 100%;
|
|
298
|
-
}
|
|
299
|
-
.UBQ_Theme-module__transition--lBTNM * * {
|
|
300
|
-
transition: color, background-color 0.2s ease-in-out;
|
|
301
|
-
}
|
|
302
|
-
|
|
303
307
|
/* esbuild-sass-plugin:css-chunk:packages/ui/design-system/components/Layout/LayoutEdge/LayoutEdge.module.scss */
|
|
304
308
|
.UBQ_LayoutEdge-module__block--f2y-3 {
|
|
305
309
|
display: grid;
|
|
@@ -402,27 +406,27 @@
|
|
|
402
406
|
.UBQ_SegmentedGroup-module__block--SYP9Y > hr + hr {
|
|
403
407
|
display: none;
|
|
404
408
|
}
|
|
405
|
-
.UBQ_SegmentedGroup-module__block--SYP9Y >
|
|
406
|
-
border-radius: 0;
|
|
407
|
-
|
|
408
|
-
.UBQ_SegmentedGroup-module__block--SYP9Y > *:first-child {
|
|
409
|
-
border-top-left-radius: var(--ubq-border_radius-s);
|
|
410
|
-
border-bottom-left-radius: var(--ubq-border_radius-s);
|
|
409
|
+
.UBQ_SegmentedGroup-module__block--SYP9Y > *:not(:only-child):first-child {
|
|
410
|
+
border-top-right-radius: 0;
|
|
411
|
+
border-bottom-right-radius: 0;
|
|
411
412
|
}
|
|
412
|
-
.UBQ_SegmentedGroup-module__block--SYP9Y > *:last-child {
|
|
413
|
-
border-top-
|
|
414
|
-
border-bottom-
|
|
413
|
+
.UBQ_SegmentedGroup-module__block--SYP9Y > *:not(:only-child):last-child {
|
|
414
|
+
border-top-left-radius: 0;
|
|
415
|
+
border-bottom-left-radius: 0;
|
|
415
416
|
}
|
|
416
|
-
.UBQ_SegmentedGroup-module__block--SYP9Y
|
|
417
|
+
.UBQ_SegmentedGroup-module__block--SYP9Y > *:not(:first-child):not(:last-child) {
|
|
417
418
|
border-radius: 0;
|
|
418
419
|
}
|
|
419
|
-
.UBQ_SegmentedGroup-module__block--SYP9Y[aria-orientation=vertical] > *:first-child {
|
|
420
|
-
border-
|
|
421
|
-
border-
|
|
420
|
+
.UBQ_SegmentedGroup-module__block--SYP9Y[aria-orientation=vertical] > *:not(:only-child):first-child {
|
|
421
|
+
border-bottom-left-radius: 0;
|
|
422
|
+
border-bottom-right-radius: 0;
|
|
422
423
|
}
|
|
423
|
-
.UBQ_SegmentedGroup-module__block--SYP9Y[aria-orientation=vertical] > *:last-child {
|
|
424
|
-
border-
|
|
425
|
-
border-
|
|
424
|
+
.UBQ_SegmentedGroup-module__block--SYP9Y[aria-orientation=vertical] > *:not(:only-child):last-child {
|
|
425
|
+
border-top-left-radius: 0;
|
|
426
|
+
border-top-right-radius: 0;
|
|
427
|
+
}
|
|
428
|
+
.UBQ_SegmentedGroup-module__block--SYP9Y[aria-orientation=vertical] > *:not(:first-child):not(:last-child) {
|
|
429
|
+
border-radius: 0;
|
|
426
430
|
}
|
|
427
431
|
|
|
428
432
|
/* esbuild-sass-plugin:css-chunk:packages/ui/design-system/components/InputGroup/InputGroup.module.scss */
|
|
@@ -439,13 +443,19 @@
|
|
|
439
443
|
.UBQ_InputGroup-module__block--cxN0E > * {
|
|
440
444
|
flex: 1 1 auto;
|
|
441
445
|
}
|
|
442
|
-
.UBQ_InputGroup-module__block--cxN0E > *:first-child button,
|
|
443
|
-
.UBQ_InputGroup-module__block--cxN0E > *:first-child input {
|
|
444
|
-
border-radius:
|
|
446
|
+
.UBQ_InputGroup-module__block--cxN0E > *:not(:only-child):first-child button,
|
|
447
|
+
.UBQ_InputGroup-module__block--cxN0E > *:not(:only-child):first-child input {
|
|
448
|
+
border-top-right-radius: 0;
|
|
449
|
+
border-bottom-right-radius: 0;
|
|
445
450
|
}
|
|
446
|
-
.UBQ_InputGroup-module__block--cxN0E > *:last-child button,
|
|
447
|
-
.UBQ_InputGroup-module__block--cxN0E > *:last-child input {
|
|
448
|
-
border-radius: 0
|
|
451
|
+
.UBQ_InputGroup-module__block--cxN0E > *:not(:only-child):last-child button,
|
|
452
|
+
.UBQ_InputGroup-module__block--cxN0E > *:not(:only-child):last-child input {
|
|
453
|
+
border-top-left-radius: 0;
|
|
454
|
+
border-bottom-left-radius: 0;
|
|
455
|
+
}
|
|
456
|
+
.UBQ_InputGroup-module__block--cxN0E > *:not(:first-child):not(:last-child) button,
|
|
457
|
+
.UBQ_InputGroup-module__block--cxN0E > *:not(:first-child):not(:last-child) input {
|
|
458
|
+
border-radius: 0;
|
|
449
459
|
}
|
|
450
460
|
|
|
451
461
|
/* esbuild-sass-plugin:css-chunk:packages/ui/design-system/components/InputGrid/InputGrid.module.scss */
|
|
@@ -740,6 +750,17 @@
|
|
|
740
750
|
opacity: 0.55;
|
|
741
751
|
pointer-events: none;
|
|
742
752
|
}
|
|
753
|
+
.UBQ_Checkbox-module__modern--OYrAk > .UBQ_Checkbox-module__checkbox-container--ocMWh {
|
|
754
|
+
height: calc(5 * var(--ubq-scale-base));
|
|
755
|
+
width: calc(5 * var(--ubq-scale-base));
|
|
756
|
+
}
|
|
757
|
+
.UBQ_Checkbox-module__modern--OYrAk > .UBQ_Checkbox-module__checkbox-container--ocMWh > * {
|
|
758
|
+
height: calc(4 * var(--ubq-scale-base));
|
|
759
|
+
width: calc(4 * var(--ubq-scale-base));
|
|
760
|
+
}
|
|
761
|
+
.UBQ_Checkbox-module__modern--OYrAk > .UBQ_Checkbox-module__checkbox-container--ocMWh > .UBQ_Checkbox-module__checkbox--Lr9l5 {
|
|
762
|
+
border-radius: var(--ubq-border_radius-s);
|
|
763
|
+
}
|
|
743
764
|
|
|
744
765
|
/* esbuild-sass-plugin:css-chunk:packages/ui/design-system/components/Checkbox/CheckboxList.module.scss */
|
|
745
766
|
.UBQ_CheckboxList-module__block--d4xnP {
|
|
@@ -816,11 +837,15 @@
|
|
|
816
837
|
color: var(--ubq-static-contrast-white);
|
|
817
838
|
mix-blend-mode: difference;
|
|
818
839
|
}
|
|
840
|
+
.UBQ_ColorPreview-module__modern--k37tC .UBQ_ColorPreview-module__colorPreviewLabel--UvZts {
|
|
841
|
+
padding-block: var(--ubq-margin-s);
|
|
842
|
+
padding-inline: var(--ubq-margin-m) calc(var(--ubq-typography-label-m-line_height) + 2 * var(--ubq-margin-s));
|
|
843
|
+
}
|
|
819
844
|
|
|
820
845
|
/* esbuild-sass-plugin:css-chunk:packages/ui/design-system/components/ColorPreviewButton/ColorPreviewButton.module.scss */
|
|
821
846
|
.UBQ_ColorPreviewButton-module__block--r0F5v {
|
|
822
847
|
padding: 0;
|
|
823
|
-
box-shadow:
|
|
848
|
+
box-shadow: 0 0 0 0.5px var(--ubq-effect-shadow);
|
|
824
849
|
overflow: auto;
|
|
825
850
|
}
|
|
826
851
|
.UBQ_ColorPreviewButton-module__block--r0F5v.UBQ_ColorPreviewButton-module__noBorder--a8L4L {
|
|
@@ -837,9 +862,6 @@
|
|
|
837
862
|
overflow: hidden;
|
|
838
863
|
background-color: transparent;
|
|
839
864
|
}
|
|
840
|
-
.UBQ_ColorPreviewButton-module__colorPreviews--pCdOx.UBQ_ColorPreviewButton-module__small--N7YMv {
|
|
841
|
-
height: calc(5 * var(--ubq-scale-base));
|
|
842
|
-
}
|
|
843
865
|
.UBQ_ColorPreviewButton-module__colorPreviews--pCdOx > * {
|
|
844
866
|
position: absolute;
|
|
845
867
|
}
|
|
@@ -891,6 +913,21 @@
|
|
|
891
913
|
height: 100%;
|
|
892
914
|
width: 100%;
|
|
893
915
|
}
|
|
916
|
+
.UBQ_ColorPreviewButton-module__modern--G1WuA .UBQ_ColorPreviewButton-module__colorPreviews--pCdOx {
|
|
917
|
+
height: calc(8 * var(--ubq-scale-base));
|
|
918
|
+
}
|
|
919
|
+
.UBQ_ColorPreviewButton-module__modern--G1WuA .UBQ_ColorPreviewButton-module__iconContainer--kVB38 {
|
|
920
|
+
height: calc(6 * var(--ubq-scale-base));
|
|
921
|
+
width: calc(6 * var(--ubq-scale-base));
|
|
922
|
+
border-radius: var(--ubq-border_radius-s);
|
|
923
|
+
}
|
|
924
|
+
.UBQ_ColorPreviewButton-module__modern--G1WuA .UBQ_ColorPreviewButton-module__checkeredBackgroundOnly--7nQ5m,
|
|
925
|
+
.UBQ_ColorPreviewButton-module__modern--G1WuA .UBQ_ColorPreviewButton-module__checkeredRed--KYysa {
|
|
926
|
+
border-radius: calc(var(--ubq-border_radius-m) - 1px);
|
|
927
|
+
}
|
|
928
|
+
.UBQ_ColorPreviewButton-module__modern--G1WuA .UBQ_ColorPreviewButton-module__insetBorderOverlay--WbCIw {
|
|
929
|
+
border-radius: var(--ubq-border_radius-m);
|
|
930
|
+
}
|
|
894
931
|
|
|
895
932
|
/* esbuild-sass-plugin:css-chunk:packages/ui/design-system/components/ElementStack/ElementStack.module.scss */
|
|
896
933
|
.UBQ_ElementStack-module__block--2naFC {
|
|
@@ -1019,6 +1056,9 @@
|
|
|
1019
1056
|
.UBQ_ColorPreviewFieldButton-module__block--HQSbc {
|
|
1020
1057
|
padding: calc(var(--ubq-margin-xs) / 2) var(--ubq-margin-xs) calc(var(--ubq-margin-xs) / 2) calc(var(--ubq-margin-xs) / 2);
|
|
1021
1058
|
}
|
|
1059
|
+
.UBQ_ColorPreviewFieldButton-module__block--HQSbc.UBQ_ColorPreviewFieldButton-module__modern--gtVq2 {
|
|
1060
|
+
padding: calc(var(--ubq-margin-s) - var(--ubq-margin-xs) / 2) var(--ubq-margin-xs) calc(var(--ubq-margin-s) - var(--ubq-margin-xs) / 2) calc(var(--ubq-margin-s) - var(--ubq-margin-xs) / 2);
|
|
1061
|
+
}
|
|
1022
1062
|
.UBQ_ColorPreviewFieldButton-module__colorPreviewOnly---de4N {
|
|
1023
1063
|
padding: calc(var(--ubq-margin-xs) / 2);
|
|
1024
1064
|
}
|
|
@@ -1071,6 +1111,11 @@
|
|
|
1071
1111
|
background: var(--ubq-input-hover);
|
|
1072
1112
|
color: var(--ubq-foreground-default);
|
|
1073
1113
|
}
|
|
1114
|
+
.UBQ_BaseInput-module__block--gqfhh.UBQ_BaseInput-module__modern--mnFD- {
|
|
1115
|
+
border-radius: var(--ubq-border_radius-m);
|
|
1116
|
+
height: calc(var(--ubq-margin-s) * 2 + var(--ubq-typography-input-m-line_height));
|
|
1117
|
+
padding: var(--ubq-margin-m);
|
|
1118
|
+
}
|
|
1074
1119
|
.UBQ_BaseInput-module__block--gqfhh::-webkit-outer-spin-button,
|
|
1075
1120
|
.UBQ_BaseInput-module__block--gqfhh::-webkit-inner-spin-button {
|
|
1076
1121
|
-webkit-appearance: none;
|
|
@@ -1427,6 +1472,13 @@
|
|
|
1427
1472
|
pointer-events: none;
|
|
1428
1473
|
opacity: 0.55;
|
|
1429
1474
|
}
|
|
1475
|
+
.UBQ_NumberInput-module__modern--MpLrx .UBQ_NumberInput-module__overlay--G5kI6 {
|
|
1476
|
+
padding-left: var(--ubq-margin-m);
|
|
1477
|
+
}
|
|
1478
|
+
.UBQ_NumberInput-module__modern--MpLrx .UBQ_NumberInput-module__overlayUnit--G0r4j.UBQ_NumberInput-module__withButtonSpace--GpFpI,
|
|
1479
|
+
.UBQ_NumberInput-module__modern--MpLrx .UBQ_NumberInput-module__inputUnit--P54of.UBQ_NumberInput-module__withButtonSpace--GpFpI {
|
|
1480
|
+
padding-right: calc(var(--ubq-scale-base) * 6 + var(--ubq-margin-s));
|
|
1481
|
+
}
|
|
1430
1482
|
|
|
1431
1483
|
/* esbuild-sass-plugin:css-chunk:packages/ui/design-system/components/LoadingShimmer/LoadingShimmer.module.scss */
|
|
1432
1484
|
.UBQ_LoadingShimmer-module__block--A2A9c {
|
|
@@ -1514,6 +1566,10 @@
|
|
|
1514
1566
|
opacity: 0.55;
|
|
1515
1567
|
pointer-events: none;
|
|
1516
1568
|
}
|
|
1569
|
+
.UBQ_ListBox-module__modern--HcHme.UBQ_ListBox-module__option--VGvP0 {
|
|
1570
|
+
border-radius: var(--ubq-border_radius-m);
|
|
1571
|
+
padding: var(--ubq-margin-s);
|
|
1572
|
+
}
|
|
1517
1573
|
|
|
1518
1574
|
/* esbuild-sass-plugin:css-chunk:packages/ui/design-system/components/Select/Select.module.scss */
|
|
1519
1575
|
.UBQ_Select-module__block--j75r2 {
|
|
@@ -1578,6 +1634,10 @@
|
|
|
1578
1634
|
height: var(--ubq-typography-label-m-line_height);
|
|
1579
1635
|
margin: var(--ubq-margin-xs);
|
|
1580
1636
|
}
|
|
1637
|
+
.UBQ_NumberSelectInput-module__numberSelectInputReference--4msZz.UBQ_NumberSelectInput-module__modern--ZQskm {
|
|
1638
|
+
height: calc(6 * var(--ubq-scale-base));
|
|
1639
|
+
width: calc(6 * var(--ubq-scale-base));
|
|
1640
|
+
}
|
|
1581
1641
|
.UBQ_NumberSelectInput-module__numberSelectOption--Oq3wL {
|
|
1582
1642
|
display: flex;
|
|
1583
1643
|
justify-content: flex-start;
|
|
@@ -1948,14 +2008,6 @@
|
|
|
1948
2008
|
opacity: 1;
|
|
1949
2009
|
pointer-events: initial;
|
|
1950
2010
|
}
|
|
1951
|
-
.UBQ_Slider-module__sliderWrapper--KcqIp {
|
|
1952
|
-
position: relative;
|
|
1953
|
-
max-height: calc(var(--ubq-margin-l) + var(--ubq-margin-s));
|
|
1954
|
-
}
|
|
1955
|
-
.UBQ_Slider-module__sliderWrapper--KcqIp.UBQ_Slider-module__disabled--wU--n {
|
|
1956
|
-
opacity: 0.55;
|
|
1957
|
-
pointer-events: none;
|
|
1958
|
-
}
|
|
1959
2011
|
.UBQ_Slider-module__inputRange--zoNZJ {
|
|
1960
2012
|
-webkit-appearance: none;
|
|
1961
2013
|
width: 100%;
|
|
@@ -2209,6 +2261,9 @@
|
|
|
2209
2261
|
opacity: 0;
|
|
2210
2262
|
pointer-events: none;
|
|
2211
2263
|
}
|
|
2264
|
+
.UBQ_Slider-module__wrapperButtonToggleInput--yYzzg.UBQ_Slider-module__modern--zJgoi {
|
|
2265
|
+
left: calc(-1 * calc(2 * var(--ubq-margin-xs) + var(--ubq-typography-button-m-line_height)) - var(--ubq-margin-m));
|
|
2266
|
+
}
|
|
2212
2267
|
.UBQ_Slider-module__buttonSurface--eXHaf {
|
|
2213
2268
|
background: var(--ubq-elevation-3);
|
|
2214
2269
|
pointer-events: none;
|
|
@@ -2218,6 +2273,30 @@
|
|
|
2218
2273
|
.UBQ_Slider-module__buttonSurface--eXHaf button {
|
|
2219
2274
|
pointer-events: auto;
|
|
2220
2275
|
}
|
|
2276
|
+
.UBQ_Slider-module__sliderWrapper--KcqIp {
|
|
2277
|
+
position: relative;
|
|
2278
|
+
max-height: calc(var(--ubq-margin-l) + var(--ubq-margin-s));
|
|
2279
|
+
}
|
|
2280
|
+
.UBQ_Slider-module__sliderWrapper--KcqIp.UBQ_Slider-module__modern--zJgoi {
|
|
2281
|
+
max-height: calc(8 * var(--ubq-scale-base));
|
|
2282
|
+
}
|
|
2283
|
+
.UBQ_Slider-module__sliderWrapper--KcqIp.UBQ_Slider-module__modern--zJgoi .UBQ_Slider-module__inputRange--zoNZJ {
|
|
2284
|
+
border-radius: var(--ubq-border_radius-m);
|
|
2285
|
+
height: calc(8 * var(--ubq-scale-base));
|
|
2286
|
+
}
|
|
2287
|
+
.UBQ_Slider-module__sliderWrapper--KcqIp.UBQ_Slider-module__modern--zJgoi .UBQ_Slider-module__inputRange--zoNZJ::-moz-range-track {
|
|
2288
|
+
border-radius: var(--ubq-border_radius-m);
|
|
2289
|
+
}
|
|
2290
|
+
.UBQ_Slider-module__sliderWrapper--KcqIp.UBQ_Slider-module__modern--zJgoi .UBQ_Slider-module__inputRange--zoNZJ::-webkit-slider-runnable-track {
|
|
2291
|
+
border-radius: var(--ubq-border_radius-m);
|
|
2292
|
+
}
|
|
2293
|
+
.UBQ_Slider-module__sliderWrapper--KcqIp.UBQ_Slider-module__modern--zJgoi .UBQ_Slider-module__numberValue--91YSo {
|
|
2294
|
+
padding: calc(var(--ubq-margin-xs) / 2) var(--ubq-margin-s) 0;
|
|
2295
|
+
}
|
|
2296
|
+
.UBQ_Slider-module__sliderWrapper--KcqIp.UBQ_Slider-module__disabled--wU--n {
|
|
2297
|
+
opacity: 0.55;
|
|
2298
|
+
pointer-events: none;
|
|
2299
|
+
}
|
|
2221
2300
|
|
|
2222
2301
|
/* esbuild-sass-plugin:css-chunk:packages/ui/design-system/components/Section/Section.module.scss */
|
|
2223
2302
|
.UBQ_Section-module__block--ZZ2wD {
|
|
@@ -2258,6 +2337,18 @@ hr + .UBQ_Section-module__block--ZZ2wD > hr {
|
|
|
2258
2337
|
.UBQ_Section-module__content--YoHpW.UBQ_Section-module__titleless--SEdYL {
|
|
2259
2338
|
padding-top: var(--ubq-margin-l);
|
|
2260
2339
|
}
|
|
2340
|
+
.UBQ_Section-module__modern--B0bDq .UBQ_Section-module__heading--lUkHF {
|
|
2341
|
+
padding: var(--ubq-margin-s) var(--ubq-margin-m);
|
|
2342
|
+
}
|
|
2343
|
+
.UBQ_Section-module__modern--B0bDq .UBQ_Section-module__headingTitle--xf5O9 {
|
|
2344
|
+
padding-left: var(--ubq-margin-xs);
|
|
2345
|
+
}
|
|
2346
|
+
.UBQ_Section-module__modern--B0bDq .UBQ_Section-module__content--YoHpW {
|
|
2347
|
+
padding: var(--ubq-margin-xs) var(--ubq-margin-m) var(--ubq-margin-m) var(--ubq-margin-m);
|
|
2348
|
+
}
|
|
2349
|
+
.UBQ_Section-module__modern--B0bDq .UBQ_Section-module__content--YoHpW.UBQ_Section-module__titleless--SEdYL {
|
|
2350
|
+
padding-top: var(--ubq-margin-m);
|
|
2351
|
+
}
|
|
2261
2352
|
|
|
2262
2353
|
/* esbuild-sass-plugin:css-chunk:packages/ui/design-system/components/SectionRow/SectionRow.module.scss */
|
|
2263
2354
|
.UBQ_SectionRow-module__block--UXhDm {
|
|
@@ -2288,6 +2379,9 @@ hr + .UBQ_Section-module__block--ZZ2wD > hr {
|
|
|
2288
2379
|
.UBQ_SectionRow-module__block--UXhDm > hr {
|
|
2289
2380
|
margin-block: 0;
|
|
2290
2381
|
}
|
|
2382
|
+
.UBQ_SectionRow-module__block--UXhDm.UBQ_SectionRow-module__modern--kjIL3 {
|
|
2383
|
+
max-height: calc(2 * var(--ubq-margin-m) + var(--ubq-typography-button-m-line_height));
|
|
2384
|
+
}
|
|
2291
2385
|
|
|
2292
2386
|
/* esbuild-sass-plugin:css-chunk:packages/ui/design-system/components/SectionBlock/SectionBlock.module.scss */
|
|
2293
2387
|
.UBQ_SectionBlock-module__block--lgNgP {
|
|
@@ -2337,6 +2431,9 @@ hr + .UBQ_Section-module__block--ZZ2wD > hr {
|
|
|
2337
2431
|
right: 0;
|
|
2338
2432
|
border-left: 1px solid var(--ubq-stroke-contrast-1);
|
|
2339
2433
|
}
|
|
2434
|
+
:where(.UBQ_Panel-module__block--Q2Gnk).UBQ_Panel-module__modern--L67-h {
|
|
2435
|
+
width: calc(74 * var(--ubq-scale-base));
|
|
2436
|
+
}
|
|
2340
2437
|
:where(.UBQ_Panel-module__block--Q2Gnk) hr {
|
|
2341
2438
|
margin-block: var(--ubq-margin-m);
|
|
2342
2439
|
}
|
|
@@ -2776,6 +2873,15 @@ hr + .UBQ_Section-module__block--ZZ2wD > hr {
|
|
|
2776
2873
|
overflow-wrap: break-word;
|
|
2777
2874
|
width: 100%;
|
|
2778
2875
|
}
|
|
2876
|
+
.UBQ_Dock-module__modern--LAxLk.UBQ_Dock-module__block--05e4Z {
|
|
2877
|
+
padding: var(--ubq-margin-s);
|
|
2878
|
+
}
|
|
2879
|
+
.UBQ_Dock-module__modern--LAxLk.UBQ_Dock-module__small--84f5u {
|
|
2880
|
+
width: calc(var(--ubq-scale-base) * 14);
|
|
2881
|
+
}
|
|
2882
|
+
.UBQ_Dock-module__modern--LAxLk.UBQ_Dock-module__big--R-soZ {
|
|
2883
|
+
width: calc(var(--ubq-scale-base) * 20);
|
|
2884
|
+
}
|
|
2779
2885
|
|
|
2780
2886
|
/* esbuild-sass-plugin:css-chunk:packages/ui/design-system/components/MasonryGrid/MasonryGrid.module.scss */
|
|
2781
2887
|
.UBQ_MasonryGrid-module__block--DkiFd {
|
|
@@ -2783,6 +2889,9 @@ hr + .UBQ_Section-module__block--ZZ2wD > hr {
|
|
|
2783
2889
|
grid-gap: var(--ubq-margin-s);
|
|
2784
2890
|
grid-auto-rows: 0;
|
|
2785
2891
|
}
|
|
2892
|
+
.UBQ_MasonryGrid-module__block--DkiFd.UBQ_MasonryGrid-module__modern--GUNQI {
|
|
2893
|
+
grid-gap: var(--ubq-margin-xs);
|
|
2894
|
+
}
|
|
2786
2895
|
|
|
2787
2896
|
/* esbuild-sass-plugin:css-chunk:packages/ui/design-system/components/MediaStrip/MediaStrip.module.scss */
|
|
2788
2897
|
.UBQ_MediaStrip-module__block--efmGw {
|
|
@@ -3239,6 +3348,10 @@ hr + .UBQ_Section-module__block--ZZ2wD > hr {
|
|
|
3239
3348
|
background-repeat: repeat;
|
|
3240
3349
|
background-position: center center;
|
|
3241
3350
|
}
|
|
3351
|
+
.UBQ_ContentBox-module__modern--PgejQ .UBQ_ContentBox-module__interactionElement--YXEC9,
|
|
3352
|
+
.UBQ_ContentBox-module__modern--PgejQ .UBQ_ContentBox-module__solid--voWya {
|
|
3353
|
+
border-radius: var(--ubq-border_radius-m);
|
|
3354
|
+
}
|
|
3242
3355
|
|
|
3243
3356
|
/* esbuild-sass-plugin:css-chunk:packages/ui/design-system/components/InteractiveBox/InteractiveBox.module.scss */
|
|
3244
3357
|
.UBQ_InteractiveBox-module__block--JrnsW {
|
|
@@ -3644,6 +3757,9 @@ hr + .UBQ_Section-module__block--ZZ2wD > hr {
|
|
|
3644
3757
|
.UBQ_TimelineClip-module__block--J7w6O:not([aria-selected=true]):not(:hover) [data-show=both] {
|
|
3645
3758
|
display: none;
|
|
3646
3759
|
}
|
|
3760
|
+
.UBQ_TimelineClip-module__modern--BjOzV .UBQ_TimelineClip-module__contextMenu--y9tFr {
|
|
3761
|
+
border-radius: var(--ubq-border_radius-s);
|
|
3762
|
+
}
|
|
3647
3763
|
|
|
3648
3764
|
/* esbuild-sass-plugin:css-chunk:packages/ui/design-system/components/TimelinePlayHead/TimelinePlayHead.module.scss */
|
|
3649
3765
|
.UBQ_TimelinePlayHead-module__block--PmbQM {
|
|
@@ -4246,6 +4362,12 @@ hr + .UBQ_Section-module__block--ZZ2wD > hr {
|
|
|
4246
4362
|
.UBQ_AssetLibraryPropertyPopover-module__header--O30QG .UBQ_AssetLibraryPropertyPopover-module__heading--ZMjsl + .UBQ_AssetLibraryPropertyPopover-module__actions--8Udd3 {
|
|
4247
4363
|
margin-left: auto;
|
|
4248
4364
|
}
|
|
4365
|
+
.UBQ_AssetLibraryPropertyPopover-module__modern--y-o3Y.UBQ_AssetLibraryPropertyPopover-module__block--A3c-n {
|
|
4366
|
+
padding-inline: var(--ubq-margin-m);
|
|
4367
|
+
}
|
|
4368
|
+
.UBQ_AssetLibraryPropertyPopover-module__modern--y-o3Y .UBQ_AssetLibraryPropertyPopover-module__heading--ZMjsl {
|
|
4369
|
+
padding-left: var(--ubq-margin-xs);
|
|
4370
|
+
}
|
|
4249
4371
|
|
|
4250
4372
|
/* esbuild-sass-plugin:css-chunk:packages/ui/components/blocks/inputs/SliderInput/SliderInput.module.scss */
|
|
4251
4373
|
.UBQ_SliderInput-module__block--pFy3O {
|
|
@@ -4501,6 +4623,15 @@ input[type=range].UBQ_ColorSelection-module__opacitySlider--PI-Wu::-ms-thumb {
|
|
|
4501
4623
|
width: calc(6 * var(--ubq-scale-base));
|
|
4502
4624
|
opacity: 1;
|
|
4503
4625
|
}
|
|
4626
|
+
.UBQ_AssetMediaPlayer-module__sibling--KCgcZ:hover + .UBQ_AssetMediaPlayer-module__block--2enRm .UBQ_AssetMediaPlayer-module__playButton--sRBJU.UBQ_AssetMediaPlayer-module__modern--Es0G0,
|
|
4627
|
+
.UBQ_AssetMediaPlayer-module__sibling--KCgcZ:focus-within + .UBQ_AssetMediaPlayer-module__block--2enRm .UBQ_AssetMediaPlayer-module__playButton--sRBJU.UBQ_AssetMediaPlayer-module__modern--Es0G0,
|
|
4628
|
+
.UBQ_AssetMediaPlayer-module__sibling--KCgcZ:focus-visible + .UBQ_AssetMediaPlayer-module__block--2enRm .UBQ_AssetMediaPlayer-module__playButton--sRBJU.UBQ_AssetMediaPlayer-module__modern--Es0G0,
|
|
4629
|
+
.UBQ_AssetMediaPlayer-module__sibling--KCgcZ:focus + .UBQ_AssetMediaPlayer-module__block--2enRm .UBQ_AssetMediaPlayer-module__playButton--sRBJU.UBQ_AssetMediaPlayer-module__modern--Es0G0,
|
|
4630
|
+
.UBQ_AssetMediaPlayer-module__block--2enRm:hover .UBQ_AssetMediaPlayer-module__playButton--sRBJU.UBQ_AssetMediaPlayer-module__modern--Es0G0,
|
|
4631
|
+
.UBQ_AssetMediaPlayer-module__block--2enRm:focus-within .UBQ_AssetMediaPlayer-module__playButton--sRBJU.UBQ_AssetMediaPlayer-module__modern--Es0G0,
|
|
4632
|
+
.UBQ_AssetMediaPlayer-module__block--2enRm[data-expanded=true] .UBQ_AssetMediaPlayer-module__playButton--sRBJU.UBQ_AssetMediaPlayer-module__modern--Es0G0 {
|
|
4633
|
+
width: calc(8 * var(--ubq-scale-base));
|
|
4634
|
+
}
|
|
4504
4635
|
.UBQ_AssetMediaPlayer-module__sibling--KCgcZ:hover + .UBQ_AssetMediaPlayer-module__block--2enRm time,
|
|
4505
4636
|
.UBQ_AssetMediaPlayer-module__sibling--KCgcZ:focus-within + .UBQ_AssetMediaPlayer-module__block--2enRm time,
|
|
4506
4637
|
.UBQ_AssetMediaPlayer-module__sibling--KCgcZ:focus-visible + .UBQ_AssetMediaPlayer-module__block--2enRm time,
|
|
@@ -4510,6 +4641,13 @@ input[type=range].UBQ_ColorSelection-module__opacitySlider--PI-Wu::-ms-thumb {
|
|
|
4510
4641
|
.UBQ_AssetMediaPlayer-module__block--2enRm[data-expanded=true] time {
|
|
4511
4642
|
margin-inline: var(--ubq-margin-xs) var(--ubq-margin-s);
|
|
4512
4643
|
}
|
|
4644
|
+
.UBQ_AssetMediaPlayer-module__modern--Es0G0.UBQ_AssetMediaPlayer-module__block--2enRm {
|
|
4645
|
+
border-radius: var(--ubq-border_radius-m);
|
|
4646
|
+
height: calc(8 * var(--ubq-scale-base));
|
|
4647
|
+
}
|
|
4648
|
+
.UBQ_AssetMediaPlayer-module__modern--Es0G0 .UBQ_AssetMediaPlayer-module__layout--nxR1x {
|
|
4649
|
+
border-radius: var(--ubq-border_radius-m);
|
|
4650
|
+
}
|
|
4513
4651
|
|
|
4514
4652
|
/* esbuild-sass-plugin:css-chunk:packages/ui/components/assets/AssetContextPopover.module.scss */
|
|
4515
4653
|
.UBQ_AssetContextPopover-module__block--mBBDc {
|
|
@@ -4763,6 +4901,18 @@ footer {
|
|
|
4763
4901
|
width: calc(10 * var(--ubq-scale-base));
|
|
4764
4902
|
border-radius: 100%;
|
|
4765
4903
|
}
|
|
4904
|
+
.UBQ_AssetLibrarySection-module__modern--kX9ne .UBQ_AssetLibrarySection-module__header--zaDtl {
|
|
4905
|
+
margin-block: var(--ubq-margin-xs);
|
|
4906
|
+
margin-inline: var(--ubq-margin-m);
|
|
4907
|
+
}
|
|
4908
|
+
.UBQ_AssetLibrarySection-module__modern--kX9ne .UBQ_AssetLibrarySection-module__header--zaDtl .UBQ_AssetLibrarySection-module__heading--wwrkD {
|
|
4909
|
+
padding-left: var(--ubq-margin-xs);
|
|
4910
|
+
}
|
|
4911
|
+
.UBQ_AssetLibrarySection-module__modern--kX9ne .UBQ_AssetLibrarySection-module__previews--tS0xD {
|
|
4912
|
+
margin-block: var(--ubq-margin-xs) var(--ubq-margin-l);
|
|
4913
|
+
margin-inline: var(--ubq-margin-m);
|
|
4914
|
+
grid-gap: var(--ubq-margin-xs);
|
|
4915
|
+
}
|
|
4766
4916
|
|
|
4767
4917
|
/* esbuild-sass-plugin:css-chunk:packages/ui/components/assets/AssetLibrarySection/AssetLibrarySectionSkeleton.module.scss */
|
|
4768
4918
|
.UBQ_AssetLibrarySectionSkeleton-module__block--mWs38 {
|
|
@@ -4814,6 +4964,9 @@ footer {
|
|
|
4814
4964
|
max-height: calc(12 * var(--ubq-scale-base));
|
|
4815
4965
|
border-bottom: 1px solid var(--ubq-stroke-contrast-1);
|
|
4816
4966
|
}
|
|
4967
|
+
.UBQ_Panel-module__header--qDeg3.UBQ_Panel-module__modern--0cIE- {
|
|
4968
|
+
padding: var(--ubq-margin-m);
|
|
4969
|
+
}
|
|
4817
4970
|
.UBQ_Panel-module__header--qDeg3.UBQ_Panel-module__hidden---Zatz {
|
|
4818
4971
|
position: absolute;
|
|
4819
4972
|
width: 1px;
|
|
@@ -4854,6 +5007,9 @@ footer {
|
|
|
4854
5007
|
letter-spacing: var(--ubq-typography-headline-l-letter_spacing);
|
|
4855
5008
|
line-height: var(--ubq-typography-headline-l-line_height);
|
|
4856
5009
|
}
|
|
5010
|
+
.UBQ_Panel-module__header--qDeg3 .UBQ_Panel-module__heading--pa7qn.UBQ_Panel-module__modern--0cIE-:first-child {
|
|
5011
|
+
padding-left: var(--ubq-margin-xs);
|
|
5012
|
+
}
|
|
4857
5013
|
.UBQ_Panel-module__header--qDeg3 + hr {
|
|
4858
5014
|
margin-block: 0;
|
|
4859
5015
|
}
|
|
@@ -5157,6 +5313,9 @@ footer {
|
|
|
5157
5313
|
.UBQ_AssetLibraryOverview-module__block--eHaxL::-webkit-scrollbar-corner {
|
|
5158
5314
|
background: transparent;
|
|
5159
5315
|
}
|
|
5316
|
+
.UBQ_AssetLibraryOverview-module__block--eHaxL.UBQ_AssetLibraryOverview-module__modern--Q9-uV {
|
|
5317
|
+
padding-block-start: var(--ubq-margin-xs);
|
|
5318
|
+
}
|
|
5160
5319
|
.UBQ_AssetLibraryOverview-module__block--eHaxL hr {
|
|
5161
5320
|
margin-block: 0;
|
|
5162
5321
|
}
|
|
@@ -5186,7 +5345,8 @@ footer {
|
|
|
5186
5345
|
padding-inline: var(--ubq-margin-s);
|
|
5187
5346
|
padding-block-start: var(--ubq-margin-s);
|
|
5188
5347
|
}
|
|
5189
|
-
.UBQ_AssetLibrarySearch-module__searchInput--GoKQU
|
|
5348
|
+
.UBQ_AssetLibrarySearch-module__searchInput--GoKQU,
|
|
5349
|
+
.UBQ_AssetLibrarySearch-module__searchInput--GoKQU.UBQ_AssetLibrarySearch-module__modern--ROnZZ {
|
|
5190
5350
|
height: calc(var(--ubq-scale-base) * 10);
|
|
5191
5351
|
border-radius: var(--ubq-border_radius-m);
|
|
5192
5352
|
padding-left: calc(var(--ubq-typography-label-m-line_height) + var(--ubq-margin-s) + var(--ubq-margin-xs));
|
|
@@ -5412,7 +5572,7 @@ footer {
|
|
|
5412
5572
|
gap: var(--ubq-margin-xs);
|
|
5413
5573
|
padding: var(--ubq-margin-xs);
|
|
5414
5574
|
box-shadow: var(--ubq-effect-shadow), inset 0 0 0 1px var(--ubq-border-default);
|
|
5415
|
-
border-radius: var(--ubq-border_radius-
|
|
5575
|
+
border-radius: var(--ubq-border_radius-l);
|
|
5416
5576
|
background: var(--ubq-elevation-2);
|
|
5417
5577
|
}
|
|
5418
5578
|
.UBQ_CanvasMenu-module__block--hk7CF:empty {
|
|
@@ -5568,6 +5728,7 @@ svg.UBQ_DockBuilder-module__circularProgress---105B.UBQ_DockBuilder-module__larg
|
|
|
5568
5728
|
.UBQ_PropertyToggle-module__block--1Putg {
|
|
5569
5729
|
box-shadow: inset 0 0 0 0 transparent;
|
|
5570
5730
|
flex: 0 0 calc(6 * var(--ubq-scale-base));
|
|
5731
|
+
min-width: unset;
|
|
5571
5732
|
}
|
|
5572
5733
|
.UBQ_PropertyToggle-module__emptyGap--KNCCA {
|
|
5573
5734
|
flex: 0 0 calc(6 * var(--ubq-scale-base));
|
|
@@ -5575,6 +5736,9 @@ svg.UBQ_DockBuilder-module__circularProgress---105B.UBQ_DockBuilder-module__larg
|
|
|
5575
5736
|
-webkit-user-select: none;
|
|
5576
5737
|
user-select: none;
|
|
5577
5738
|
}
|
|
5739
|
+
.UBQ_PropertyToggle-module__emptyGap--KNCCA.UBQ_PropertyToggle-module__modern--Le9Uk {
|
|
5740
|
+
flex: 0 0 calc(8 * var(--ubq-scale-base));
|
|
5741
|
+
}
|
|
5578
5742
|
|
|
5579
5743
|
/* esbuild-sass-plugin:css-chunk:packages/ui/components/Inspector/AnimationSubInspector.module.scss */
|
|
5580
5744
|
.UBQ_AnimationSubInspector-module__panelContent--kCSYF {
|
|
@@ -5674,9 +5838,12 @@ svg.UBQ_DockBuilder-module__circularProgress---105B.UBQ_DockBuilder-module__larg
|
|
|
5674
5838
|
display: flex;
|
|
5675
5839
|
flex-direction: column;
|
|
5676
5840
|
justify-content: center;
|
|
5677
|
-
height: calc(2 *
|
|
5841
|
+
height: calc(2 * (2 * var(--ubq-margin-xs) + var(--ubq-typography-input-m-line_height)) + var(--ubq-margin-m));
|
|
5678
5842
|
align-self: flex-start;
|
|
5679
5843
|
}
|
|
5844
|
+
.UBQ_AspectLock-module__aspectLock--nMzUZ.UBQ_AspectLock-module__modern--ax0dL {
|
|
5845
|
+
height: calc(2 * (var(--ubq-margin-s) * 2 + var(--ubq-typography-input-m-line_height)) + var(--ubq-margin-m) + var(--ubq-margin-m));
|
|
5846
|
+
}
|
|
5680
5847
|
.UBQ_AspectLock-module__aspectIsUnlocked--zF52P > svg {
|
|
5681
5848
|
opacity: 0.55;
|
|
5682
5849
|
}
|
|
@@ -5795,6 +5962,9 @@ svg.UBQ_DockBuilder-module__circularProgress---105B.UBQ_DockBuilder-module__larg
|
|
|
5795
5962
|
.UBQ_PageSizeSettings-module__applyButton--7Tz6K {
|
|
5796
5963
|
width: calc(100% - var(--ubq-scale-base) * 8);
|
|
5797
5964
|
}
|
|
5965
|
+
.UBQ_PageSizeSettings-module__applyButton--7Tz6K.UBQ_PageSizeSettings-module__modern--loswq {
|
|
5966
|
+
width: calc(100% - var(--ubq-scale-base) * 10);
|
|
5967
|
+
}
|
|
5798
5968
|
|
|
5799
5969
|
/* esbuild-sass-plugin:css-chunk:packages/ui/components/Inspector/pageResize/PageResizeInspector.module.scss */
|
|
5800
5970
|
.UBQ_PageResizeInspector-module__noMargin--m6CLd {
|
|
@@ -5891,6 +6061,9 @@ svg.UBQ_DockBuilder-module__circularProgress---105B.UBQ_DockBuilder-module__larg
|
|
|
5891
6061
|
.UBQ_InspectorBar-module__block--5q45J .UBQ_InspectorBar-module__scrollableContent--J0TUj > button {
|
|
5892
6062
|
flex: 0 0 fit-content;
|
|
5893
6063
|
}
|
|
6064
|
+
.UBQ_InspectorBar-module__modern--5GUuH.UBQ_InspectorBar-module__block--5q45J {
|
|
6065
|
+
padding: var(--ubq-margin-s);
|
|
6066
|
+
}
|
|
5894
6067
|
|
|
5895
6068
|
/* esbuild-sass-plugin:css-chunk:packages/ui/builder/NavigationBarBuilder.module.scss */
|
|
5896
6069
|
.UBQ_NavigationBarBuilder-module__heading--6hOzh {
|
|
@@ -5911,7 +6084,6 @@ svg.UBQ_DockBuilder-module__circularProgress---105B.UBQ_DockBuilder-module__larg
|
|
|
5911
6084
|
width: 100%;
|
|
5912
6085
|
padding: var(--ubq-margin-m) var(--ubq-margin-l);
|
|
5913
6086
|
min-height: calc(var(--ubq-margin-xs) * 2 + var(--ubq-typography-button-m-line_height));
|
|
5914
|
-
max-height: calc(12 * var(--ubq-scale-base));
|
|
5915
6087
|
overflow-x: auto;
|
|
5916
6088
|
overflow-y: hidden;
|
|
5917
6089
|
background: var(--ubq-elevation-3);
|
|
@@ -5966,6 +6138,9 @@ svg.UBQ_DockBuilder-module__circularProgress---105B.UBQ_DockBuilder-module__larg
|
|
|
5966
6138
|
.UBQ_NavigationBar-module__block--arCer .UBQ_NavigationBar-module__scrollableContent--pnGsm > button {
|
|
5967
6139
|
flex: 0 0 fit-content;
|
|
5968
6140
|
}
|
|
6141
|
+
.UBQ_NavigationBar-module__modern--xcm5y.UBQ_NavigationBar-module__block--arCer {
|
|
6142
|
+
padding: var(--ubq-margin-m);
|
|
6143
|
+
}
|
|
5969
6144
|
|
|
5970
6145
|
/* esbuild-sass-plugin:css-chunk:packages/ui/components/UploadModal/UploadModal.module.scss */
|
|
5971
6146
|
.UBQ_UploadModal-module__content--bWxul p {
|
|
@@ -6112,6 +6287,9 @@ svg.UBQ_DockBuilder-module__circularProgress---105B.UBQ_DockBuilder-module__larg
|
|
|
6112
6287
|
.UBQ_VideoTimelineControls-module__expandButton--MRale {
|
|
6113
6288
|
margin-inline-start: var(--ubq-margin-s);
|
|
6114
6289
|
}
|
|
6290
|
+
.UBQ_VideoTimelineControls-module__modern--SBxyN.UBQ_VideoTimelineControls-module__block--51LSm {
|
|
6291
|
+
padding: var(--ubq-margin-s) var(--ubq-margin-m);
|
|
6292
|
+
}
|
|
6115
6293
|
|
|
6116
6294
|
/* esbuild-sass-plugin:css-chunk:packages/ui/utils/getScrollbarHeight.module.scss */
|
|
6117
6295
|
.UBQ_getScrollbarHeight-module__scrollbarMeasurement--5EFDV {
|
|
@@ -6495,9 +6673,15 @@ svg.UBQ_DockBuilder-module__circularProgress---105B.UBQ_DockBuilder-module__larg
|
|
|
6495
6673
|
}
|
|
6496
6674
|
.UBQ_AlignAndArrangeSectionRow-module__buttonGroup--BY3xO {
|
|
6497
6675
|
display: flex;
|
|
6498
|
-
gap:
|
|
6676
|
+
gap: var(--ubq-margin-s);
|
|
6499
6677
|
margin-right: 0;
|
|
6500
6678
|
}
|
|
6679
|
+
.UBQ_AlignAndArrangeSectionRow-module__modern--6jJoN.UBQ_AlignAndArrangeSectionRow-module__sectionRow--YCPJ7 {
|
|
6680
|
+
gap: var(--ubq-margin-m);
|
|
6681
|
+
}
|
|
6682
|
+
.UBQ_AlignAndArrangeSectionRow-module__modern--6jJoN .UBQ_AlignAndArrangeSectionRow-module__buttonGroup--BY3xO {
|
|
6683
|
+
gap: var(--ubq-margin-xs);
|
|
6684
|
+
}
|
|
6501
6685
|
|
|
6502
6686
|
/* esbuild-sass-plugin:css-chunk:packages/ui/components/Inspector/BlendModeSelect.module.scss */
|
|
6503
6687
|
.UBQ_BlendModeSelect-module__options--Oel9f {
|
|
@@ -6542,6 +6726,9 @@ svg.UBQ_DockBuilder-module__circularProgress---105B.UBQ_DockBuilder-module__larg
|
|
|
6542
6726
|
width: calc(var(--ubq-scale-base) * 19);
|
|
6543
6727
|
flex-shrink: 0;
|
|
6544
6728
|
}
|
|
6729
|
+
.UBQ_FontSize-module__modern--CRnLa.UBQ_FontSize-module__inBar--0otIU {
|
|
6730
|
+
width: calc(var(--ubq-scale-base) * 23);
|
|
6731
|
+
}
|
|
6545
6732
|
|
|
6546
6733
|
/* esbuild-sass-plugin:css-chunk:packages/ui/components/blocks/inputs/FontSizeRange/FontSizeRange.module.scss */
|
|
6547
6734
|
.UBQ_FontSizeRange-module__segmentedGroup--N2N-B {
|