@innovastudio/contentbuilder 1.3.56 → 1.3.58
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
@@ -2301,7 +2301,7 @@ button:focus-visible {
|
|
2301
2301
|
z-index: 10002;
|
2302
2302
|
position: fixed;
|
2303
2303
|
overflow: hidden;
|
2304
|
-
width:
|
2304
|
+
width: 525px;
|
2305
2305
|
height: 648px;
|
2306
2306
|
top: 50%;
|
2307
2307
|
left: auto;
|
@@ -5306,3 +5306,17 @@ button:focus-visible {
|
|
5306
5306
|
.row-lock .is-rowadd-tool {
|
5307
5307
|
display: none !important;
|
5308
5308
|
}
|
5309
|
+
|
5310
|
+
/* Adjustment */
|
5311
|
+
@media (max-height: 700px) {
|
5312
|
+
#_cbhtml .is-modal.buttoneditor {
|
5313
|
+
height: 500px;
|
5314
|
+
margin-top: -250px;
|
5315
|
+
}
|
5316
|
+
}
|
5317
|
+
@media (max-height: 600px) {
|
5318
|
+
#_cbhtml .is-modal.buttoneditor {
|
5319
|
+
height: 400px;
|
5320
|
+
margin-top: -200px;
|
5321
|
+
}
|
5322
|
+
}
|
@@ -49965,6 +49965,10 @@ class Image$1 {
|
|
49965
49965
|
} else {
|
49966
49966
|
preview.style.height = maxH + 'px';
|
49967
49967
|
}
|
49968
|
+
}
|
49969
|
+
|
49970
|
+
if (window.innerHeight <= 800) {
|
49971
|
+
preview.style.height = '350px';
|
49968
49972
|
} // imagePreview.src = img.src;
|
49969
49973
|
|
49970
49974
|
|
@@ -50602,7 +50606,14 @@ class ButtonEditor {
|
|
50602
50606
|
<a title="${util.out('Saved')}" href="" data-content="divMyButtons">${util.out('Saved')}</a>
|
50603
50607
|
<a title="${util.out('Templates')}" href="" data-content="divButtonTemplates">${util.out('Templates')}</a>
|
50604
50608
|
</div>
|
50605
|
-
<div id="divButtonGeneral" class="is-tab-content active" tabindex="-1" data-group="button" style="display:
|
50609
|
+
<div id="divButtonGeneral" class="is-tab-content active" tabindex="-1" data-group="button" style="display: flex;
|
50610
|
+
height: 100%;
|
50611
|
+
width:100%;
|
50612
|
+
overflow-y: auto;
|
50613
|
+
position: absolute;
|
50614
|
+
border-top: 82px solid transparent;
|
50615
|
+
box-sizing: border-box;
|
50616
|
+
top: 0px;">
|
50606
50617
|
|
50607
50618
|
<div class="flex flex-row">
|
50608
50619
|
<div class="flex flex-col" style="margin-right: 40px;">
|
@@ -50652,7 +50663,7 @@ class ButtonEditor {
|
|
50652
50663
|
<div>
|
50653
50664
|
<label>${util.out('Padding X')}</label>:
|
50654
50665
|
</div>
|
50655
|
-
<div class="flex flex-row
|
50666
|
+
<div class="flex flex-row" style="margin-top:5px">
|
50656
50667
|
<button title="2" data-command="2" class="paddingx-command" style="margin-right:4px">2</button>
|
50657
50668
|
<button title="3" data-command="3" class="paddingx-command" style="margin-right:4px">3</button>
|
50658
50669
|
<button title="4" data-command="4" class="paddingx-command" style="margin-right:4px">4</button>
|
@@ -50668,7 +50679,7 @@ class ButtonEditor {
|
|
50668
50679
|
<div>
|
50669
50680
|
<label>${util.out('Padding Y')}</label>:
|
50670
50681
|
</div>
|
50671
|
-
<div class="flex flex-row
|
50682
|
+
<div class="flex flex-row" style="margin-top:5px">
|
50672
50683
|
<button title="0" data-command="0" class="paddingy-command" style="margin-right:4px">0</button>
|
50673
50684
|
<button title="1" data-command="1" class="paddingy-command" style="margin-right:4px">1</button>
|
50674
50685
|
<button title="2" data-command="2" class="paddingy-command" style="margin-right:4px">2</button>
|