@cesdk/cesdk-js 1.6.0-alpha.0 → 1.6.1
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/.browserslistrc +4 -4
- package/README.md +11 -11
- package/assets/core/cesdk.data +0 -0
- package/assets/core/cesdk.wasm +0 -0
- package/assets/i18n/de.json +48 -3
- package/assets/i18n/en.json +48 -3
- package/assets/ui/stylesheets/cesdk.css +16 -12
- package/cesdk-engine.umd.d.ts +2187 -1494
- package/cesdk-engine.umd.js +1 -1
- package/cesdk.umd.js +1 -1
- package/index.d.ts +2409 -1803
- package/package.json +5 -2
package/.browserslistrc
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
Edge >=
|
|
4
|
-
|
|
1
|
+
Firefox >= 86
|
|
2
|
+
Safari >= 14.1
|
|
3
|
+
Edge >= 88
|
|
4
|
+
Chrome >= 88
|
package/README.md
CHANGED
|
@@ -1,27 +1,27 @@
|
|
|
1
1
|

|
|
2
2
|
|
|
3
|
-
# CreativeEditor SDK
|
|
3
|
+
# CreativeEditor SDK
|
|
4
4
|
|
|
5
|
-
The CreativeEditor SDK (**CE.SDK**) for Web is a fully customizable, simple-to-use design editor.
|
|
5
|
+
The CreativeEditor SDK (**CE.SDK**) for Web is a fully customizable, simple-to-use design editor.
|
|
6
6
|
|
|
7
7
|
Seamlessly integrate it into any Web app with just a few lines of code. The editor combines the best of layout, typography and photo editing. **CE.SDK** also facilitates both template creation and adaption workflows, also featuring constraints and text placeholders for database automations.
|
|
8
8
|
|
|
9
9
|
Visit our [website](https://img.ly) for more tutorials on how to integrate and customize the editor for your specific use-case.
|
|
10
10
|
|
|
11
|
-
## Usage
|
|
11
|
+
## Usage
|
|
12
12
|
|
|
13
|
-
## 1. Install CreativeEditor SDK
|
|
14
|
-
Install the SDK with `npm`
|
|
15
|
-
```bash
|
|
13
|
+
## 1. Install the CreativeEditor SDK
|
|
14
|
+
Install the SDK with `npm`
|
|
15
|
+
```bash
|
|
16
16
|
npm install --save @cesdk/cesdk-js
|
|
17
17
|
```
|
|
18
18
|
|
|
19
19
|
or with `yarn`
|
|
20
|
-
```bash
|
|
20
|
+
```bash
|
|
21
21
|
yarn add @cesdk/cesdk-js
|
|
22
22
|
```
|
|
23
23
|
|
|
24
|
-
## 2. Create an empty Container
|
|
24
|
+
## 2. Create an empty Container
|
|
25
25
|
We need to add an empty `<div>` with an id or class as container for the SDK.
|
|
26
26
|
|
|
27
27
|
```html
|
|
@@ -37,15 +37,15 @@ The last step involves the configuration and instantiation of the SDK.
|
|
|
37
37
|
import CreativeEditorSDK from '@cesdk/cesdk-js'
|
|
38
38
|
|
|
39
39
|
CreativeEditorSDK
|
|
40
|
-
.init('#cesdk_container')
|
|
40
|
+
.init('#cesdk_container')
|
|
41
41
|
.then((instance) => {
|
|
42
42
|
/** do something with the instance of CreativeEditor SDK **/
|
|
43
43
|
});
|
|
44
44
|
```
|
|
45
45
|
## Documentation
|
|
46
|
-
The full documentation of CreativeEditor SDK can be found at
|
|
46
|
+
The full documentation of the CreativeEditor SDK can be found at
|
|
47
47
|
[https://img.ly/docs/cesdk/](https://img.ly/docs/cesdk/).
|
|
48
48
|
|
|
49
49
|
## License
|
|
50
50
|
|
|
51
|
-
The CreativeEditor SDK is a commercial product. To use it as such and get access to its white label version - without the watermark in the export - you need to unlock the SDK with a license file. You can purchase a license at https://img.ly/pricing.
|
|
51
|
+
The CreativeEditor SDK is a commercial product. To use it as such and get access to its white label version - without the watermark in the export - you need to unlock the SDK with a license file. You can purchase a license at https://img.ly/pricing.
|
package/assets/core/cesdk.data
CHANGED
|
Binary file
|
package/assets/core/cesdk.wasm
CHANGED
|
Binary file
|
package/assets/i18n/de.json
CHANGED
|
@@ -327,6 +327,7 @@
|
|
|
327
327
|
"component.canvas.state.loading": "Editor wird geladen",
|
|
328
328
|
"component.canvas.state.loading.description": "Nur ein paar Sekunden...",
|
|
329
329
|
"component.canvas.state.unsupported": "Ihr Browser wird nicht unterstützt",
|
|
330
|
+
"component.colorPicker.colorItem.description": "Diese Farbe verwenden",
|
|
330
331
|
"component.colorPicker.colorItem": "Farbelement {{index}}",
|
|
331
332
|
"component.colorPicker.colorItem.hexInput": "Hex",
|
|
332
333
|
"component.colorPicker.colorItem.transparent": "Farbelement {{index}}, Farbname: Transparent",
|
|
@@ -334,8 +335,11 @@
|
|
|
334
335
|
"component.colorPicker.hsl.description": "{{componentName}}, $t(common.nearestColorName): {{nearestColorName}}; $t(common.colorValue): Farbwert: {{hue}}°, Farbsättigung: {{saturation}}%, Helligkeit: {{lightness}}%",
|
|
335
336
|
"component.colorPicker.hueGradient": "Farbverlaufston-Auswahl",
|
|
336
337
|
"component.colorSchemeSelect.accent": "Akzentfarbe",
|
|
338
|
+
"component.colorSchemeSelect.accent.description": "Akzentfarbe ändern",
|
|
337
339
|
"component.colorSchemeSelect.active": "Aktivfarbe",
|
|
340
|
+
"component.colorSchemeSelect.active.description": "Aktivfarbe ändern",
|
|
338
341
|
"component.colorSchemeSelect.background": "Hintergrundfarbe",
|
|
342
|
+
"component.colorSchemeSelect.background.description": "Hintergrundfarbe ändern",
|
|
339
343
|
"component.dnd.description": "Die hochgeladenen Dateien werden in der Bibliothek gespeichert",
|
|
340
344
|
"component.dnd.prompt": "Dateien hier hinziehen",
|
|
341
345
|
"component.dockIconSizeSelect": "Dock Icon Skalierung",
|
|
@@ -378,6 +382,7 @@
|
|
|
378
382
|
"component.library.breadcrumbRoot": "Alle",
|
|
379
383
|
"component.library.clearSearch": "Suchen leeren",
|
|
380
384
|
"component.library.elements": "Elemente",
|
|
385
|
+
"component.library.enterSection": "Bereich öffnen",
|
|
381
386
|
"component.library.error": "Keine Verbindung",
|
|
382
387
|
"component.library.loading": "Lade …",
|
|
383
388
|
"component.library.noItems": "Keine Elemente vorhanden",
|
|
@@ -410,8 +415,8 @@
|
|
|
410
415
|
"component.templateLibrary": "Vorlagen-Bibliothek",
|
|
411
416
|
"component.templateLibrary.abort": "$t(common.cancel)",
|
|
412
417
|
"component.templateLibrary.confirm": "Ja, Änderungen verwerfen",
|
|
413
|
-
"component.templateLibrary.dialog.body": "
|
|
414
|
-
"component.templateLibrary.dialog.headline": "
|
|
418
|
+
"component.templateLibrary.dialog.body": "Inhalte wie Bilder und Text können nicht übernommen werden und werden dementsprechend verworfen.",
|
|
419
|
+
"component.templateLibrary.dialog.headline": "Aktuelles Dokument ersetzen?",
|
|
415
420
|
"component.templateLibrary.dialog.invalid": "Diese Vorlage ist ungültig und kann leider nicht benutzt werden.",
|
|
416
421
|
"component.themeSelect": "Farbschema",
|
|
417
422
|
"component.themeSelect.dark": "Dunkel",
|
|
@@ -447,23 +452,29 @@
|
|
|
447
452
|
"input.adjustments": "Korrekturen",
|
|
448
453
|
"input.adjustments.basic": "Grundlagen",
|
|
449
454
|
"input.adjustments.refinements": "Feinheiten",
|
|
455
|
+
"input.adjustments.tooltip": "Korrekturen ändern",
|
|
450
456
|
"input.alwaysOnTop": "Immer im Vordergrund",
|
|
451
457
|
"input.appearance": "Aussehen",
|
|
452
458
|
"input.aspectLock": "Proportionen beibehalten",
|
|
453
459
|
"input.aspectLock.description": "Proportionen beibehalten / frei",
|
|
454
460
|
"input.bleedMargin.select": "Anschnitt auswählen",
|
|
455
461
|
"input.blur": "Unschärfe",
|
|
462
|
+
"input.blur.tooltip": "Unschärfe ändern",
|
|
456
463
|
"input.character": "Schriftzeichen",
|
|
457
464
|
"input.clipContent": "Inhalt beschneiden",
|
|
458
465
|
"input.clipContent.off.description": "Inhalt beschneiden deaktivieren",
|
|
459
466
|
"input.clipContent.on.description": "Inhalt beschneiden aktivieren",
|
|
460
467
|
"input.document": "$t(block.scene)",
|
|
461
468
|
"input.effect": "Effekt",
|
|
469
|
+
"input.effect.tooltip": "Effekt ändern",
|
|
462
470
|
"input.export": "Export",
|
|
463
471
|
"input.filter": "Filter",
|
|
472
|
+
"input.filter.tooltip": "Filter ändern",
|
|
464
473
|
"input.fontSelect": "Ausgewählte Schriftart: {{font}}",
|
|
465
474
|
"input.fontSelect.fallback": "Standard",
|
|
475
|
+
"input.fontSelect.tooltip": "Schriftart ändern",
|
|
466
476
|
"input.fontSize.select": "Schriftgröße auswählen",
|
|
477
|
+
"input.fontStyle.toggle": "{{style}} umschalten",
|
|
467
478
|
"input.gradient.activateColorStop": "Leertaste drücken zum aktivieren.",
|
|
468
479
|
"input.gradient.colorPosition": "Farbposition",
|
|
469
480
|
"input.gradient.colorStop": "Farbmarker",
|
|
@@ -483,11 +494,13 @@
|
|
|
483
494
|
"input.pages": "Seiten",
|
|
484
495
|
"input.preset": "Vorlage",
|
|
485
496
|
"input.preset.description": "Seitenvorlage",
|
|
497
|
+
"input.preset.tooltip": "$(input.preset) auswählen",
|
|
486
498
|
"input.propertyToggle.disable": "Deaktivieren",
|
|
487
499
|
"input.propertyToggle.enable": "Aktivieren",
|
|
488
500
|
"input.propertyToggle.hidden": "Versteckt",
|
|
489
501
|
"input.propertyToggle.visible": "Sichtbar",
|
|
490
502
|
"input.rename": "{{designElementName}} umbenennen",
|
|
503
|
+
"input.resolution.select": "{{which}} auswählen",
|
|
491
504
|
"input.shape": "Form",
|
|
492
505
|
"input.shape.options": "Form Optionen",
|
|
493
506
|
"input.showInExport": "Im Export anzeigen",
|
|
@@ -495,8 +508,11 @@
|
|
|
495
508
|
"input.text.advanced": "$t(common.advanced)",
|
|
496
509
|
"input.text.advanced.description": "Zeilenhöhe, Abstände, Ausrichtung & Größe",
|
|
497
510
|
"input.text.placeholder": "Etwas aufschreiben",
|
|
498
|
-
"input.transform
|
|
511
|
+
"input.transform": "$t(common.position) & $t(common.size)",
|
|
512
|
+
"input.transform.description": "$t(common.position) und $t(common.size) ändern",
|
|
499
513
|
"input.typefaceSelect.description": "Ausgewählte Schriftfamilie: {{fontFamily}}",
|
|
514
|
+
"input.typefaceSelect.tooltip": "Schriftfamilie ändern",
|
|
515
|
+
"input.unit.tooltip": "$(common.unit) auswählen",
|
|
500
516
|
"input.uploadImage": "Bild wird hochgeladen...",
|
|
501
517
|
"libraries.local.label": "Uploads",
|
|
502
518
|
"libraries.ly.img.image.label": "Bilder",
|
|
@@ -506,6 +522,7 @@
|
|
|
506
522
|
"libraries.ly.img.sticker.emoticons.label": "Emoticons",
|
|
507
523
|
"libraries.ly.img.sticker.hand.label": "Hands",
|
|
508
524
|
"libraries.ly.img.sticker.label": "Sticker",
|
|
525
|
+
"libraries.ly.img.template.label": "Vorlagen",
|
|
509
526
|
"libraries.ly.img.text.headline.label": "Überschrift",
|
|
510
527
|
"libraries.ly.img.text.label": "Text",
|
|
511
528
|
"libraries.ly.img.text.paragraph.label": "Absatz",
|
|
@@ -563,7 +580,28 @@
|
|
|
563
580
|
"property.autoSize.autoHeight.description": "Höhe des Textfeldes automatisch skalieren",
|
|
564
581
|
"property.autoSize.fixedFrame.description": "Feste Größe des Textfeldes",
|
|
565
582
|
"property.backgroundColor": "Hintergrund",
|
|
583
|
+
"property.backgroundColor.description": "Hintergrundfarbe ändern",
|
|
566
584
|
"property.bleedMargin": "Anschnitt",
|
|
585
|
+
"property.blendMode": "Überblendmodi",
|
|
586
|
+
"property.blendMode.Color": "Farbe",
|
|
587
|
+
"property.blendMode.ColorBurn": "Farbig nachbelichten",
|
|
588
|
+
"property.blendMode.ColorDodge": "Farbig abwedeln",
|
|
589
|
+
"property.blendMode.Darken": "Verdunkeln",
|
|
590
|
+
"property.blendMode.description": "Ausgewählter Überblendmodi: {{mode}}",
|
|
591
|
+
"property.blendMode.tooltip": "Überblendmodi ändern",
|
|
592
|
+
"property.blendMode.Difference": "Differenz",
|
|
593
|
+
"property.blendMode.Exclusion": "Ausschluss",
|
|
594
|
+
"property.blendMode.HardLight": "Hartes Licht",
|
|
595
|
+
"property.blendMode.Hue": "Farbton",
|
|
596
|
+
"property.blendMode.Lighten": "Aufhellen",
|
|
597
|
+
"property.blendMode.Luminosity": "Luminanz",
|
|
598
|
+
"property.blendMode.Multiply": "Multiplizieren",
|
|
599
|
+
"property.blendMode.Normal": "Normal",
|
|
600
|
+
"property.blendMode.Overlay": "Ineinanderkopieren",
|
|
601
|
+
"property.blendMode.PassThrough": "Durchschleifen",
|
|
602
|
+
"property.blendMode.Saturation": "Sätigung",
|
|
603
|
+
"property.blendMode.Screen": "Negativ multiplizieren",
|
|
604
|
+
"property.blendMode.SoftLight": "Weiches Licht",
|
|
567
605
|
"property.blur.extrudeBlur": "Zoom Unschärfe",
|
|
568
606
|
"property.blur.extrudeBlur.amount": "Intensität",
|
|
569
607
|
"property.blur.linearBlur": "Lineare Unschärfe",
|
|
@@ -589,6 +627,7 @@
|
|
|
589
627
|
"property.blur.uniformBlur": "Gaußscher Weichzeichner",
|
|
590
628
|
"property.blur.uniformBlur.intensity": "Intensität",
|
|
591
629
|
"property.color": "Farbe",
|
|
630
|
+
"property.color.description": "Farbe ändern",
|
|
592
631
|
"property.crop": "Zuschneiden",
|
|
593
632
|
"property.crop.offset": "{{axis}} Versatz",
|
|
594
633
|
"property.crop.offset.description": "Versatz des Bildes auf der {{axis}}-Achse in {{unit}}",
|
|
@@ -596,6 +635,7 @@
|
|
|
596
635
|
"property.crop.scale.description": "Bildabmessungen proportional skalieren",
|
|
597
636
|
"property.crop.size": "Zuschneidebereich",
|
|
598
637
|
"property.crop.size.description": "{{dimension}} des Zuschneidebereichs in {{unit}}",
|
|
638
|
+
"property.crop.tooltip": "Zuschnitt ändern",
|
|
599
639
|
"property.crop.transform": "$t(block.image)",
|
|
600
640
|
"property.duotoneFilter.breezy": "Breezy",
|
|
601
641
|
"property.duotoneFilter.clash": "Clash",
|
|
@@ -664,9 +704,12 @@
|
|
|
664
704
|
"property.effect.waves.strength": "Intensität",
|
|
665
705
|
"property.effect.waves.time": "Varianz",
|
|
666
706
|
"property.fill": "Füllung",
|
|
707
|
+
"property.fill.description": "Füllung ändern",
|
|
667
708
|
"property.fillType": "Füllung",
|
|
668
709
|
"property.fillType.gradient": "Farbverlauf",
|
|
710
|
+
"property.fillType.gradient.description": "Mit Farbverlauf füllen",
|
|
669
711
|
"property.fillType.solid": "Einfarbig",
|
|
712
|
+
"property.fillType.solid.description": "Einfarbig füllen",
|
|
670
713
|
"property.flip": "Spiegeln",
|
|
671
714
|
"property.flip.x": "Horizontal spiegeln",
|
|
672
715
|
"property.flip.y": "Vertikal spiegeln",
|
|
@@ -698,6 +741,7 @@
|
|
|
698
741
|
"property.position.description": "Position auf der {{axis}}-Achse in {{unit}}",
|
|
699
742
|
"property.sides": "Seiten",
|
|
700
743
|
"property.strokeColor": "Umriss",
|
|
744
|
+
"property.strokeColor.description": "Umrissfarbe ändern",
|
|
701
745
|
"property.strokeJoin": "Kanten",
|
|
702
746
|
"property.strokeJoin.bevel.description": "Abgeschrägte Kanten benutzen",
|
|
703
747
|
"property.strokeJoin.miter.description": "Harte Kanten benutzen",
|
|
@@ -717,6 +761,7 @@
|
|
|
717
761
|
"property.strokeStyle.longDashedRound": "Lang Gestrichelt Rund",
|
|
718
762
|
"property.strokeStyle.solid": "Durchgängig",
|
|
719
763
|
"property.strokeWidth": "Breite",
|
|
764
|
+
"property.strokeWidth.description": "Strichbreite ändern",
|
|
720
765
|
"property.textAlignment.horizontal": "Horizontale Ausrichtung",
|
|
721
766
|
"property.textAlignment.horizontal.center": "Text mittig ausrichten",
|
|
722
767
|
"property.textAlignment.horizontal.left": "Text links ausrichten",
|
package/assets/i18n/en.json
CHANGED
|
@@ -327,6 +327,7 @@
|
|
|
327
327
|
"component.canvas.state.loading": "Loading Editor",
|
|
328
328
|
"component.canvas.state.loading.description": "Just a few seconds...",
|
|
329
329
|
"component.canvas.state.unsupported": "Browser is not supported",
|
|
330
|
+
"component.colorPicker.colorItem.description": "Use this color",
|
|
330
331
|
"component.colorPicker.colorItem": "Color item {{index}}",
|
|
331
332
|
"component.colorPicker.colorItem.hexInput": "Hex",
|
|
332
333
|
"component.colorPicker.colorItem.transparent": "Color item {{index}}, Color name: transparent",
|
|
@@ -334,8 +335,11 @@
|
|
|
334
335
|
"component.colorPicker.hsl.description": "{{componentName}}, $t(common.nearestColorName): {{nearestColorName}}; $t(common.colorValue): hue: {{hue}}°, saturation: {{saturation}}%, lightness: {{lightness}}%",
|
|
335
336
|
"component.colorPicker.hueGradient": "Hue gradient selection",
|
|
336
337
|
"component.colorSchemeSelect.accent": "Accent color",
|
|
338
|
+
"component.colorSchemeSelect.accent.description": "Change accent color",
|
|
337
339
|
"component.colorSchemeSelect.active": "Active color",
|
|
340
|
+
"component.colorSchemeSelect.active.description": "Change active color",
|
|
338
341
|
"component.colorSchemeSelect.background": "Background color",
|
|
342
|
+
"component.colorSchemeSelect.background.description": "Change background color",
|
|
339
343
|
"component.dnd.description": "The added files are stored in the library",
|
|
340
344
|
"component.dnd.prompt": "Drag file here",
|
|
341
345
|
"component.dockIconSizeSelect": "Dock Icon Scaling",
|
|
@@ -378,6 +382,7 @@
|
|
|
378
382
|
"component.library.breadcrumbRoot": "All",
|
|
379
383
|
"component.library.clearSearch": "Clear search",
|
|
380
384
|
"component.library.elements": "Elements",
|
|
385
|
+
"component.library.enterSection": "Enter section",
|
|
381
386
|
"component.library.error": "Cannot connec to to asset source",
|
|
382
387
|
"component.library.loading": "Loading …",
|
|
383
388
|
"component.library.noItems": "No elements",
|
|
@@ -410,8 +415,8 @@
|
|
|
410
415
|
"component.templateLibrary": "Template Library",
|
|
411
416
|
"component.templateLibrary.abort": "$t(common.cancel)",
|
|
412
417
|
"component.templateLibrary.confirm": "Yes, discard changes",
|
|
413
|
-
"component.templateLibrary.dialog.body": "
|
|
414
|
-
"component.templateLibrary.dialog.headline": "
|
|
418
|
+
"component.templateLibrary.dialog.body": "Your content, like images and text, can not be adopted and all content will be discarted.",
|
|
419
|
+
"component.templateLibrary.dialog.headline": "Replace current document?",
|
|
415
420
|
"component.templateLibrary.dialog.invalid": "This preset is not valid and cannot be used.",
|
|
416
421
|
"component.themeSelect": "Theme",
|
|
417
422
|
"component.themeSelect.dark": "Dark",
|
|
@@ -446,23 +451,29 @@
|
|
|
446
451
|
"input.adjustments": "Adjustments",
|
|
447
452
|
"input.adjustments.basic": "Basic",
|
|
448
453
|
"input.adjustments.refinements": "Refinements",
|
|
454
|
+
"input.adjustments.tooltip": "Change Adjustments",
|
|
449
455
|
"input.alwaysOnTop": "Stay always on top",
|
|
450
456
|
"input.appearance": "Appearance",
|
|
451
457
|
"input.aspectLock": "Lock proportions",
|
|
452
458
|
"input.aspectLock.description": "Toggle proportion lock",
|
|
453
459
|
"input.bleedMargin.select": "Select bleed margins",
|
|
454
460
|
"input.blur": "Blur",
|
|
461
|
+
"input.blur.tooltip": "Change Blur",
|
|
455
462
|
"input.character": "Character",
|
|
456
463
|
"input.clipContent": "Clip content",
|
|
457
464
|
"input.clipContent.off.description": "Turn clip content off",
|
|
458
465
|
"input.clipContent.on.description": "Turn clip content on",
|
|
459
466
|
"input.document": "$t(block.scene)",
|
|
460
467
|
"input.effect": "Effect",
|
|
468
|
+
"input.effect.tooltip": "Change Effect",
|
|
461
469
|
"input.export": "Export",
|
|
462
470
|
"input.filter": "Filter",
|
|
471
|
+
"input.filter.tooltip": "Change Filter",
|
|
463
472
|
"input.fontSelect": "Selected font: {{font}}",
|
|
464
473
|
"input.fontSelect.fallback": "Standard",
|
|
474
|
+
"input.fontSelect.tooltip": "Change font style",
|
|
465
475
|
"input.fontSize.select": "Select font size",
|
|
476
|
+
"input.fontStyle.toggle": "Toggle {{style}}",
|
|
466
477
|
"input.gradient.activateColorStop": "Press space to activate.",
|
|
467
478
|
"input.gradient.colorPosition": "Color Position",
|
|
468
479
|
"input.gradient.colorStop": "Color stop",
|
|
@@ -482,11 +493,13 @@
|
|
|
482
493
|
"input.pages": "Pages",
|
|
483
494
|
"input.preset": "Preset",
|
|
484
495
|
"input.preset.description": "Page format preset",
|
|
496
|
+
"input.preset.tooltip": "Select $t(input.preset)",
|
|
485
497
|
"input.propertyToggle.disable": "Disable {{property}}",
|
|
486
498
|
"input.propertyToggle.enable": "Enable {{property}}",
|
|
487
499
|
"input.propertyToggle.hidden": "Hidden",
|
|
488
500
|
"input.propertyToggle.visible": "Visible",
|
|
489
501
|
"input.rename": "Rename {{designElementName}}",
|
|
502
|
+
"input.resolution.select": "Select {{which}}",
|
|
490
503
|
"input.shape": "Shape",
|
|
491
504
|
"input.shape.options": "Shape Options",
|
|
492
505
|
"input.showInExport": "Show in export",
|
|
@@ -494,8 +507,11 @@
|
|
|
494
507
|
"input.text.advanced": "$t(common.advanced)",
|
|
495
508
|
"input.text.advanced.description": "Line Height, Spacing, Alignment & Sizing",
|
|
496
509
|
"input.text.placeholder": "Write Something",
|
|
497
|
-
"input.transform
|
|
510
|
+
"input.transform": "$t(common.position) & $t(common.size)",
|
|
511
|
+
"input.transform.description": "Adjust $t(common.position) and $t(common.size)",
|
|
498
512
|
"input.typefaceSelect.description": "Selected font typeface: {{fontFamily}}",
|
|
513
|
+
"input.typefaceSelect.tooltip": "Change font typeface",
|
|
514
|
+
"input.unit.tooltip": "Select $(common.unit)",
|
|
499
515
|
"input.uploadImage": "Uploading image...",
|
|
500
516
|
"libraries.local.label": "Uploads",
|
|
501
517
|
"libraries.ly.img.image.label": "Images",
|
|
@@ -505,6 +521,7 @@
|
|
|
505
521
|
"libraries.ly.img.sticker.emoticons.label": "Emoticons",
|
|
506
522
|
"libraries.ly.img.sticker.hand.label": "Hands",
|
|
507
523
|
"libraries.ly.img.sticker.label": "Stickers",
|
|
524
|
+
"libraries.ly.img.template.label": "Templates",
|
|
508
525
|
"libraries.ly.img.text.headline.label": "Headline",
|
|
509
526
|
"libraries.ly.img.text.label": "Text",
|
|
510
527
|
"libraries.ly.img.text.paragraph.label": "Paragraph",
|
|
@@ -562,7 +579,28 @@
|
|
|
562
579
|
"property.autoSize.autoHeight.description": "Automatically scale the text frame's height",
|
|
563
580
|
"property.autoSize.fixedFrame.description": "Maintain the text's frame",
|
|
564
581
|
"property.backgroundColor": "Background",
|
|
582
|
+
"property.backgroundColor.description": "Change background color",
|
|
565
583
|
"property.bleedMargin": "Bleed Margin",
|
|
584
|
+
"property.blendMode": "Blend Mode",
|
|
585
|
+
"property.blendMode.Color": "Color",
|
|
586
|
+
"property.blendMode.ColorBurn": "Color Burn",
|
|
587
|
+
"property.blendMode.ColorDodge": "Color Dodge",
|
|
588
|
+
"property.blendMode.Darken": "Darken",
|
|
589
|
+
"property.blendMode.description": "Selected blend mode: {{mode}}",
|
|
590
|
+
"property.blendMode.tooltip": "Change blend mode",
|
|
591
|
+
"property.blendMode.Difference": "Difference",
|
|
592
|
+
"property.blendMode.Exclusion": "Exclusion",
|
|
593
|
+
"property.blendMode.HardLight": "Hard Light",
|
|
594
|
+
"property.blendMode.Hue": "Hue",
|
|
595
|
+
"property.blendMode.Lighten": "Lighten",
|
|
596
|
+
"property.blendMode.Luminosity": "Luminosity",
|
|
597
|
+
"property.blendMode.Multiply": "Multiply",
|
|
598
|
+
"property.blendMode.Normal": "Normal",
|
|
599
|
+
"property.blendMode.Overlay": "Overlay",
|
|
600
|
+
"property.blendMode.PassThrough": "Pass Through",
|
|
601
|
+
"property.blendMode.Saturation": "Saturation",
|
|
602
|
+
"property.blendMode.Screen": "Screen",
|
|
603
|
+
"property.blendMode.SoftLight": "Soft Light",
|
|
566
604
|
"property.blur.extrudeBlur": "Extrude Blur",
|
|
567
605
|
"property.blur.extrudeBlur.amount": "Intensity",
|
|
568
606
|
"property.blur.linearBlur": "Linear Blur",
|
|
@@ -588,6 +626,7 @@
|
|
|
588
626
|
"property.blur.uniformBlur": "Gaussian Blur",
|
|
589
627
|
"property.blur.uniformBlur.intensity": "Intensity",
|
|
590
628
|
"property.color": "Color",
|
|
629
|
+
"property.color.description": "Change Color",
|
|
591
630
|
"property.crop": "Crop",
|
|
592
631
|
"property.crop.offset": "{{axis}} Offset",
|
|
593
632
|
"property.crop.offset.description": "Crop offset on the {{axis}}-axis in {{unit}}",
|
|
@@ -595,6 +634,7 @@
|
|
|
595
634
|
"property.crop.scale.description": "Proportionally scale image dimensions",
|
|
596
635
|
"property.crop.size": "Crop Area",
|
|
597
636
|
"property.crop.size.description": "{{dimension}} of the crop frame in {{unit}}",
|
|
637
|
+
"property.crop.tooltip": "Change Crop properties",
|
|
598
638
|
"property.crop.transform": "$t(block.image)",
|
|
599
639
|
"property.duotoneFilter.breezy": "Breezy",
|
|
600
640
|
"property.duotoneFilter.clash": "Clash",
|
|
@@ -679,9 +719,12 @@
|
|
|
679
719
|
"property.effect.waves.strength": "Intensity",
|
|
680
720
|
"property.effect.waves.time": "Variation",
|
|
681
721
|
"property.fill": "Fill",
|
|
722
|
+
"property.fill.description": "Change fill",
|
|
682
723
|
"property.fillType": "Fill Type",
|
|
683
724
|
"property.fillType.gradient": "Gradient",
|
|
725
|
+
"property.fillType.gradient.description": "Use a gradient fill",
|
|
684
726
|
"property.fillType.solid": "Solid",
|
|
727
|
+
"property.fillType.solid.description": "Use a solid fill color",
|
|
685
728
|
"property.flip": "Flip",
|
|
686
729
|
"property.flip.x": "Flip horizontal",
|
|
687
730
|
"property.flip.y": "Flip vertical",
|
|
@@ -774,6 +817,7 @@
|
|
|
774
817
|
"property.position.description": "Position on the {{axis}}-axis in {{unit}}",
|
|
775
818
|
"property.sides": "Sides",
|
|
776
819
|
"property.strokeColor": "Stroke",
|
|
820
|
+
"property.strokeColor.description": "Change stroke color",
|
|
777
821
|
"property.strokeJoin": "Join",
|
|
778
822
|
"property.strokeJoin.bevel.description": "Use bevelled joins",
|
|
779
823
|
"property.strokeJoin.miter.description": "Use mitered joins",
|
|
@@ -793,6 +837,7 @@
|
|
|
793
837
|
"property.strokeStyle.longDashedRound": "Long Dashed Round",
|
|
794
838
|
"property.strokeStyle.solid": "Solid",
|
|
795
839
|
"property.strokeWidth": "Width",
|
|
840
|
+
"property.strokeWidth.description": "Change stroke width",
|
|
796
841
|
"property.textAlignment.horizontal": "Horizontal Alignment",
|
|
797
842
|
"property.textAlignment.horizontal.center": "Align text to the center",
|
|
798
843
|
"property.textAlignment.horizontal.left": "Align text to the left",
|
|
@@ -13,8 +13,9 @@
|
|
|
13
13
|
.UBQ_ButtonGroup__block--L2MdS>*{margin-right:1px}.UBQ_ButtonGroup__block--L2MdS>*:last-child{margin-right:0}
|
|
14
14
|
.UBQ_Checkbox__block--_q3kQ{min-width:var(--ubq-margin-m);display:flex;justify-content:space-between;padding:var(--ubq-margin-xs) 0}.UBQ_Checkbox__block--_q3kQ:not(:last-child){margin-bottom:var(--ubq-margin-m)}.UBQ_Checkbox__block--_q3kQ>*{margin-right:var(--ubq-margin-xs)}.UBQ_Checkbox__block--_q3kQ.UBQ_Checkbox__labelPositionRight--ArERD .UBQ_Checkbox__checkbox-container--Cqvhp{order:1}.UBQ_Checkbox__block--_q3kQ.UBQ_Checkbox__labelPositionRight--ArERD label{order:2}.UBQ_Checkbox__block--_q3kQ>.UBQ_Checkbox__checkbox-container--Cqvhp{position:relative;width:var(--ubq-margin-l);height:var(--ubq-margin-l);flex-shrink:0;display:flex;justify-content:center;align-items:center}.UBQ_Checkbox__block--_q3kQ>.UBQ_Checkbox__checkbox-container--Cqvhp>*{width:var(--ubq-margin-m);height:var(--ubq-margin-m);margin:0;position:absolute}.UBQ_Checkbox__block--_q3kQ>.UBQ_Checkbox__checkbox-container--Cqvhp>input{opacity:0;z-index:1;cursor:pointer}.UBQ_Checkbox__block--_q3kQ>.UBQ_Checkbox__checkbox-container--Cqvhp>input:focus~.UBQ_Checkbox__checkbox--uu287{box-shadow:var(--ubq-effect-focus),inset 0 0 0 1px var(--ubq-Checkbox-border-color, rgba(255, 255, 255, 0.1))}.UBQ_Checkbox__block--_q3kQ>.UBQ_Checkbox__checkbox-container--Cqvhp>input:-moz-focusring~.UBQ_Checkbox__checkbox--uu287{opacity:1;z-index:2;box-shadow:var(--ubq-effect-focus),inset 0 0 0 1px var(--ubq-Checkbox-border-color, rgba(255, 255, 255, 0.1))}.UBQ_Checkbox__block--_q3kQ>.UBQ_Checkbox__checkbox-container--Cqvhp>input:-moz-focusring~.UBQ_Checkbox__checkbox--uu287:focus:not(:focus-visible){outline:none}.UBQ_Checkbox__block--_q3kQ>.UBQ_Checkbox__checkbox-container--Cqvhp>input:focus-visible~.UBQ_Checkbox__checkbox--uu287{opacity:1;z-index:2;box-shadow:var(--ubq-effect-focus),inset 0 0 0 1px var(--ubq-Checkbox-border-color, rgba(255, 255, 255, 0.1))}.UBQ_Checkbox__block--_q3kQ>.UBQ_Checkbox__checkbox-container--Cqvhp>input:focus-visible~.UBQ_Checkbox__checkbox--uu287:focus:not(:focus-visible){outline:none}.UBQ_Checkbox__block--_q3kQ>.UBQ_Checkbox__checkbox-container--Cqvhp>.UBQ_Checkbox__checkbox--uu287{border-radius:var(--ubq-border_radius-s);background:var(--ubq-Checkbox-background, var(--ubq-interactive-default));box-shadow:inset 0 0 0 1px var(--ubq-Checkbox-border-color, rgba(255, 255, 255, 0.1))}.UBQ_Checkbox__block--_q3kQ>.UBQ_Checkbox__checkbox-container--Cqvhp>.UBQ_Checkbox__checkbox--uu287>svg{width:var(--ubq-margin-m);height:var(--ubq-margin-m)}.UBQ_Checkbox__block--_q3kQ>.UBQ_Checkbox__checkbox-container--Cqvhp>.UBQ_Checkbox__checkbox--uu287>*{display:none}.UBQ_Checkbox__block--_q3kQ>.UBQ_Checkbox__checkbox-container--Cqvhp>.UBQ_Checkbox__checkbox--uu287[data-checked=true]{background:var(--ubq-Checkbox-background--active, var(--ubq-interactive-active-default))}.UBQ_Checkbox__block--_q3kQ>.UBQ_Checkbox__checkbox-container--Cqvhp>.UBQ_Checkbox__checkbox--uu287[data-checked=true]>*{color:var(--ubq-Checkbox-foreground--active, var(--ubq-foreground-active));display:block}.UBQ_Checkbox__block--_q3kQ>label{color:var(--ubq-Checkbox-label-foreground, var(--ubq-foreground-light));font-size:var(--ubq-typography-label-m-size);line-height:var(--ubq-typography-label-m-line_height);letter-spacing:var(--ubq-typography-label-m-letter_spacing);font-family:var(--ubq-typography-label-m-font_family);flex-grow:1;display:flex;align-items:center;cursor:pointer}.UBQ_Checkbox__block--_q3kQ>label[data-checked=true]{color:var(--ubq-Checkbox-label-foreground--active, var(--ubq-foreground-default))}.UBQ_Checkbox__block--_q3kQ:hover>.UBQ_Checkbox__checkbox-container--Cqvhp>.UBQ_Checkbox__checkbox--uu287[data-checked=true]{background:var(--ubq-Checkbox-background--active-hover, var(--ubq-interactive-active-hover))}.UBQ_Checkbox__block--_q3kQ:hover>.UBQ_Checkbox__checkbox-container--Cqvhp>.UBQ_Checkbox__checkbox--uu287[data-checked=false]{background:var(--ubq-Checkbox-background--hover, var(--ubq-interactive-hover))}.UBQ_Checkbox__block--_q3kQ:hover>.UBQ_Checkbox__checkbox-container--Cqvhp>.UBQ_Checkbox__checkbox--uu287[data-checked=false]>*{display:none}.UBQ_Checkbox__block--_q3kQ:hover>label{color:var(--ubq-Checkbox-label-foreground--hover, var(--ubq-foreground-light))}.UBQ_Checkbox__disabled--s4MFI{opacity:.55;pointer-events:none}.UBQ_Checkbox__icon--_PdOU{margin-right:var(--ubq-margin-xs);margin-left:calc(var(--ubq-margin-xs) / 2)}
|
|
15
15
|
|
|
16
|
-
.UBQ_ColorField__block--G66ae{display:flex;height:calc(var(--ubq-margin-l) + var(--ubq-margin-
|
|
17
|
-
.UBQ_ColorPopover__button--TXCo1{--ubq-Button-padding: 0;box-shadow:inset 0 0 0 1px var(--ubq-border-contrast);border-radius:var(--ubq-border_radius-m);overflow:auto}.UBQ_ColorPopover__colorField--g7rUi{padding:0;background-color:transparent}.UBQ_ColorPopover__colorFieldContent--_2yuh{width:100%;display:grid;grid-template-areas:"stack";background-color:transparent}.UBQ_ColorPopover__colorFieldContent--_2yuh>*{grid-area:stack}.UBQ_ColorPopover__donutHole--v4plh{display:none;width:calc(2 * var(--ubq-scale-base));height:calc(2 * var(--ubq-scale-base));background-color:var(--ubq-elevation-1);box-shadow:0 0 0 1px var(--ubq-border-contrast);border-radius:50%;margin:auto;z-index:
|
|
16
|
+
.UBQ_ColorField__block--G66ae{display:flex;height:calc(var(--ubq-margin-l) + var(--ubq-margin-xs));width:calc(var(--ubq-margin-l) + var(--ubq-margin-xs));box-sizing:border-box;border:none;border-radius:50%;outline:none;box-shadow:inset 0 0 0 1px var(--ubq-ColorField-inner-border-color, var(--ubq-border-contrast)),0 0 0 0px var(--ubq-ColorField-inner-border-color, transparent);cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;overflow:hidden}.UBQ_ColorField__block--G66ae:hover{box-shadow:inset 0 0 0 var(--ubq-margin-xs) var(--ubq-ColorField-inner-border-color--hover, var(--ubq-border-contrast)),0 0 0 calc(var(--ubq-margin-xs) / 2) var(--ubq-ColorField-border-color, var(--ubq-border-contrast))}.UBQ_ColorField__block--G66ae:disabled{opacity:.55;pointer-events:none}@supports not (contain: none){.UBQ_ColorField__block--G66ae:focus{box-shadow:inset 0 0 0 var(--ubq-margin-xs) var(--ubq-ColorField-inner-border-color--hover, var(--ubq-border-contrast)),var(--ubq-ColorField-effect-focus, var(--ubq-effect-focus))}}.UBQ_ColorField__block--G66ae:focus-visible{box-shadow:inset 0 0 0 var(--ubq-margin-xs) var(--ubq-ColorField-inner-border-color--hover, var(--ubq-border-contrast)),var(--ubq-ColorField-effect-focus, var(--ubq-effect-focus))}.UBQ_ColorField__block--G66ae:-moz-focusring{box-shadow:inset 0 0 0 var(--ubq-margin-xs) var(--ubq-ColorField-inner-border-color--hover, var(--ubq-border-contrast)),var(--ubq-ColorField-effect-focus, var(--ubq-effect-focus))}
|
|
17
|
+
.UBQ_ColorPopover__button--TXCo1{--ubq-Button-padding: 0;box-shadow:inset 0 0 0 1px var(--ubq-border-contrast);border-radius:var(--ubq-border_radius-m);overflow:auto}.UBQ_ColorPopover__strikeThrough--kTBrz{width:100%;height:100%;z-index:0}.UBQ_ColorPopover__colorField--g7rUi{padding:0;background-color:transparent}.UBQ_ColorPopover__colorField--g7rUi.UBQ_ColorPopover__disabled--yBuH4{opacity:.55}.UBQ_ColorPopover__colorFieldContent--_2yuh{width:100%;display:grid;grid-template-areas:"stack";background-color:transparent}.UBQ_ColorPopover__colorFieldContent--_2yuh>*{grid-area:stack}.UBQ_ColorPopover__donutHole--v4plh{display:none;width:calc(2 * var(--ubq-scale-base));height:calc(2 * var(--ubq-scale-base));background-color:var(--ubq-elevation-1);box-shadow:0 0 0 1px var(--ubq-border-contrast);border-radius:50%;margin:auto;z-index:0}.UBQ_ColorPopover__donutHole--v4plh.UBQ_ColorPopover__show--dA1nB{display:flex}.UBQ_ColorPopover__colorPreviews--puYdb{display:flex;align-items:center;justify-content:center;box-sizing:border-box;position:relative;height:calc(6 * var(--ubq-scale-base));width:100%;overflow:hidden;background-color:transparent}.UBQ_ColorPopover__colorPreviews--puYdb.UBQ_ColorPopover__small--jsLXv{height:calc(5 * var(--ubq-scale-base))}.UBQ_ColorPopover__colorPreviews--puYdb>*{position:absolute}.UBQ_ColorPopover__colorPreviews--puYdb .UBQ_ColorPopover__checkeredBackgroundOnly--UHl_H,.UBQ_ColorPopover__colorPreviews--puYdb .UBQ_ColorPopover__checkeredRed--akDuV{height:calc(100% - 2px);width:calc(100% - 2px);top:1px;left:1px;border-radius:calc(var(--ubq-border_radius-m) - 1px)}.UBQ_ColorPopover__colorPreviews--puYdb .UBQ_ColorPopover__minimal--_Z7d7{border-radius:50%}.UBQ_ColorPopover__colorPreviews--puYdb .UBQ_ColorPopover__checkeredBackgroundOnly--UHl_H{background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3Qgd2lkdGg9IjE2IiBoZWlnaHQ9IjE2IiBmaWxsPSJ3aGl0ZSIvPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSJibGFjayIgZmlsbC1vcGFjaXR5PSIwLjEyIi8+CjxyZWN0IHg9IjgiIHdpZHRoPSI0IiBoZWlnaHQ9IjQiIGZpbGw9ImJsYWNrIiBmaWxsLW9wYWNpdHk9IjAuMTIiLz4KPHJlY3QgeD0iNCIgeT0iNCIgd2lkdGg9IjQiIGhlaWdodD0iNCIgZmlsbD0iYmxhY2siIGZpbGwtb3BhY2l0eT0iMC4xMiIvPgo8cmVjdCB4PSIxMiIgeT0iNCIgd2lkdGg9IjQiIGhlaWdodD0iNCIgZmlsbD0iYmxhY2siIGZpbGwtb3BhY2l0eT0iMC4xMiIvPgo8cmVjdCB5PSI4IiB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSJibGFjayIgZmlsbC1vcGFjaXR5PSIwLjEyIi8+CjxyZWN0IHg9IjgiIHk9IjgiIHdpZHRoPSI0IiBoZWlnaHQ9IjQiIGZpbGw9ImJsYWNrIiBmaWxsLW9wYWNpdHk9IjAuMTIiLz4KPHJlY3QgeD0iNCIgeT0iMTIiIHdpZHRoPSI0IiBoZWlnaHQ9IjQiIGZpbGw9ImJsYWNrIiBmaWxsLW9wYWNpdHk9IjAuMTIiLz4KPHJlY3QgeD0iMTIiIHk9IjEyIiB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSJibGFjayIgZmlsbC1vcGFjaXR5PSIwLjEyIi8+Cjwvc3ZnPgo=);background-position:-1px -1px}.UBQ_ColorPopover__colorPreviews--puYdb .UBQ_ColorPopover__iconContainer--L1sHn{position:absolute;top:0;right:0;height:var(--ubq-typography-label-m-line_height);width:var(--ubq-typography-label-m-line_height);margin:var(--ubq-margin-xs);display:flex;justify-content:center;align-items:center;background-color:var(--ubq-elevation-2);border-radius:var(--ubq-border_radius-s)}.UBQ_ColorPopover__colorPreviews--puYdb .UBQ_ColorPopover__iconContainer--L1sHn>svg{height:var(--ubq-typography-button-m-line_height);width:var(--ubq-typography-button-m-line_height);color:var(--ubq-foreground-default);margin:var(--ubq-margin-xs)}.UBQ_ColorPopover__colorPreview--qa9i7{display:flex;height:100%;width:100%;font-size:var(--ubq-typography-label-m-size);line-height:var(--ubq-typography-label-m-line_height);letter-spacing:var(--ubq-typography-label-m-letter_spacing);font-family:var(--ubq-typography-label-m-font_family);font-weight:var(--ubq-typography-label-m-weight);box-sizing:content-box;background-color:transparent}.UBQ_ColorPopover__colorPreviewLabel--hPR99{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;padding:var(--ubq-margin-xs) calc(var(--ubq-typography-label-m-line_height) + 2 * var(--ubq-margin-xs)) var(--ubq-margin-xs) var(--ubq-margin-s);width:100%;text-align:left}.UBQ_ColorPopover__colorPreviewLabel--hPR99.UBQ_ColorPopover__inverted--F6glG{color:var(--ubq-static-contrast-white);mix-blend-mode:difference}.UBQ_ColorPopover__mappedPreviewColorsContainer--GPTbU{height:100%;width:100%;display:flex}.UBQ_ColorPopover__checkeredRed--akDuV,.UBQ_ColorPopover__checkered--_ez_u{background-size:100% 100%,auto}.UBQ_ColorPopover__checkeredRed--akDuV{background-image:url(data:image/svg+xml;base64,PHN2ZyBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIiB2aWV3Qm94PSIwIDAgMjAgMjAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiPgo8cGF0aCBkPSJNLTAuNSAtMC41TDIwLjUgMjAuNSIgc3Ryb2tlPSIjQ0MwMDAwIiBzdHJva2Utd2lkdGg9IjIiLz4KPC9nPgo8ZGVmcz4KPGNsaXBQYXRoIGlkPSJjbGlwMCI+CjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K),url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3Qgd2lkdGg9IjE2IiBoZWlnaHQ9IjE2IiBmaWxsPSJ3aGl0ZSIvPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSJibGFjayIgZmlsbC1vcGFjaXR5PSIwLjEyIi8+CjxyZWN0IHg9IjgiIHdpZHRoPSI0IiBoZWlnaHQ9IjQiIGZpbGw9ImJsYWNrIiBmaWxsLW9wYWNpdHk9IjAuMTIiLz4KPHJlY3QgeD0iNCIgeT0iNCIgd2lkdGg9IjQiIGhlaWdodD0iNCIgZmlsbD0iYmxhY2siIGZpbGwtb3BhY2l0eT0iMC4xMiIvPgo8cmVjdCB4PSIxMiIgeT0iNCIgd2lkdGg9IjQiIGhlaWdodD0iNCIgZmlsbD0iYmxhY2siIGZpbGwtb3BhY2l0eT0iMC4xMiIvPgo8cmVjdCB5PSI4IiB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSJibGFjayIgZmlsbC1vcGFjaXR5PSIwLjEyIi8+CjxyZWN0IHg9IjgiIHk9IjgiIHdpZHRoPSI0IiBoZWlnaHQ9IjQiIGZpbGw9ImJsYWNrIiBmaWxsLW9wYWNpdHk9IjAuMTIiLz4KPHJlY3QgeD0iNCIgeT0iMTIiIHdpZHRoPSI0IiBoZWlnaHQ9IjQiIGZpbGw9ImJsYWNrIiBmaWxsLW9wYWNpdHk9IjAuMTIiLz4KPHJlY3QgeD0iMTIiIHk9IjEyIiB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSJibGFjayIgZmlsbC1vcGFjaXR5PSIwLjEyIi8+Cjwvc3ZnPgo=);background-position:center,-1px -1px}.UBQ_ColorPopover__insetBorderOverlay--oLtHu{box-shadow:inset 0 0 0 1px var(--ubq-border-contrast);height:100%;width:100%;border-radius:50%}
|
|
18
|
+
.UBQ_ElementStack__block--Urw_h{display:grid;grid-template-areas:"stack"}.UBQ_ElementStack__block--Urw_h>*{grid-area:stack}.UBQ_ElementStack__revealLastOnHover--E6V6R>*{transition:all .3s ease-in-out}.UBQ_ElementStack__revealLastOnHover--E6V6R>*:last-child{opacity:0;transform:scale(0.2)}.UBQ_ElementStack__revealLastOnHover--E6V6R>*:not(:last-child){opacity:1}.UBQ_ElementStack__revealLastOnHover--E6V6R:hover>*:last-child{opacity:1;transform:scale(1)}.UBQ_ElementStack__revealLastOnHover--E6V6R:hover>*:not(:last-child){opacity:0;pointer-events:none}.UBQ_ElementStack__revealLastOnHover--E6V6R:focus-within>*:last-child{opacity:1;transform:scale(1)}.UBQ_ElementStack__revealLastOnHover--E6V6R:focus-within>*:not(:last-child){opacity:0;pointer-events:none}
|
|
18
19
|
.UBQ_BaseInput__block--XZoBA{display:flex;box-sizing:border-box;width:100%;height:calc( var(--ubq-margin-xs) * 2 + var(--ubq-typography-input-m-line_height) );z-index:0;font-size:var(--ubq-typography-input-m-size);line-height:var(--ubq-typography-input-m-line_height);letter-spacing:var(--ubq-typography-input-m-letter_spacing);font-family:var(--ubq-typography-input-m-font_family);font-weight:var(--ubq-typography-input-m-weight);padding:var(--ubq-margin-xs) var(--ubq-margin-s);margin:0;background:var(--ubq-BaseInput-background, var(--ubq-input-default));color:var(--ubq-BaseInput-foreground, var(--ubq-foreground-default));border-radius:var(--ubq-BaseInput-border-radius, var(--ubq-border_radius-m));border:1px solid var(--ubq-border-outline);outline:none}.UBQ_BaseInput__block--XZoBA:hover{background:var(--ubq-BaseInput-background--hover, var(--ubq-input-hover));color:var(--ubq-BaseInput-foreground--hover, var(--ubq-foreground-default))}.UBQ_BaseInput__block--XZoBA::-webkit-outer-spin-button,.UBQ_BaseInput__block--XZoBA::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}.UBQ_BaseInput__block--XZoBA[type=number]{-moz-appearance:textfield}@supports not (contain: none){.UBQ_BaseInput__block--XZoBA:focus{background:var(--ubq-BaseInput-background--focus, var(--ubq-input-hover));color:var(--ubq-BaseInput-foreground--focus, var(--ubq-foreground-default));box-shadow:var(--ubq-effect-focus);z-index:calc(0 + 1)}}.UBQ_BaseInput__block--XZoBA:focus-visible{background:var(--ubq-BaseInput-background--focus, var(--ubq-input-hover));color:var(--ubq-BaseInput-foreground--focus, var(--ubq-foreground-default));box-shadow:var(--ubq-effect-focus);z-index:calc(0 + 1)}.UBQ_BaseInput__block--XZoBA:-moz-focusring{background:var(--ubq-BaseInput-background--focus, var(--ubq-input-hover));color:var(--ubq-BaseInput-foreground--focus, var(--ubq-foreground-default));box-shadow:var(--ubq-effect-focus);z-index:calc(0 + 1)}.UBQ_BaseInput__block--XZoBA:disabled{pointer-events:none;opacity:.55}
|
|
19
20
|
.UBQ_TextInput__block--_Dg1I{width:100%;position:relative;display:flex;align-items:center}.UBQ_TextInput__block--_Dg1I.UBQ_TextInput__withInnerLabel--H9uRe .UBQ_TextInput__input--XYFt6{padding-right:calc(2ch + var(--ubq-margin-xs))}.UBQ_TextInput__innerLabel--_0_hE{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;font-size:var(--ubq-typography-input-m-size);line-height:var(--ubq-typography-input-m-line_height);letter-spacing:var(--ubq-typography-input-m-letter_spacing);font-family:var(--ubq-typography-input-m-font_family);font-weight:var(--ubq-typography-input-m-weight);position:absolute;right:0;min-width:2ch;padding-right:var(--ubq-margin-s);text-align:right;pointer-events:none;color:var(--ubq-NumberInput-label-foreground, var(--ubq-foreground-info));z-index:1}
|
|
20
21
|
|
|
@@ -39,9 +40,9 @@
|
|
|
39
40
|
.UBQ_Menu__block--_28h_{margin:0;padding:0;list-style-type:none}.UBQ_Menu__block--_28h_ button{width:100%}
|
|
40
41
|
.UBQ_TreeView__block--_IS6l{border-radius:var(--ubq-border_radius-l);background:var(--ubq-interactive-group-default);padding-left:0}.UBQ_TreeView__block--_IS6l:hover{background:var(--ubq-interactive-group-hover)}.UBQ_TreeView__block--_IS6l:not(:last-child){margin-bottom:var(--ubq-margin-l)}.UBQ_TreeView__isGroupActive--BerAU{background:var(--ubq-interactive-group-active-default)}.UBQ_TreeView__isGroupActive--BerAU:hover{background:var(--ubq-interactive-group-active-hover)}.UBQ_TreeView__header--kPfnL,.UBQ_TreeView__item--R6XsR{display:flex;justify-content:flex-start;align-items:center;width:100%;box-sizing:border-box;padding:0 var(--ubq-margin-xs) 0 0;border:none;outline:none;background:transparent;cursor:pointer}.UBQ_TreeView__header--kPfnL:first-child,.UBQ_TreeView__item--R6XsR:first-child{border-top-left-radius:calc(var(--ubq-border_radius-l) - 1px);border-top-right-radius:calc(var(--ubq-border_radius-l) - 1px)}.UBQ_TreeView__header--kPfnL:last-child,.UBQ_TreeView__item--R6XsR:last-child{border-bottom-left-radius:calc( var(--ubq-border_radius-l) - 1px );border-bottom-right-radius:calc( var(--ubq-border_radius-l) - 1px )}.UBQ_TreeView__header--kPfnL .UBQ_TreeView__icon--VOn8B,.UBQ_TreeView__item--R6XsR .UBQ_TreeView__icon--VOn8B{display:flex;align-items:center;justify-content:center;margin-right:var(--ubq-margin-s)}.UBQ_TreeView__header--kPfnL:hover,.UBQ_TreeView__item--R6XsR:hover{background:var(--ubq-interactive-hover)}.UBQ_TreeView__header--kPfnL:hover .UBQ_TreeView__menuButton--awrEH,.UBQ_TreeView__item--R6XsR:hover .UBQ_TreeView__menuButton--awrEH{opacity:1}.UBQ_TreeView__header--kPfnL:active,.UBQ_TreeView__item--R6XsR:active{background:var(--ubq-interactive-pressed)}.UBQ_TreeView__header--kPfnL.UBQ_TreeView__isActive--H_gcJ,.UBQ_TreeView__item--R6XsR.UBQ_TreeView__isActive--H_gcJ{background:var(--ubq-interactive-active-default);color:var(--ubq-foreground-active)}.UBQ_TreeView__header--kPfnL.UBQ_TreeView__isActive--H_gcJ .UBQ_TreeView__link--iauhw,.UBQ_TreeView__header--kPfnL.UBQ_TreeView__isActive--H_gcJ .UBQ_TreeView__button--t1z_L,.UBQ_TreeView__header--kPfnL.UBQ_TreeView__isActive--H_gcJ *,.UBQ_TreeView__item--R6XsR.UBQ_TreeView__isActive--H_gcJ .UBQ_TreeView__link--iauhw,.UBQ_TreeView__item--R6XsR.UBQ_TreeView__isActive--H_gcJ .UBQ_TreeView__button--t1z_L,.UBQ_TreeView__item--R6XsR.UBQ_TreeView__isActive--H_gcJ *{color:var(--ubq-foreground-active)}.UBQ_TreeView__header--kPfnL.UBQ_TreeView__isActive--H_gcJ:hover,.UBQ_TreeView__item--R6XsR.UBQ_TreeView__isActive--H_gcJ:hover{background:var(--ubq-interactive-active-hover)}.UBQ_TreeView__header--kPfnL.UBQ_TreeView__isActive--H_gcJ .UBQ_TreeView__menuButton--awrEH,.UBQ_TreeView__item--R6XsR.UBQ_TreeView__isActive--H_gcJ .UBQ_TreeView__menuButton--awrEH{opacity:1}@supports not (contain: none){.UBQ_TreeView__header--kPfnL:focus,.UBQ_TreeView__item--R6XsR:focus{z-index:1;box-shadow:var(--ubq-effect-focus)}}.UBQ_TreeView__header--kPfnL:focus-visible,.UBQ_TreeView__item--R6XsR:focus-visible{z-index:1;box-shadow:var(--ubq-effect-focus)}.UBQ_TreeView__header--kPfnL:-moz-focusring,.UBQ_TreeView__item--R6XsR:-moz-focusring{z-index:1;box-shadow:var(--ubq-effect-focus)}.UBQ_TreeView__button--t1z_L,.UBQ_TreeView__link--iauhw{display:flex;align-items:center;width:100%;border-radius:var(--ubq-border_radius-l);text-decoration:none;outline:none;word-break:break-word}.UBQ_TreeView__button--t1z_L:focus-visible,.UBQ_TreeView__link--iauhw:focus-visible{z-index:1;box-shadow:var(--ubq-effect-focus)}.UBQ_TreeView__button--t1z_L{border:none;outline:none;cursor:pointer;background:none}.UBQ_TreeView__header--kPfnL{display:flex;align-items:center;justify-content:flex-start;min-height:calc(2 * var(--ubq-margin-l));font-family:var(--ubq-typography-headline-m-font_family);font-size:var(--ubq-typography-headline-m-size);font-weight:var(--ubq-typography-headline-m-weight);letter-spacing:var(--ubq-typography-headline-m-letter_spacing);line-height:var(--ubq-typography-headline-m-line_height)}.UBQ_TreeView__header--kPfnL .UBQ_TreeView__headerIcon--_tXDI{display:flex;align-items:center;justify-content:flex-start;margin-right:var(--ubq-margin-s)}.UBQ_TreeView__header--kPfnL>.UBQ_TreeView__button--t1z_L,.UBQ_TreeView__header--kPfnL>.UBQ_TreeView__link--iauhw{padding:var(--ubq-margin-xs);color:var(--ubq-foreground-default)}.UBQ_TreeView__item--R6XsR>.UBQ_TreeView__button--t1z_L,.UBQ_TreeView__item--R6XsR>.UBQ_TreeView__link--iauhw{padding-left:calc(var(--ubq-margin-l) * 2);padding-top:var(--ubq-margin-s);padding-bottom:var(--ubq-margin-s);color:var(--ubq-foreground-light);background:transparent}.UBQ_TreeView__menuButton--awrEH{opacity:0;margin-left:var(--ubq-margin-s);flex-shrink:0}.UBQ_TreeView__menuButton--awrEH:focus-visible{z-index:1;opacity:1;box-shadow:var(--ubq-effect-focus)}
|
|
41
42
|
.UBQ_Avatar__block--PE_Hs{display:flex;justify-content:center;align-items:center;height:calc(var(--ubq-scale-base) * 6);width:calc(var(--ubq-scale-base) * 6);border-radius:var(--ubq-border_radius-m);color:var(--ubq-foreground-default);background:var(--ubq-canvas);font-size:var(--ubq-typography-label-m-size);line-height:var(--ubq-typography-label-m-line_height);letter-spacing:var(--ubq-typography-label-m-letter_spacing);font-family:var(--ubq-typography-label-m-font_family);font-weight:var(--ubq-typography-label-m-weight)}.UBQ_Avatar__block--PE_Hs.UBQ_Avatar__circle--OEUXB{border-radius:50%}.UBQ_Avatar__block--PE_Hs.UBQ_Avatar__background--Mo59C{background:var(--ubq-interactive-default)}.UBQ_Avatar__block--PE_Hs.UBQ_Avatar__fallback--CGHeh{font-size:var(--ubq-typography-label-s-size);text-transform:uppercase}.UBQ_Avatar__img--bvEJ9{object-fit:cover}
|
|
42
|
-
.UBQ_ElementStack__block--Urw_h{display:grid;grid-template-areas:"stack"}.UBQ_ElementStack__block--Urw_h>*{grid-area:stack}.UBQ_ElementStack__revealLastOnHover--E6V6R>*{transition:all .3s ease-in-out}.UBQ_ElementStack__revealLastOnHover--E6V6R>*:last-child{opacity:0;transform:scale(0.2)}.UBQ_ElementStack__revealLastOnHover--E6V6R>*:not(:last-child){opacity:1}.UBQ_ElementStack__revealLastOnHover--E6V6R:hover>*:last-child{opacity:1;transform:scale(1)}.UBQ_ElementStack__revealLastOnHover--E6V6R:hover>*:not(:last-child){opacity:0;pointer-events:none}.UBQ_ElementStack__revealLastOnHover--E6V6R:focus-within>*:last-child{opacity:1;transform:scale(1)}.UBQ_ElementStack__revealLastOnHover--E6V6R:focus-within>*:not(:last-child){opacity:0;pointer-events:none}
|
|
43
43
|
@supports not (contain: none){.UBQ_ExternalLink__block--Hb3aB:focus{z-index:calc(0 + 1);box-shadow:var(--ubq-effect-focus);color:var(--ubq-Button-foreground--focus, var(--ubq-foreground-default));border-radius:var(--ubq-border_radius-s)}}.UBQ_ExternalLink__block--Hb3aB:focus-visible{z-index:calc(0 + 1);box-shadow:var(--ubq-effect-focus);color:var(--ubq-Button-foreground--focus, var(--ubq-foreground-default));border-radius:var(--ubq-border_radius-s)}.UBQ_ExternalLink__block--Hb3aB:-moz-focusring{z-index:calc(0 + 1);box-shadow:var(--ubq-effect-focus);color:var(--ubq-Button-foreground--focus, var(--ubq-foreground-default));border-radius:var(--ubq-border_radius-s)}
|
|
44
|
-
.UBQ_Dock__block--aKQfU{display:flex;flex-direction:column;position:relative;padding:var(--ubq-margin-xs);min-width:calc(var(--ubq-scale-base) * 12);max-width:calc(var(--ubq-scale-base) * 18);box-sizing:border-box;z-index:15;background:var(--ubq-elevation-2);transition:background-color .3s ease-in-out}.UBQ_Dock__block--aKQfU.UBQ_Dock__hasSelected--zZeMe{background:var(--ubq-elevation-1)}.UBQ_Dock__block--aKQfU.UBQ_Dock__left--SjHad{order:0}.UBQ_Dock__block--aKQfU.UBQ_Dock__right--XRtI1{order:1}.UBQ_Dock__button--ttmQQ{--ubq-Button-padding: var(--ubq-margin-s) var(--ubq-margin-xs);width:100%;min-height:calc(var(--ubq-scale-base) * 10);flex:1 0;font-size:var(--ubq-typography-label-s-size);line-height:var(--ubq-typography-label-s-line_height);letter-spacing:var(--ubq-typography-label-s-letter_spacing);font-family:var(--ubq-typography-label-s-font_family);font-weight:var(--ubq-typography-label-s-weight)}.UBQ_Dock__buttonLabel--w6Aji{display:flex;flex-direction:column;align-items:center;gap:var(--ubq-margin-xs);width:100%}.UBQ_Dock__buttonLabel--w6Aji>span{display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;text-overflow:ellipsis;overflow-wrap:break-word;width:100%}.UBQ_Dock__group--_lfht{display:flex;flex-direction:column;gap:var(--ubq-margin-xs)}
|
|
44
|
+
.UBQ_Dock__block--aKQfU{display:flex;flex-direction:column;position:relative;padding:var(--ubq-margin-xs);min-width:calc(var(--ubq-scale-base) * 12);max-width:calc(var(--ubq-scale-base) * 18);box-sizing:border-box;z-index:15;background:var(--ubq-elevation-2);transition:background-color .3s ease-in-out}.UBQ_Dock__block--aKQfU.UBQ_Dock__hasSelected--zZeMe{background:var(--ubq-elevation-1)}.UBQ_Dock__block--aKQfU.UBQ_Dock__left--SjHad{order:0}.UBQ_Dock__block--aKQfU.UBQ_Dock__right--XRtI1{order:1}.UBQ_Dock__button--ttmQQ{--ubq-Button-padding: var(--ubq-margin-s) var(--ubq-margin-xs);width:100%;min-height:calc(var(--ubq-scale-base) * 10);flex:1 0;font-size:var(--ubq-typography-label-s-size);line-height:var(--ubq-typography-label-s-line_height);letter-spacing:var(--ubq-typography-label-s-letter_spacing);font-family:var(--ubq-typography-label-s-font_family);font-weight:var(--ubq-typography-label-s-weight)}.UBQ_Dock__buttonLabel--w6Aji{display:flex;flex-direction:column;align-items:center;gap:var(--ubq-margin-xs);width:100%}.UBQ_Dock__buttonLabel--w6Aji>span{display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;text-overflow:ellipsis;overflow-wrap:break-word;width:100%}.UBQ_Dock__group--_lfht{display:flex;flex-direction:column;gap:var(--ubq-margin-xs)}.UBQ_Dock__group--_lfht:empty{display:none}
|
|
45
|
+
.UBQ_BlendModeSelect__options--f8ZyJ{max-height:calc(var(--ubq-scale-base) * 108)}.UBQ_BlendModeSelect__option--c0UQW{min-width:calc(var(--ubq-scale-base) * 42)}
|
|
45
46
|
.UBQ_SubInspector__block--_Vxo6{position:absolute;top:0;left:0;right:0;bottom:0;margin-right:0;z-index:30;display:flex;flex-direction:column;background:var(--ubq-elevation-1)}.UBQ_SubInspector__block--_Vxo6[data-cy=crop-container]{z-index:31}.UBQ_SubInspector__containerSection--V47rJ{overflow-y:auto;overflow-x:auto;-webkit-overflow-scrolling:touch;scrollbar-width:thin;scrollbar-color:var(--ubq-foreground-info) transparent;display:flex;flex-direction:column;height:calc(100% - 48px);box-sizing:border-box;overflow:auto}.UBQ_SubInspector__containerSection--V47rJ::-webkit-scrollbar{width:calc(2 * var(--ubq-scale-base))}.UBQ_SubInspector__containerSection--V47rJ::-webkit-scrollbar-track{background:transparent;margin:var(--ubq-margin-s) 0}.UBQ_SubInspector__containerSection--V47rJ::-webkit-scrollbar-thumb{background-color:var(--ubq-foreground-info);border-radius:var(--ubq-border_radius-m)}.UBQ_SubInspector__containerSection--V47rJ::-webkit-scrollbar-corner{background:transparent}.UBQ_SubInspector__button--nqozz{border:1px solid var(--ubq-border-divider)}.UBQ_SubInspector__highlight--oKLVC{border:none;background:var(--ubq-interactive-default)}.UBQ_SubInspector__wrapper--euOh8{height:100%}
|
|
46
47
|
.UBQ_LocalSourceSectionHeaderUpload__block--Lrlpj{max-width:max-content}
|
|
47
48
|
.UBQ_LocalSourceGridUpload__block--R4jen,.UBQ_LocalSourceGridUpload__wrapper--HT5EF{display:flex;justify-content:center;align-items:center}.UBQ_LocalSourceGridUpload__icon--_QIUb{margin-right:var(--ubq-margin-s)}
|
|
@@ -49,6 +50,7 @@
|
|
|
49
50
|
.UBQ_ShapeSourceCard__card--__S7O{display:flex;justify-content:center;align-items:center;color:var(--ubq-foreground-default)}
|
|
50
51
|
.UBQ_AssetLibrarySearch__block--lRVFc{display:flex;align-items:center;box-sizing:content-box;padding:var(--ubq-margin-s);padding-bottom:0}.UBQ_AssetLibrarySearch__searchInput--_EUqq{padding-left:calc(var(--ubq-typography-label-m-line_height) + var(--ubq-margin-s) + var(--ubq-margin-xs));padding-right:calc( var(--ubq-typography-label-m-line_height) + var(--ubq-margin-s) + var(--ubq-margin-xs) + 2 * var(--ubq-Button-padding, var(--ubq-margin-xs)) );padding-top:var(--ubq-margin-m);padding-bottom:var(--ubq-margin-m);height:calc(var(--ubq-scale-base) * 10)}.UBQ_AssetLibrarySearch__inputContainer--gtS20{position:relative;width:100%}.UBQ_AssetLibrarySearch__searchIconContainer--W_Zir,.UBQ_AssetLibrarySearch__clearSearchIconContainer--bqqOx{position:absolute;top:0;display:flex;justify-content:center;align-items:center;height:100%}.UBQ_AssetLibrarySearch__searchIconContainer--W_Zir{left:var(--ubq-margin-s)}.UBQ_AssetLibrarySearch__clearSearchIconContainer--bqqOx{right:var(--ubq-margin-s)}.UBQ_AssetLibrarySearch__clearSearchIconContainer--bqqOx.UBQ_AssetLibrarySearch__hasEmptySearchValue--xmImS{display:none}.UBQ_AssetLibrarySearch__searchIcon--_D8q1,.UBQ_AssetLibrarySearch__clearSearchIcon--oZOiG{width:var(--ubq-typography-label-m-line_height);height:var(--ubq-typography-label-m-line_height);color:var(--ubq-BaseInput-foreground, var(--ubq-foreground-default))}
|
|
51
52
|
.UBQ_MasonryGrid__block--TpUbd{display:grid;grid-gap:var(--ubq-margin-s);grid-auto-rows:0}
|
|
53
|
+
.UBQ_AssetTemplateDialog__block--cLjSB{max-width:calc(var(--ubq-scale-base) * 80)}
|
|
52
54
|
.UBQ_AssetLibraryGridLoadingAnchor__block--hfZbs{width:100%;height:calc(10 * var(--ubq-scale-base));display:flex;justify-content:center;align-items:center;flex-direction:column;margin-top:var(--ubq-margin-m);color:var(--ubq-foreground-info);font-size:var(--ubq-typography-label-m-size);line-height:var(--ubq-typography-label-m-line_height);letter-spacing:var(--ubq-typography-label-m-letter_spacing);font-family:var(--ubq-typography-label-m-font_family);font-weight:var(--ubq-typography-label-m-weight)}.UBQ_AssetLibraryGridLoadingAnchor__noMoreItems--rFC1K{display:none}.UBQ_AssetLibraryGridLoadingAnchor__anchor--_6K9D{height:1px;width:100%;transform:translateY(-250px)}
|
|
53
55
|
.UBQ_AssetLibraryGridSkeleton__grid--zCzJv{position:relative}.UBQ_AssetLibraryGridSkeleton__label--j_fu_{color:var(--ubq-foreground-info);margin-left:var(--ubq-margin-s)}.UBQ_AssetLibraryGridSkeleton__gradient--Cikzr{position:absolute;top:0;width:100%;height:100%;background:linear-gradient(180deg, rgba(18, 25, 33, 0) 0%, var(--ubq-elevation-2) 60%)}.UBQ_AssetLibraryGridSkeleton__labelContainer--XiwSY{position:absolute;top:0;width:100%;height:100%;display:flex;justify-content:center;align-items:center;flex-direction:column;color:var(--ubq-foreground-default);font-size:var(--ubq-typography-label-m-size);line-height:var(--ubq-typography-label-m-line_height);letter-spacing:var(--ubq-typography-label-m-letter_spacing);font-family:var(--ubq-typography-label-m-font_family);font-weight:var(--ubq-typography-label-m-weight)}.UBQ_AssetLibraryGridSkeleton__prependedSourceUIComponentContainer--rgV6K{margin-top:var(--ubq-margin-m)}.UBQ_AssetLibraryGridSkeleton__cardWrapper--rDDZ0{height:100%;width:100%}.UBQ_AssetLibraryGridSkeleton__animatedBackground--h4zX1{animation-duration:1.8s;animation-fill-mode:forwards;animation-iteration-count:infinite;animation-name:UBQ_AssetLibraryGridSkeleton__placeHolderShimmer--K6JxP;animation-timing-function:linear;background:transparent;background:linear-gradient(to right, rgba(255, 255, 255, 0.04) 8%, rgba(255, 255, 255, 0) 38%, rgba(255, 255, 255, 0.04) 54%);background-size:1000px 640px;position:relative}@keyframes UBQ_AssetLibraryGridSkeleton__placeHolderShimmer--K6JxP{0%{background-position:-468px 0}100%{background-position:468px 0}}.UBQ_AssetLibraryGridSkeleton__loadingSpinnerIcon--JlHPG{animation:UBQ_AssetLibraryGridSkeleton__loading--aWGTA 1.1s infinite linear}@keyframes UBQ_AssetLibraryGridSkeleton__loading--aWGTA{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}
|
|
54
56
|
.UBQ_AssetLoadingSpinner__block--_UMlD{position:absolute;top:0;left:0;height:100%;width:100%;display:flex;justify-content:center;align-items:center;color:var(--ubq-foreground-default)}.UBQ_AssetLoadingSpinner__loadingSpinnerIcon--d_iUK{animation:UBQ_AssetLoadingSpinner__loading--ekZ5n 1.1s infinite linear;height:calc(var(--ubq-scale-base) * 12);width:calc(var(--ubq-scale-base) * 12)}@keyframes UBQ_AssetLoadingSpinner__loading--ekZ5n{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}
|
|
@@ -67,17 +69,19 @@
|
|
|
67
69
|
.UBQ_Transform__rotationGroup--KlwKI{display:flex}.UBQ_Transform__rotationGroup--KlwKI>*:not(:last-child){margin-right:var(--ubq-margin-s)}
|
|
68
70
|
.UBQ_SliderInput__block--qaiej{width:100%}
|
|
69
71
|
.UBQ_InspectorHorizontalGroup__block--M9_3R{display:flex}.UBQ_InspectorHorizontalGroup__block--M9_3R>*{max-width:50%}.UBQ_InspectorHorizontalGroup__block--M9_3R>*:only-child{max-width:100%}.UBQ_InspectorHorizontalGroup__block--M9_3R>*:nth-child(odd):not(:last-child){margin-right:var(--ubq-margin-s)}.UBQ_InspectorHorizontalGroup__block--M9_3R>*:nth-child(even){margin-left:var(--ubq-margin-s)}
|
|
70
|
-
.UBQ_InspectorLibrary__block--fl3Qd{display:grid;grid-template-columns:1fr 1fr;grid-gap:var(--ubq-margin-m)}.UBQ_InspectorLibrary__singleColumn--SR5KA{display:flex;flex-direction:column;grid-gap:0}.UBQ_InspectorLibrary__singleColumn--SR5KA>*{margin-bottom:var(--ubq-margin-m)}
|
|
71
|
-
.UBQ_TemplateLibrary__dialogContent--dhFE0{width:40ch;margin:0}
|
|
72
72
|
.UBQ_ClipContent__button--o7xsY{flex:1;text-align:center}.UBQ_ClipContent__button--o7xsY>span>span{text-align:center}
|
|
73
73
|
.UBQ_Formats__button--gOcc6{flex-grow:0;flex-shrink:0;flex-basis:initial}.UBQ_Formats__option--_TQRG{display:inline-block;white-space:nowrap}
|
|
74
74
|
.UBQ_CanvasAction__block--fbc8M{display:flex;padding:calc(var(--ubq-margin-xs) - 1px);--ubq-Button-border-radius: var(--ubq-border_radius-s)}.UBQ_CanvasAction__block--fbc8M:not(:last-child){border-right:1px solid var(--ubq-border-divider)}
|
|
75
75
|
.UBQ_CanvasActionContainer__canvasActions--_2g3e{display:flex;flex-direction:row;align-items:center;background:var(--ubq-elevation-2);border:1px solid var(--ubq-border-divider);border-radius:var(--ubq-border_radius-m);overflow:hidden}.UBQ_CanvasActionContainer__canvasActions--_2g3e:empty{display:none}.UBQ_CanvasActionContainer__tippy--Js2dJ{max-width:unset !important}.UBQ_CanvasActionContainer__tippy--Js2dJ[data-animation=shift-away][data-state=hidden]{opacity:0}.UBQ_CanvasActionContainer__tippy--Js2dJ[data-animation=shift-away][data-state=hidden][data-placement^=top]{transform:translateY(10px)}.UBQ_CanvasActionContainer__tippy--Js2dJ[data-animation=shift-away][data-state=hidden][data-placement^=bottom]{transform:translateY(-10px)}.UBQ_CanvasActionContainer__tippy--Js2dJ[data-animation=shift-away][data-state=hidden][data-placement^=left]{transform:translateX(10px)}.UBQ_CanvasActionContainer__tippy--Js2dJ[data-animation=shift-away][data-state=hidden][data-placement^=right]{transform:translateX(-10px)}
|
|
76
76
|
.UBQ_PlaceholderSettings__placeholderPopoverButton--E1tmL{--ubq-Button-background: var(--ubq-interactive-template-default);--ubq-Button-background--hover: var(--ubq-interactive-template-hover);--ubq-Button-background--pressed: var(--ubq-interactive-template-pressed)}.UBQ_PlaceholderSettings__spacer--eMd5b{width:var(--ubq-margin-xs)}.UBQ_PlaceholderSettings__hidden--UTFNM{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;border:0}.UBQ_PlaceholderSettings__separator--gVJ1q{margin:var(--ubq-margin-xs)}
|
|
77
|
+
.UBQ_FillModeSelect__button--hhPsM>span>span{flex-grow:0}
|
|
78
|
+
.UBQ_GradientControls__smallButton--iZAYd{flex:0 0 auto}.UBQ_GradientControls__gradientBar--mydcn{display:flex;align-items:center;width:100%;position:relative;height:calc(6 * var(--ubq-scale-base));margin-bottom:var(--ubq-margin-m);box-shadow:inset 0 0 0 1px var(--ubq-border-contrast);border-radius:var(--ubq-border_radius-l)}.UBQ_GradientControls__gradientBar--mydcn.UBQ_GradientControls__disabled--FB3Ja{opacity:.55}.UBQ_GradientControls__gradientBar--mydcn>button{position:absolute;width:calc(var(--ubq-scale-base) * 2);height:calc(var(--ubq-scale-base) * 2);padding:0;display:flex;flex-direction:column;align-items:center;border:none;outline:none;border-radius:var(--ubq-border_radius-m);cursor:grab}.UBQ_GradientControls__gradientBar--mydcn>button:disabled{cursor:inherit}.UBQ_GradientControls__gradientBar--mydcn>button.UBQ_GradientControls__active--B4597{height:calc(100% - 2 * 2px)}.UBQ_GradientControls__gradientBar--mydcn>button.UBQ_GradientControls__grabbing--w5wnf{cursor:grabbing}.UBQ_GradientControls__gradientBar--mydcn>button.UBQ_GradientControls__add--iSkp2{width:calc(3 * var(--ubq-scale-base));height:calc(6 * var(--ubq-scale-base));border-radius:var(--ubq-border_radius-m);margin:0;display:flex;justify-content:center;overflow:hidden;background-color:transparent;color:var(--ubq-static-contrast-white);cursor:default}.UBQ_GradientControls__gradientBar--mydcn>button.UBQ_GradientControls__add--iSkp2 .UBQ_GradientControls__stack--_aVR1{justify-items:center;align-items:center}.UBQ_GradientControls__gradientBar--mydcn>button.UBQ_GradientControls__add--iSkp2 .UBQ_GradientControls__stack--_aVR1 svg{opacity:.8}.UBQ_GradientControls__gradientBar--mydcn>button.UBQ_GradientControls__add--iSkp2 .UBQ_GradientControls__background--LrI5l{width:calc(3 * var(--ubq-scale-base));height:calc(6 * var(--ubq-scale-base));background-color:var(--ubq-static-contrast-black);filter:opacity(50%)}.UBQ_GradientControls__gradientBar--mydcn>button>*{flex:0 0 100%}.UBQ_GradientControls__gradientBar--mydcn>button:focus-visible{box-shadow:var(--ubq-effect-focus)}.UBQ_GradientControls__gradientBar--mydcn>button>.UBQ_GradientControls__doubleBorder--IW1Y9{filter:opacity(50%);width:100%;height:100%;background:transparent;border-radius:var(--ubq-border_radius-m);box-shadow:0 0 0 2px var(--ubq-static-contrast-black),inset 0 0 0 2px var(--ubq-static-contrast-white)}
|
|
77
79
|
.UBQ_ColorSelection__block--FN2Fv{width:calc(70 * var(--ubq-scale-base));padding:var(--ubq-margin-s)}.UBQ_ColorSelection__interactiveContainerWithDisabledInputs--VdqDE,.UBQ_ColorSelection__interactiveContainerWithDisabledInputs--VdqDE label{cursor:pointer}.UBQ_ColorSelection__header--_BOZa{display:flex;justify-content:space-between;align-items:center;margin-bottom:var(--ubq-margin-m)}.UBQ_ColorSelection__header--_BOZa>*:not(.UBQ_ColorSelection__heading--g9Gma){flex:0 0 auto}.UBQ_ColorSelection__heading--g9Gma{font-size:var(--ubq-typography-headline-l-size);line-height:var(--ubq-typography-headline-l-line_height);letter-spacing:var(--ubq-typography-headline-l-letter_spacing);font-family:var(--ubq-typography-headline-l-font_family);font-weight:var(--ubq-typography-headline-l-weight)}.UBQ_ColorSelection__section--Zd8PY{padding-top:var(--ubq-margin-xs);display:flex;flex-direction:column}.UBQ_ColorSelection__section--Zd8PY:not(:last-child){padding-bottom:var(--ubq-margin-l)}.UBQ_ColorSelection__section--Zd8PY>div:not(:last-child){margin-bottom:var(--ubq-margin-s)}.UBQ_ColorSelection__colorPalette--DFNLf{display:grid;grid-template-columns:repeat(9, max-content);gap:var(--ubq-margin-s)}input[type=range].UBQ_ColorSelection__hueSlider--HuT26{background:linear-gradient(90deg, #f00 0%, #ff0 16.66%, #0f0 33.33%, #0ff 50%, #00f 66.66%, #f0f 83.33%, #f00 100%) !important}input[type=range].UBQ_ColorSelection__hueSlider--HuT26,input[type=range].UBQ_ColorSelection__opacitySlider--cF7ez{--slider-thumb-color: white;--slider-thumb-color-active: white;--slider-thumb-color-inner: transparent}input[type=range].UBQ_ColorSelection__hueSlider--HuT26::-ms-thumb,input[type=range].UBQ_ColorSelection__opacitySlider--cF7ez::-ms-thumb{box-shadow:inset 0 0 0 var(--ubq-scale-base) #fff !important;background:transparent !important}
|
|
78
|
-
.
|
|
79
|
-
.
|
|
80
|
-
.
|
|
80
|
+
.UBQ_InspectorLibrary__block--fl3Qd{display:grid;grid-template-columns:1fr 1fr;grid-gap:var(--ubq-margin-m)}.UBQ_InspectorLibrary__singleColumn--SR5KA{display:flex;flex-direction:column;grid-gap:0}.UBQ_InspectorLibrary__singleColumn--SR5KA>*{margin-bottom:var(--ubq-margin-m)}
|
|
81
|
+
.UBQ_ImageProcessorControls__block--WiBOU{overflow:hidden}
|
|
82
|
+
.UBQ_FilterIntensitySlider__block--r91Yk{overflow:hidden}
|
|
83
|
+
.UBQ_StrokeStyleSelect__button--pvL6q{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:calc(30 * var(--ubq-scale-base))}.UBQ_StrokeStyleSelect__option--_NVLj{display:flex;gap:var(--ubq-margin-xs)}
|
|
84
|
+
.UBQ_StrokeProperties__popoverContent--_jKOv{width:calc(60 * var(--ubq-scale-base))}
|
|
81
85
|
.UBQ_box__block--d0RCf{position:absolute;top:0;bottom:0;left:0;right:0;width:100%;height:100%;transform-origin:0% 0%;outline:none;cursor:move;z-index:6}.UBQ_box__block--d0RCf.UBQ_box__disabledFrame--_2I4a .cesdk__frameHandle{display:none}.UBQ_box__disabled--_Fora{cursor:not-allowed}.UBQ_box__page--KmjfK{cursor:default}.UBQ_box__dragging--ut3q9{cursor:inherit}.UBQ_box__nonPageBoxShadow--eCKt7{box-shadow:inset 0 0 0 1px rgba(0,0,0,0)}.UBQ_box__deletingBoxShadow--cZQDu{box-shadow:inset 0 0 0 1px var(--ubq-notice-error)}
|
|
82
86
|
.UBQ_TextVariableAction__optionLabel--pVs5j{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:flex;align-items:center}
|
|
83
87
|
.UBQ_ScrollBar__block--UHR4X{position:absolute;z-index:4;opacity:0;transition:opacity .4s ease;transition-delay:1s;cursor:pointer}.UBQ_ScrollBar__block--UHR4X:hover,.UBQ_ScrollBar__block--UHR4X.UBQ_ScrollBar__show--_xNek{opacity:1;transition-delay:0s}.UBQ_ScrollBar__block--UHR4X:hover .UBQ_ScrollBar__handle--qyPEd{opacity:.5;transition-delay:0s}.UBQ_ScrollBar__block--UHR4X.UBQ_ScrollBar__horizontal--VAHUF{height:calc(2 * var(--ubq-scale-base));left:0;right:0;bottom:var(--ubq-margin-xs)}.UBQ_ScrollBar__block--UHR4X.UBQ_ScrollBar__vertical--VSCVV{width:calc(2 * var(--ubq-scale-base));top:0;right:var(--ubq-margin-xs);bottom:0}.UBQ_ScrollBar__handle--qyPEd{position:absolute;width:calc(2 * var(--ubq-scale-base));border-radius:8px;background:#000;border:1px solid #fff;z-index:4;cursor:grab;opacity:.25;transition:opacity .4s ease;transition-delay:1s;box-sizing:border-box}.UBQ_ScrollBar__handle--qyPEd.UBQ_ScrollBar__horizontal--VAHUF{top:0;bottom:0;left:0}.UBQ_ScrollBar__handle--qyPEd.UBQ_ScrollBar__vertical--VSCVV{top:0;left:0;right:0}.UBQ_ScrollBar__handle--qyPEd.UBQ_ScrollBar__isDragging--NOpVD{opacity:.5}.UBQ_ScrollBar__isDisabled--Xaf9r{display:none}
|
|
@@ -95,7 +99,7 @@
|
|
|
95
99
|
.UBQ_ZoomOptions__block--oIA1Q{display:flex;flex-direction:column;width:calc(47 * var(--ubq-scale-base));box-sizing:border-box}.UBQ_ZoomOptions__block--oIA1Q .UBQ_ZoomOptions__option--yCiu2>span{font-family:var(--ubq-typography-label-m-font_family);font-size:var(--ubq-typography-label-m-size);font-weight:var(--ubq-typography-label-m-weight);line-height:var(--ubq-typography-label-m-line_height);letter-spacing:var(--ubq-typography-label-m-letter_spacing);border-radius:var(--ubq-border_radius-m);color:var(--ubq-foreground-default);-webkit-user-select:none;user-select:none;cursor:pointer;box-sizing:border-box;display:flex;align-items:center;justify-content:space-between}.UBQ_ZoomOptions__block--oIA1Q .UBQ_ZoomOptions__option--yCiu2>span .UBQ_ZoomOptions__shortcutContainer--wkOKW{color:var(--ubq-foreground-info);display:inline-flex;align-items:center;flex-grow:0}.UBQ_ZoomOptions__block--oIA1Q .UBQ_ZoomOptions__option--yCiu2>span .UBQ_ZoomOptions__shortcutContainer--wkOKW>svg{height:var(--ubq-typography-button-m-line_height);width:var(--ubq-typography-button-m-line_height)}
|
|
96
100
|
.UBQ_ZoomControls__label--X3u17{min-width:calc(17 * var(--ubq-scale-base))}.UBQ_ZoomControls__label--X3u17>span>span{text-align:right}
|
|
97
101
|
.UBQ_CallToAction__listing--yY_VC{display:flex;flex-direction:column;margin:0;padding:0;list-style:none}.UBQ_CallToAction__listing--yY_VC>li{display:flex;margin-bottom:var(--ubq-margin-xs)}.UBQ_CallToAction__listing--yY_VC>li:last-child{margin-bottom:0}
|
|
98
|
-
.UBQ_Topbar__block--WcJ8K{display:flex;flex-direction:row;justify-content:space-between;align-items:center;box-sizing:border-box;width:100%;min-height:calc( var(--ubq-margin-xs) * 2 + var(--ubq-typography-button-m-line_height) );padding:var(--ubq-margin-m);background:var(--ubq-Topbar-background, var(--ubq-elevation-3))}.UBQ_Topbar__controlsContainerLeft--_kI01{height:100%;display:flex;flex-wrap:nowrap;align-items:center}.UBQ_Topbar__controlsContainerLeft--_kI01>*:not(:last-child){margin-right:var(--ubq-margin-m)}.UBQ_Topbar__controlsContainerCenter--_4yve{height:100%;display:flex;flex-wrap:nowrap;align-items:center;display:flex;justify-content:center;align-items:center;width:auto}.UBQ_Topbar__controlsContainerCenter--_4yve>*:not(:last-child){margin-right:var(--ubq-margin-m)}.UBQ_Topbar__title--rpDvo{
|
|
102
|
+
.UBQ_Topbar__block--WcJ8K{display:flex;flex-direction:row;justify-content:space-between;align-items:center;box-sizing:border-box;width:100%;min-height:calc( var(--ubq-margin-xs) * 2 + var(--ubq-typography-button-m-line_height) );padding:var(--ubq-margin-m);background:var(--ubq-Topbar-background, var(--ubq-elevation-3))}.UBQ_Topbar__controlsContainerLeft--_kI01{height:100%;display:flex;flex-wrap:nowrap;align-items:center}.UBQ_Topbar__controlsContainerLeft--_kI01>*:not(:last-child){margin-right:var(--ubq-margin-m)}.UBQ_Topbar__controlsContainerCenter--_4yve{height:100%;display:flex;flex-wrap:nowrap;align-items:center;display:flex;justify-content:center;align-items:center;width:auto}.UBQ_Topbar__controlsContainerCenter--_4yve>*:not(:last-child){margin-right:var(--ubq-margin-m)}.UBQ_Topbar__title--rpDvo{padding:0 var(--ubq-margin-m)}.UBQ_Topbar__controlsContainerRight--OjqLt{height:100%;display:flex;flex-wrap:nowrap;align-items:center}.UBQ_Topbar__controlsContainerRight--OjqLt>*:not(:last-child){margin-right:var(--ubq-margin-m)}.UBQ_Topbar__sceneFileControlOption--TpFvV{display:flex}.UBQ_Topbar__sceneFileControlOption--TpFvV span{margin:0 var(--ubq-margin-xs)}
|
|
99
103
|
*:focus-visible{outline:none}*:focus{outline:none}.react-draggable-transparent-selection{-webkit-user-select:none;user-select:none}.UBQ_GlobalStyles__block--wwp3W{height:100%;width:100%}
|
|
100
104
|
.UBQ_DndLayer__block--WAFd5{position:absolute;top:0;bottom:0;left:0;right:0;display:flex;justify-content:center;align-items:center;z-index:35;background-color:var(--ubq-overlay)}.UBQ_DndLayer__headingContainer--uftO_{text-align:center}.UBQ_DndLayer__heading--pyvQP,.UBQ_DndLayer__subheading--xbGvL{color:var(--ubq-foreground-default);font-size:var(--ubq-typography-label-m-size);line-height:var(--ubq-typography-label-m-line_height);letter-spacing:var(--ubq-typography-label-m-letter_spacing);font-family:var(--ubq-typography-label-m-font_family);font-weight:var(--ubq-typography-label-m-weight)}
|
|
101
105
|
.UBQ_RawInspector__block--Ezhba{display:flex;align-items:center;width:100%;font-size:12px;margin-bottom:10px}.UBQ_RawInspector__block--Ezhba>label{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.UBQ_RawInspector__block--Ezhba>input{width:95%}.UBQ_RawInspector__rawInline--_j10W{flex-direction:row-reverse;justify-content:flex-end}.UBQ_RawInspector__rawInline--_j10W>input{width:auto}.UBQ_RawInspector__rawField--Z1fRF{flex-direction:column;justify-content:flex-start;align-items:flex-start}.UBQ_RawInspector__rawField--Z1fRF>input{width:95%}
|
|
@@ -106,9 +110,9 @@
|
|
|
106
110
|
.UBQ_OptionsMenu__separator--eiH8u{margin-bottom:var(--ubq-margin-s)}.UBQ_OptionsMenu__shortcutString--j9MBo{align-self:flex-end;display:flex;align-items:center;text-transform:uppercase;text-align:end;color:var(--ubq-foreground-info)}.UBQ_OptionsMenu__shortcutString--j9MBo>svg{margin-right:var(--ubq-margin-xs)}
|
|
107
111
|
.UBQ_TextAlignmentSelect__option--b0Uqu{display:flex;justify-content:flex-start;align-items:center}.UBQ_TextAlignmentSelect__option--b0Uqu>*:not(:last-child){margin-right:var(--ubq-margin-xs)}.UBQ_TextAlignmentSelect__cornerChevronOverlay--Xsfn1{display:grid;grid-template-areas:"stack"}.UBQ_TextAlignmentSelect__cornerChevronOverlay--Xsfn1>*{grid-area:stack}
|
|
108
112
|
.UBQ_ShapeOptions__popoverContent--_AAQC{width:calc(60 * var(--ubq-scale-base))}
|
|
109
|
-
.
|
|
113
|
+
.UBQ_ShapeStrokeWidth__popoverContent--KY7Dh{width:calc(60 * var(--ubq-scale-base))}.UBQ_ShapeStrokeWidth__button--TTA89{max-width:calc(30 * var(--ubq-scale-base))}
|
|
110
114
|
.UBQ_LineWidth__popoverContent--LWkGc{width:calc(60 * var(--ubq-scale-base))}
|
|
111
|
-
.UBQ_InspectorBar__block--LJY1E{display:grid;grid-template-columns:20% 1fr 20%;justify-content:space-between;align-items:stretch;padding:var(--ubq-margin-m) var(--ubq-margin-l);height:calc(var(--ubq-scale-base) * 6);background:var(--ubq-InspectorBar-background, var(--ubq-elevation-1))}.UBQ_InspectorBar__area--LWR2R{display:flex;justify-content:center;margin:0 var(--ubq-margin-m)}.UBQ_InspectorBar__area--LWR2R:first-child{justify-content:flex-start}.UBQ_InspectorBar__area--LWR2R:last-child{justify-content:flex-end}.UBQ_InspectorBar__area--LWR2R:first-child{margin-left:0}.UBQ_InspectorBar__area--LWR2R:last-child{margin-right:0}.UBQ_InspectorBar__areaGroup--Xhg5d{display:flex;margin:0 var(--ubq-margin-m)}.UBQ_InspectorBar__areaGroup--Xhg5d:first-child{margin-left:0}.UBQ_InspectorBar__areaGroup--Xhg5d:last-child{margin-right:0}.UBQ_InspectorBar__areaGroup--Xhg5d>*:not(:last-child){margin-right:var(--ubq-margin-s)}.UBQ_InspectorBar__areaGroup--Xhg5d:empty{margin:0}.UBQ_InspectorBar__heading--BLtlJ{flex:1 1 auto;display:flex;align-items:center;color:var(--ubq-foreground-default);font-size:var(--ubq-typography-headline-l-size);line-height:var(--ubq-typography-headline-l-line_height);letter-spacing:var(--ubq-typography-headline-l-letter_spacing);font-family:var(--ubq-typography-headline-l-font_family);font-weight:var(--ubq-typography-headline-l-weight)}.UBQ_InspectorBar__fontSize--nXKQh{width:calc(var(--ubq-scale-base) * 28)}.
|
|
115
|
+
.UBQ_InspectorBar__block--LJY1E{display:grid;grid-template-columns:20% 1fr 20%;justify-content:space-between;align-items:stretch;padding:var(--ubq-margin-m) var(--ubq-margin-l);height:calc(var(--ubq-scale-base) * 6);background:var(--ubq-InspectorBar-background, var(--ubq-elevation-1))}.UBQ_InspectorBar__area--LWR2R{display:flex;justify-content:center;margin:0 var(--ubq-margin-m)}.UBQ_InspectorBar__area--LWR2R:first-child{justify-content:flex-start}.UBQ_InspectorBar__area--LWR2R:last-child{justify-content:flex-end}.UBQ_InspectorBar__area--LWR2R:first-child{margin-left:0}.UBQ_InspectorBar__area--LWR2R:last-child{margin-right:0}.UBQ_InspectorBar__areaGroup--Xhg5d{display:flex;margin:0 var(--ubq-margin-m)}.UBQ_InspectorBar__areaGroup--Xhg5d:first-child{margin-left:0}.UBQ_InspectorBar__areaGroup--Xhg5d:last-child{margin-right:0}.UBQ_InspectorBar__areaGroup--Xhg5d>*:not(:last-child){margin-right:var(--ubq-margin-s)}.UBQ_InspectorBar__areaGroup--Xhg5d:empty{margin:0}.UBQ_InspectorBar__heading--BLtlJ{flex:1 1 auto;display:flex;align-items:center;color:var(--ubq-foreground-default);font-size:var(--ubq-typography-headline-l-size);line-height:var(--ubq-typography-headline-l-line_height);letter-spacing:var(--ubq-typography-headline-l-letter_spacing);font-family:var(--ubq-typography-headline-l-font_family);font-weight:var(--ubq-typography-headline-l-weight)}.UBQ_InspectorBar__fontSize--nXKQh{width:calc(var(--ubq-scale-base) * 28)}.UBQ_InspectorBar__optionsMenuRow--dk3L5{display:grid;grid-template-columns:auto 50%;align-items:center;margin-bottom:var(--ubq-margin-s)}
|
|
112
116
|
.UBQ_UploadModal__block--_pbct{display:flex;flex-direction:row;align-items:flex-start}.UBQ_UploadModal__block--_pbct>:not(:last-child){margin-right:var(--ubq-margin-l)}.UBQ_UploadModal__content--WuJKQ p{width:40ch;margin:0}
|
|
113
117
|
.UBQ_Igor__block--eWJy2{width:100%;height:100%;color:#fff}.UBQ_Igor__block--eWJy2:hover{cursor:not-allowed}.UBQ_Igor__block--eWJy2 svg{pointer-events:none}.UBQ_Igor__block--eWJy2.UBQ_Igor__pissed--CUyhe{animation:3.5s linear 0s UBQ_Igor__igor-pissed--cm9Qp}@keyframes ubq-igor-eye{0%{transform:translate3d(0px, 0.3px, 0px)}25%{transform:translate3d(-0.5px, 0.5px, 0px)}75%{transform:translate3d(0.5px, 0.5px, 0px)}100%{transform:translate3d(0px, 0.3px, 0px)}}@keyframes UBQ_Igor__igor-pissed--cm9Qp{25%{transform:scale(5) translate3d(-10px, -20px, 0) rotate(0.1turn)}50%{transform:scale(10) translate3d(-10px, 20px, 0) rotate(-0.1turn)}to{transform:scale(25) translate3d(0, 0, 0) rotate(0.1turn);opacity:.2}}
|
|
114
118
|
.UBQ_Credits__block--uBvYc{width:500px}.UBQ_Credits__header--eoGPv{display:flex;align-items:center}.UBQ_Credits__header--eoGPv .UBQ_Credits__version--pgMQ_{font-family:var(--ubq-typography-input-m-font_family);color:var(--ubq-foreground-default)}.UBQ_Credits__header--eoGPv .UBQ_Credits__headerLeft--ltWPL{padding-right:var(--ubq-margin-l)}.UBQ_Credits__header--eoGPv .UBQ_Credits__description--Cyl3A{color:var(--ubq-foreground-default)}.UBQ_Credits__cesdkLogo--_Z80b{color:#fff}.UBQ_Credits__igorContainer--pemj0{padding:var(--ubq-margin-l)}.UBQ_Credits__contributors--dVs8Q{display:flex}.UBQ_Credits__contributors--dVs8Q>div{color:var(--ubq-foreground-info);flex:1}.UBQ_Credits__imglyLogo--ynpBa{width:58px !important;height:13px !important}
|