@orion-studios/payload-studio 0.6.0-beta.65 → 0.6.0-beta.67
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 +52 -1
- package/package.json +1 -1
|
@@ -463,7 +463,9 @@
|
|
|
463
463
|
.orion-builder-v2-inspector #orion-builder-v2-traits .gjs-trt-traits,
|
|
464
464
|
.orion-builder-v2-inspector #orion-builder-v2-traits .gjs-trt-trait,
|
|
465
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
|
|
466
|
+
.orion-builder-v2-inspector #orion-builder-v2-traits .gjs-trt-trait__cnt,
|
|
467
|
+
.orion-builder-v2-inspector #orion-builder-v2-traits .gjs-label-wrp,
|
|
468
|
+
.orion-builder-v2-inspector #orion-builder-v2-traits .gjs-field-wrp {
|
|
467
469
|
box-sizing: border-box !important;
|
|
468
470
|
display: block !important;
|
|
469
471
|
float: none !important;
|
|
@@ -498,6 +500,26 @@
|
|
|
498
500
|
word-break: normal !important;
|
|
499
501
|
}
|
|
500
502
|
|
|
503
|
+
.orion-builder-v2-inspector #orion-builder-v2-traits .gjs-label-wrp {
|
|
504
|
+
margin: 0 0 6px !important;
|
|
505
|
+
}
|
|
506
|
+
|
|
507
|
+
.orion-builder-v2-inspector #orion-builder-v2-traits .gjs-label {
|
|
508
|
+
box-sizing: border-box !important;
|
|
509
|
+
display: block !important;
|
|
510
|
+
float: none !important;
|
|
511
|
+
margin: 0 !important;
|
|
512
|
+
max-width: none !important;
|
|
513
|
+
min-width: 0 !important;
|
|
514
|
+
overflow: visible !important;
|
|
515
|
+
padding: 0 !important;
|
|
516
|
+
position: static !important;
|
|
517
|
+
text-overflow: clip !important;
|
|
518
|
+
white-space: nowrap !important;
|
|
519
|
+
width: 100% !important;
|
|
520
|
+
word-break: normal !important;
|
|
521
|
+
}
|
|
522
|
+
|
|
501
523
|
.orion-builder-v2-inspector #orion-builder-v2-traits .gjs-field,
|
|
502
524
|
.orion-builder-v2-inspector #orion-builder-v2-traits .gjs-field input,
|
|
503
525
|
.orion-builder-v2-inspector #orion-builder-v2-traits .gjs-field select,
|
|
@@ -538,10 +560,39 @@
|
|
|
538
560
|
width: 100%;
|
|
539
561
|
}
|
|
540
562
|
|
|
563
|
+
.orion-builder-v2-editor .gjs-sm-property .gjs-sm-label {
|
|
564
|
+
display: block;
|
|
565
|
+
margin-bottom: 7px;
|
|
566
|
+
}
|
|
567
|
+
|
|
568
|
+
.orion-builder-v2-editor .gjs-sm-property:not(.gjs-sm-radio) .gjs-field,
|
|
569
|
+
.orion-builder-v2-editor .gjs-sm-property .gjs-sm-field {
|
|
570
|
+
background: #fffdf9 !important;
|
|
571
|
+
border: 1px solid rgba(205, 181, 163, 0.95) !important;
|
|
572
|
+
border-radius: 6px;
|
|
573
|
+
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
|
|
574
|
+
min-height: 36px;
|
|
575
|
+
}
|
|
576
|
+
|
|
577
|
+
.orion-builder-v2-editor .gjs-sm-property:not(.gjs-sm-radio) .gjs-field:hover,
|
|
578
|
+
.orion-builder-v2-editor .gjs-sm-property .gjs-sm-field:hover {
|
|
579
|
+
border-color: rgba(181, 111, 77, 0.72) !important;
|
|
580
|
+
}
|
|
581
|
+
|
|
582
|
+
.orion-builder-v2-editor .gjs-sm-property:not(.gjs-sm-radio) .gjs-field:focus-within,
|
|
583
|
+
.orion-builder-v2-editor .gjs-sm-property .gjs-sm-field:focus-within {
|
|
584
|
+
border-color: #8492aa !important;
|
|
585
|
+
box-shadow:
|
|
586
|
+
0 0 0 1px rgba(132, 146, 170, 0.42),
|
|
587
|
+
inset 0 1px 0 rgba(255, 255, 255, 0.9);
|
|
588
|
+
outline: none !important;
|
|
589
|
+
}
|
|
590
|
+
|
|
541
591
|
.orion-builder-v2-editor .gjs-field input,
|
|
542
592
|
.orion-builder-v2-editor .gjs-field select,
|
|
543
593
|
.orion-builder-v2-editor .gjs-field textarea {
|
|
544
594
|
min-height: 36px;
|
|
595
|
+
outline: none !important;
|
|
545
596
|
}
|
|
546
597
|
|
|
547
598
|
.orion-builder-v2-editor .gjs-field textarea {
|
package/package.json
CHANGED