@innovastudio/contentbox 1.5.93 → 1.5.94

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.5.93",
4
+ "version": "1.5.94",
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.113",
55
+ "@innovastudio/contentbuilder": "^1.4.114",
56
56
  "i": "^0.3.7",
57
57
  "js-beautify": "^1.14.0",
58
58
  "npm": "^10.1.0"
@@ -1,3 +1,104 @@
1
+ /* IFRAME * New Control Panel */
2
+ .is-content-view.desktop {
3
+ width: 1366px;
4
+ height: 853px;
5
+ }
6
+ .is-content-view.tablet-landscape {
7
+ width: 1080px;
8
+ height: 810px;
9
+ }
10
+ .is-content-view.tablet {
11
+ width: 768px;
12
+ height: 1024px;
13
+ }
14
+ .is-content-view.mobile {
15
+ width: 390px;
16
+ height: 844px;
17
+ }
18
+
19
+ @media all and (min-width: 2030px) {
20
+ .is-content-view.desktop {
21
+ width: 1560px;
22
+ height: 974px;
23
+ }
24
+
25
+ .is-content-view.tablet-landscape {
26
+ width: 1280px;
27
+ height: 960px;
28
+ }
29
+ }
30
+ @media all and (max-width: 1800px) {
31
+ .is-content-view {
32
+ transform: scale(0.95);
33
+ }
34
+ }
35
+ @media all and (max-width: 1730px) {
36
+ .is-content-view {
37
+ transform: scale(0.9);
38
+ }
39
+ }
40
+ @media all and (max-width: 1680px) {
41
+ .is-content-view {
42
+ transform: scale(0.85);
43
+ }
44
+ }
45
+ @media all and (max-width: 1600px) {
46
+ .is-content-view {
47
+ transform: scale(0.8);
48
+ }
49
+ }
50
+ @media all and (max-width: 1520px) {
51
+ .is-content-view {
52
+ transform: scale(0.75);
53
+ }
54
+ }
55
+ @media all and (max-width: 1450px) {
56
+ .is-content-view {
57
+ transform: scale(0.7);
58
+ }
59
+ }
60
+ @media all and (max-width: 1375px) {
61
+ .is-content-view {
62
+ transform: scale(0.65);
63
+ }
64
+ }
65
+ @media all and (max-width: 1300px) {
66
+ .is-content-view {
67
+ transform: scale(0.6);
68
+ }
69
+ }
70
+ @media all and (max-width: 1235px) {
71
+ .is-content-view {
72
+ transform: scale(0.55);
73
+ }
74
+ }
75
+ @media all and (max-width: 1175px) {
76
+ .is-content-view {
77
+ transform: scale(0.5);
78
+ }
79
+ }
80
+ @media all and (max-width: 1090px) {
81
+ .is-content-view {
82
+ transform: scale(0.45);
83
+ }
84
+ }
85
+ body.controlpanel .is-responsive-tool {
86
+ right: 340px;
87
+ }
88
+ body.controlpanel .is-content-view {
89
+ margin-right: 290px;
90
+ }
91
+ body.controlpanel .is-controlpanel {
92
+ position: fixed;
93
+ width: 290px;
94
+ height: 100vh;
95
+ top: 0;
96
+ right: 0;
97
+ background: #fff;
98
+ z-index: 1;
99
+ }
100
+
101
+ /* /IFRAME */
1
102
  .is-box-tool {
2
103
  display: none;
3
104
  z-index: 1;
@@ -11,14 +112,14 @@
11
112
  outline: none;
12
113
  text-align: center;
13
114
  cursor: pointer;
14
- border-radius: 0px;
15
- overflow: hidden;
16
- border-radius: 3px;
115
+ border-radius: 0;
116
+ border-top-left-radius: 3px;
117
+ border-top-right-radius: 3px;
17
118
  overflow: hidden;
18
119
  }
19
120
  .is-box-tool button {
20
- width: 40px !important;
21
- height: 40px !important;
121
+ width: 35px !important;
122
+ height: 35px !important;
22
123
  cursor: pointer;
23
124
  }
24
125
  .is-box-tool button svg {
@@ -31,37 +132,54 @@
31
132
  background: #FF9800;
32
133
  }
33
134
 
135
+ /* New Section Tool */
34
136
  .is-section-tool {
35
137
  display: none;
36
138
  z-index: 1;
37
139
  position: absolute;
38
- top: 15%;
140
+ margin-top: 40px;
141
+ top: 12%;
39
142
  right: 0px;
40
143
  left: auto;
41
- width: 40px;
42
- height: 80px;
43
- border-radius: 3px;
144
+ width: 35px;
145
+ height: auto;
146
+ flex-direction: column;
147
+ border-top-left-radius: 3px;
148
+ border-bottom-left-radius: 3px;
44
149
  overflow: hidden;
45
150
  }
46
151
  .is-section-tool > button {
47
- width: 40px;
48
- height: 40px;
152
+ width: 35px;
153
+ height: 35px;
49
154
  border-radius: 0;
50
- line-height: 40px;
155
+ line-height: 35px;
51
156
  padding: 0px;
52
157
  font-size: 13px;
53
158
  cursor: pointer;
54
159
  border: none;
160
+ background: transparent;
55
161
  }
56
- .is-section-tool .is-section-edit {
57
- background: rgb(0, 172, 214);
162
+ .is-section-tool > button.btn-move-section-up, .is-section-tool > button.btn-move-section-down {
163
+ background: #E3E3E3;
58
164
  }
59
- .is-section-tool .is-section-edit svg {
60
- fill: #fff !important;
165
+ .is-section-tool > button.btn-section-edit {
166
+ background: #03ACD6;
61
167
  }
62
- .is-section-tool .is-section-remove {
168
+ .is-section-tool > button.btn-section-remove {
63
169
  background: rgb(247, 99, 46);
64
- color: #fff !important;
170
+ }
171
+ .is-section-tool > button svg {
172
+ width: 16px;
173
+ height: 16px;
174
+ flex: none;
175
+ }
176
+ .is-section-tool > button.btn-move-section-up *, .is-section-tool > button.btn-move-section-down * {
177
+ color: #000;
178
+ fill: #000;
179
+ }
180
+ .is-section-tool > button.btn-section-edit *, .is-section-tool > button.btn-section-remove * {
181
+ color: #fff;
182
+ fill: #fff;
65
183
  }
66
184
 
67
185
  .is-dummy {
@@ -754,10 +872,3 @@
754
872
  }
755
873
 
756
874
  */
757
- .is-box-info * {
758
- color: #000;
759
- }
760
-
761
- .box-modal-open .box-select .is-container {
762
- outline: #00da89 1px solid;
763
- }