@innovastudio/contentbox 1.6.28 → 1.6.29
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/package.json +2 -2
- package/public/contentbox/contentbox.css +47 -15
- package/public/contentbox/contentbox.esm.js +35135 -24540
- package/public/contentbox/contentbox.min.js +12 -12
- package/public/contentbox/lang/en.js +6 -0
- package/readme.txt +1 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@innovastudio/contentbox",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.6.
|
|
4
|
+
"version": "1.6.29",
|
|
5
5
|
"description": "",
|
|
6
6
|
"main": "public/contentbox/contentbox.esm.js",
|
|
7
7
|
"files": [
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"ws": "^8.13.0"
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
|
-
"@innovastudio/contentbuilder": "^1.
|
|
55
|
+
"@innovastudio/contentbuilder": "^1.5.6",
|
|
56
56
|
"js-beautify": "^1.14.0"
|
|
57
57
|
}
|
|
58
58
|
}
|
|
@@ -651,6 +651,29 @@ body.controlpanel .is-content-view.mobile {
|
|
|
651
651
|
.builder-ui button:not(.is-btn-color):hover {
|
|
652
652
|
background-color: rgb(237, 237, 237);
|
|
653
653
|
}
|
|
654
|
+
.builder-ui .flex-unit {
|
|
655
|
+
display: flex;
|
|
656
|
+
gap: 15px;
|
|
657
|
+
}
|
|
658
|
+
.builder-ui .flex-unit > * {
|
|
659
|
+
width: 105px;
|
|
660
|
+
}
|
|
661
|
+
.builder-ui .flex-unit > * > *:first-child {
|
|
662
|
+
margin-bottom: 3px;
|
|
663
|
+
margin-top: 16px;
|
|
664
|
+
display: flex;
|
|
665
|
+
align-items: center;
|
|
666
|
+
justify-content: space-between;
|
|
667
|
+
}
|
|
668
|
+
.builder-ui .flex-unit > * > *:first-child .label {
|
|
669
|
+
margin: 0;
|
|
670
|
+
}
|
|
671
|
+
.builder-ui .flex-unit label, .builder-ui .flex-unit .label {
|
|
672
|
+
white-space: nowrap;
|
|
673
|
+
}
|
|
674
|
+
.builder-ui .flex-unit a, .builder-ui .flex-unit span {
|
|
675
|
+
font-size: 13px;
|
|
676
|
+
}
|
|
654
677
|
.builder-ui .label {
|
|
655
678
|
font-size: 13px;
|
|
656
679
|
margin: 20px 0 3px;
|
|
@@ -1352,8 +1375,12 @@ body.controlpanel .is-wrapper {
|
|
|
1352
1375
|
width: 22px;
|
|
1353
1376
|
height: 22px;
|
|
1354
1377
|
}
|
|
1378
|
+
.builder-ui .is-controlpanel .panel-dialog.icons input {
|
|
1379
|
+
outline-offset: -2px;
|
|
1380
|
+
}
|
|
1355
1381
|
.builder-ui .is-controlpanel .panel-dialog.icons > div {
|
|
1356
1382
|
display: flex;
|
|
1383
|
+
align-content: flex-start;
|
|
1357
1384
|
flex-wrap: wrap;
|
|
1358
1385
|
width: 100%;
|
|
1359
1386
|
height: calc(100% - 40px);
|
|
@@ -1713,7 +1740,7 @@ body.dark.topspace .is-sidebar-content {
|
|
|
1713
1740
|
|
|
1714
1741
|
.custom-topbar {
|
|
1715
1742
|
display: none;
|
|
1716
|
-
justify-content:
|
|
1743
|
+
justify-content: space-between;
|
|
1717
1744
|
align-items: center;
|
|
1718
1745
|
box-sizing: border-box;
|
|
1719
1746
|
padding: 0;
|
|
@@ -1731,30 +1758,34 @@ body.topspace .custom-topbar {
|
|
|
1731
1758
|
}
|
|
1732
1759
|
|
|
1733
1760
|
.custom-topbar div {
|
|
1761
|
+
width: 100%;
|
|
1734
1762
|
display: flex;
|
|
1735
1763
|
align-items: center;
|
|
1764
|
+
justify-content: center;
|
|
1736
1765
|
}
|
|
1737
1766
|
|
|
1738
1767
|
.custom-topbar > div:first-child {
|
|
1739
|
-
|
|
1740
|
-
|
|
1741
|
-
left: 30px;
|
|
1768
|
+
justify-content: flex-start;
|
|
1769
|
+
padding-left: 30px;
|
|
1742
1770
|
height: var(--topspace);
|
|
1743
1771
|
}
|
|
1744
1772
|
|
|
1773
|
+
@media all and (max-width: 970px) {
|
|
1774
|
+
.custom-topbar > div:first-child {
|
|
1775
|
+
display: none;
|
|
1776
|
+
}
|
|
1777
|
+
}
|
|
1745
1778
|
.custom-topbar > div:nth-child(3) {
|
|
1746
|
-
|
|
1747
|
-
|
|
1748
|
-
right: 16px;
|
|
1779
|
+
justify-content: flex-end;
|
|
1780
|
+
padding-right: 20px;
|
|
1749
1781
|
height: var(--topspace);
|
|
1750
1782
|
}
|
|
1751
1783
|
|
|
1752
1784
|
.custom-topbar > div:nth-child(2) {
|
|
1753
|
-
margin-left: 45px;
|
|
1754
1785
|
transition: all 0.3s ease;
|
|
1755
1786
|
}
|
|
1756
1787
|
|
|
1757
|
-
body.controlpanel .custom-topbar > div:nth-child(2) {
|
|
1788
|
+
body.controlpanel:not(.shift-off) .custom-topbar > div:nth-child(2) {
|
|
1758
1789
|
margin-left: -245px;
|
|
1759
1790
|
}
|
|
1760
1791
|
|
|
@@ -2856,7 +2887,7 @@ body.fullview.frame-center #editPanel {
|
|
|
2856
2887
|
transition: all 0.3s ease;
|
|
2857
2888
|
}
|
|
2858
2889
|
|
|
2859
|
-
body.fullview.controlpanel.frame-center #editPanel {
|
|
2890
|
+
body.fullview.controlpanel.frame-center:not(.shift-off) #editPanel {
|
|
2860
2891
|
left: 61px !important;
|
|
2861
2892
|
right: 290px !important;
|
|
2862
2893
|
height: 100vh !important;
|
|
@@ -2887,12 +2918,13 @@ body.fullview.topspace .is-content-view iframe {
|
|
|
2887
2918
|
}
|
|
2888
2919
|
|
|
2889
2920
|
/* Iframe Resizer */
|
|
2890
|
-
.iframe-resizer {
|
|
2921
|
+
.is-content-view > div.iframe-resizer {
|
|
2891
2922
|
position: absolute !important;
|
|
2892
|
-
|
|
2893
|
-
|
|
2894
|
-
|
|
2895
|
-
|
|
2923
|
+
background-color: rgb(222, 222, 222);
|
|
2924
|
+
width: 6px;
|
|
2925
|
+
height: 60px !important;
|
|
2926
|
+
top: calc(50% - 30px);
|
|
2927
|
+
right: -12px;
|
|
2896
2928
|
z-index: 3;
|
|
2897
2929
|
cursor: ew-resize;
|
|
2898
2930
|
display: block !important;
|