@orion-studios/payload-studio 0.6.0-beta.66 → 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 +29 -0
- package/dist/index.mjs +3 -3
- package/package.json +1 -1
|
@@ -560,10 +560,39 @@
|
|
|
560
560
|
width: 100%;
|
|
561
561
|
}
|
|
562
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
|
+
|
|
563
591
|
.orion-builder-v2-editor .gjs-field input,
|
|
564
592
|
.orion-builder-v2-editor .gjs-field select,
|
|
565
593
|
.orion-builder-v2-editor .gjs-field textarea {
|
|
566
594
|
min-height: 36px;
|
|
595
|
+
outline: none !important;
|
|
567
596
|
}
|
|
568
597
|
|
|
569
598
|
.orion-builder-v2-editor .gjs-field textarea {
|
package/dist/index.mjs
CHANGED
package/package.json
CHANGED