@innovastudio/contentbox 1.6.21 → 1.6.23

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@innovastudio/contentbox",
3
3
  "type": "module",
4
- "version": "1.6.21",
4
+ "version": "1.6.23",
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.4.140",
55
+ "@innovastudio/contentbuilder": "^1.4.145",
56
56
  "js-beautify": "^1.14.0"
57
57
  }
58
58
  }
@@ -2821,6 +2821,46 @@ body.controlpanel {
2821
2821
  }
2822
2822
  }
2823
2823
  */
2824
+ /* fullview & no topspace */
2825
+ body.fullview .is-content-view.fullview iframe {
2826
+ width: 100%;
2827
+ height: 100%;
2828
+ }
2829
+
2830
+ body.fullview #editPanel {
2831
+ left: 61px !important;
2832
+ right: 0px !important;
2833
+ transition: all 0.3s ease;
2834
+ }
2835
+
2836
+ body.fullview.controlpanel #editPanel {
2837
+ left: 61px !important;
2838
+ right: 290px !important;
2839
+ height: 100vh !important;
2840
+ width: unset !important;
2841
+ transition: all 0.3s ease;
2842
+ }
2843
+
2844
+ body.fullview .is-content-view {
2845
+ width: 100%;
2846
+ margin-top: 0 !important;
2847
+ height: 100vh !important;
2848
+ transform: scale(1);
2849
+ }
2850
+
2851
+ body.fullview.controlpanel .is-content-view {
2852
+ width: 100%;
2853
+ margin-top: 0 !important;
2854
+ height: 100vh !important;
2855
+ margin-right: 0;
2856
+ transform: scale(1);
2857
+ }
2858
+
2859
+ body.fullview .is-content-view > div:first-child {
2860
+ display: none !important;
2861
+ }
2862
+
2863
+ /* fullview & topspace */
2824
2864
  body.fullview.topspace .is-content-view.fullview iframe {
2825
2865
  height: calc(100vh - var(--topspace));
2826
2866
  }