@innovastudio/contentbuilder 1.3.57 → 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
|
+
}
|
@@ -50606,7 +50606,14 @@ class ButtonEditor {
|
|
50606
50606
|
<a title="${util.out('Saved')}" href="" data-content="divMyButtons">${util.out('Saved')}</a>
|
50607
50607
|
<a title="${util.out('Templates')}" href="" data-content="divButtonTemplates">${util.out('Templates')}</a>
|
50608
50608
|
</div>
|
50609
|
-
<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;">
|
50610
50617
|
|
50611
50618
|
<div class="flex flex-row">
|
50612
50619
|
<div class="flex flex-col" style="margin-right: 40px;">
|
@@ -50656,7 +50663,7 @@ class ButtonEditor {
|
|
50656
50663
|
<div>
|
50657
50664
|
<label>${util.out('Padding X')}</label>:
|
50658
50665
|
</div>
|
50659
|
-
<div class="flex flex-row
|
50666
|
+
<div class="flex flex-row" style="margin-top:5px">
|
50660
50667
|
<button title="2" data-command="2" class="paddingx-command" style="margin-right:4px">2</button>
|
50661
50668
|
<button title="3" data-command="3" class="paddingx-command" style="margin-right:4px">3</button>
|
50662
50669
|
<button title="4" data-command="4" class="paddingx-command" style="margin-right:4px">4</button>
|
@@ -50672,7 +50679,7 @@ class ButtonEditor {
|
|
50672
50679
|
<div>
|
50673
50680
|
<label>${util.out('Padding Y')}</label>:
|
50674
50681
|
</div>
|
50675
|
-
<div class="flex flex-row
|
50682
|
+
<div class="flex flex-row" style="margin-top:5px">
|
50676
50683
|
<button title="0" data-command="0" class="paddingy-command" style="margin-right:4px">0</button>
|
50677
50684
|
<button title="1" data-command="1" class="paddingy-command" style="margin-right:4px">1</button>
|
50678
50685
|
<button title="2" data-command="2" class="paddingy-command" style="margin-right:4px">2</button>
|