@orion-studios/payload-studio 0.6.0-beta.64 → 0.6.0-beta.65
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/builder-v2/styles.css +56 -0
- package/package.json +1 -1
|
@@ -459,6 +459,62 @@
|
|
|
459
459
|
width: 100% !important;
|
|
460
460
|
}
|
|
461
461
|
|
|
462
|
+
.orion-builder-v2-inspector #orion-builder-v2-traits,
|
|
463
|
+
.orion-builder-v2-inspector #orion-builder-v2-traits .gjs-trt-traits,
|
|
464
|
+
.orion-builder-v2-inspector #orion-builder-v2-traits .gjs-trt-trait,
|
|
465
|
+
.orion-builder-v2-inspector #orion-builder-v2-traits .gjs-trt-trait__wrp,
|
|
466
|
+
.orion-builder-v2-inspector #orion-builder-v2-traits .gjs-trt-trait__cnt {
|
|
467
|
+
box-sizing: border-box !important;
|
|
468
|
+
display: block !important;
|
|
469
|
+
float: none !important;
|
|
470
|
+
flex: none !important;
|
|
471
|
+
margin-left: 0 !important;
|
|
472
|
+
max-width: none !important;
|
|
473
|
+
min-width: 0 !important;
|
|
474
|
+
overflow: visible !important;
|
|
475
|
+
padding-left: 0 !important;
|
|
476
|
+
position: static !important;
|
|
477
|
+
width: 100% !important;
|
|
478
|
+
}
|
|
479
|
+
|
|
480
|
+
.orion-builder-v2-inspector #orion-builder-v2-traits .gjs-trt-trait {
|
|
481
|
+
margin-bottom: 16px !important;
|
|
482
|
+
}
|
|
483
|
+
|
|
484
|
+
.orion-builder-v2-inspector #orion-builder-v2-traits .gjs-trt-trait__label {
|
|
485
|
+
box-sizing: border-box !important;
|
|
486
|
+
display: block !important;
|
|
487
|
+
float: none !important;
|
|
488
|
+
flex: none !important;
|
|
489
|
+
margin: 0 0 6px !important;
|
|
490
|
+
max-width: none !important;
|
|
491
|
+
min-width: 0 !important;
|
|
492
|
+
overflow: visible !important;
|
|
493
|
+
padding: 0 !important;
|
|
494
|
+
position: static !important;
|
|
495
|
+
text-overflow: clip !important;
|
|
496
|
+
white-space: nowrap !important;
|
|
497
|
+
width: 100% !important;
|
|
498
|
+
word-break: normal !important;
|
|
499
|
+
}
|
|
500
|
+
|
|
501
|
+
.orion-builder-v2-inspector #orion-builder-v2-traits .gjs-field,
|
|
502
|
+
.orion-builder-v2-inspector #orion-builder-v2-traits .gjs-field input,
|
|
503
|
+
.orion-builder-v2-inspector #orion-builder-v2-traits .gjs-field select,
|
|
504
|
+
.orion-builder-v2-inspector #orion-builder-v2-traits .gjs-field textarea {
|
|
505
|
+
box-sizing: border-box !important;
|
|
506
|
+
display: block !important;
|
|
507
|
+
float: none !important;
|
|
508
|
+
margin-left: 0 !important;
|
|
509
|
+
max-width: none !important;
|
|
510
|
+
min-width: 0 !important;
|
|
511
|
+
overflow: visible !important;
|
|
512
|
+
padding-left: 0 !important;
|
|
513
|
+
position: static !important;
|
|
514
|
+
text-overflow: clip !important;
|
|
515
|
+
width: 100% !important;
|
|
516
|
+
}
|
|
517
|
+
|
|
462
518
|
.orion-builder-v2-editor .gjs-sm-sectors {
|
|
463
519
|
display: grid;
|
|
464
520
|
gap: 10px;
|
package/package.json
CHANGED