@innovastudio/contentbuilder 1.4.114 → 1.4.115
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
CHANGED
|
@@ -5520,3 +5520,68 @@ div[data-html] {
|
|
|
5520
5520
|
.padding-0[data-module=text-builder] {
|
|
5521
5521
|
padding: 0 2px 4px !important;
|
|
5522
5522
|
}
|
|
5523
|
+
|
|
5524
|
+
/* IFRAME * New Control Panel */
|
|
5525
|
+
.is-content-view.desktop {
|
|
5526
|
+
width: 1366px;
|
|
5527
|
+
height: 853px;
|
|
5528
|
+
}
|
|
5529
|
+
.is-content-view.tablet-landscape {
|
|
5530
|
+
width: 1080px;
|
|
5531
|
+
height: 810px;
|
|
5532
|
+
}
|
|
5533
|
+
.is-content-view.tablet {
|
|
5534
|
+
width: 768px;
|
|
5535
|
+
height: 1024px;
|
|
5536
|
+
}
|
|
5537
|
+
.is-content-view.mobile {
|
|
5538
|
+
width: 390px;
|
|
5539
|
+
height: 844px;
|
|
5540
|
+
}
|
|
5541
|
+
|
|
5542
|
+
@media all and (min-width: 2030px) {
|
|
5543
|
+
.is-content-view.desktop {
|
|
5544
|
+
width: 1560px;
|
|
5545
|
+
height: 974px;
|
|
5546
|
+
}
|
|
5547
|
+
|
|
5548
|
+
.is-content-view.tablet-landscape {
|
|
5549
|
+
width: 1280px;
|
|
5550
|
+
height: 960px;
|
|
5551
|
+
}
|
|
5552
|
+
}
|
|
5553
|
+
@media all and (max-width: 1520px) {
|
|
5554
|
+
.is-content-view {
|
|
5555
|
+
transform: scale(0.95);
|
|
5556
|
+
}
|
|
5557
|
+
}
|
|
5558
|
+
@media all and (max-width: 1450px) {
|
|
5559
|
+
.is-content-view {
|
|
5560
|
+
transform: scale(0.9);
|
|
5561
|
+
}
|
|
5562
|
+
}
|
|
5563
|
+
@media all and (max-width: 1375px) {
|
|
5564
|
+
.is-content-view {
|
|
5565
|
+
transform: scale(0.85);
|
|
5566
|
+
}
|
|
5567
|
+
}
|
|
5568
|
+
@media all and (max-width: 1300px) {
|
|
5569
|
+
.is-content-view {
|
|
5570
|
+
transform: scale(0.8);
|
|
5571
|
+
}
|
|
5572
|
+
}
|
|
5573
|
+
@media all and (max-width: 1235px) {
|
|
5574
|
+
.is-content-view {
|
|
5575
|
+
transform: scale(0.75);
|
|
5576
|
+
}
|
|
5577
|
+
}
|
|
5578
|
+
@media all and (max-width: 1175px) {
|
|
5579
|
+
.is-content-view {
|
|
5580
|
+
transform: scale(0.7);
|
|
5581
|
+
}
|
|
5582
|
+
}
|
|
5583
|
+
@media all and (max-width: 1090px) {
|
|
5584
|
+
.is-content-view {
|
|
5585
|
+
transform: scale(0.65);
|
|
5586
|
+
}
|
|
5587
|
+
}
|
|
@@ -76026,6 +76026,23 @@ class ContentStuff {
|
|
|
76026
76026
|
.padding-0[data-module="text-builder"] {
|
|
76027
76027
|
padding: 0 2px 4px !important;
|
|
76028
76028
|
}
|
|
76029
|
+
|
|
76030
|
+
|
|
76031
|
+
${this.builder.simpleEditingBreakpoint ? `
|
|
76032
|
+
|
|
76033
|
+
@media all and (max-width: ${this.builder.simpleEditingBreakpoint}) {
|
|
76034
|
+
.is-tool:not(#divSpacerTool) {
|
|
76035
|
+
display: none !important;
|
|
76036
|
+
}
|
|
76037
|
+
|
|
76038
|
+
.is-builder .row-active:not([data-protected]).row-outline {
|
|
76039
|
+
outline: none !important;
|
|
76040
|
+
}
|
|
76041
|
+
}
|
|
76042
|
+
|
|
76043
|
+
` : ''}
|
|
76044
|
+
|
|
76045
|
+
|
|
76029
76046
|
`;
|
|
76030
76047
|
builder.contentStuff.insertAdjacentHTML('afterbegin', `
|
|
76031
76048
|
<style>
|