@innovastudio/contentbuilder 1.5.13 → 1.5.16
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 +1 -1
- package/public/contentbuilder/contentbuilder.css +43 -3
- package/public/contentbuilder/contentbuilder.esm.js +1233 -241
- package/public/contentbuilder/contentbuilder.js +89798 -0
- package/public/contentbuilder/contentbuilder.min.js +6 -6
- package/public/contentbuilder/lang/en.js +2 -1
- package/public/contentbuilder/lang/fr.js +2 -1
- package/readme.txt +6 -2
package/package.json
CHANGED
|
@@ -1419,7 +1419,7 @@ button:focus-visible {
|
|
|
1419
1419
|
height: 0;
|
|
1420
1420
|
}
|
|
1421
1421
|
to {
|
|
1422
|
-
height:
|
|
1422
|
+
height: 95px;
|
|
1423
1423
|
}
|
|
1424
1424
|
}
|
|
1425
1425
|
#_cbhtml .is-rte-pop.rte-zoom-options.deactive,
|
|
@@ -2598,7 +2598,7 @@ button:focus-visible {
|
|
|
2598
2598
|
overflow: hidden;
|
|
2599
2599
|
width: 300px;
|
|
2600
2600
|
height: auto;
|
|
2601
|
-
top: calc(50vh -
|
|
2601
|
+
top: calc(50vh - 275px);
|
|
2602
2602
|
left: auto;
|
|
2603
2603
|
right: 40px;
|
|
2604
2604
|
box-sizing: content-box;
|
|
@@ -2747,8 +2747,9 @@ button:focus-visible {
|
|
|
2747
2747
|
position: fixed;
|
|
2748
2748
|
overflow: hidden;
|
|
2749
2749
|
width: 228px;
|
|
2750
|
-
height:
|
|
2750
|
+
height: 85vh;
|
|
2751
2751
|
min-height: 560px;
|
|
2752
|
+
max-height: 968px;
|
|
2752
2753
|
top: calc(50% - 42.5vh);
|
|
2753
2754
|
left: auto;
|
|
2754
2755
|
right: 40px;
|
|
@@ -5245,6 +5246,16 @@ button:focus-visible {
|
|
|
5245
5246
|
bottom: 5px;
|
|
5246
5247
|
}
|
|
5247
5248
|
|
|
5249
|
+
.is-page:not(.page-web):not(.page-web-container) .is-canvasadd-tool {
|
|
5250
|
+
background-color: #ffffffa3;
|
|
5251
|
+
box-shadow: 2px 3px 9px #62626212;
|
|
5252
|
+
}
|
|
5253
|
+
|
|
5254
|
+
.is-page:not(.page-web) .is-canvas-tool {
|
|
5255
|
+
background-color: #ffffffa3;
|
|
5256
|
+
box-shadow: 2px 3px 9px #62626212;
|
|
5257
|
+
}
|
|
5258
|
+
|
|
5248
5259
|
.is-builder[gray] .is-tool.is-row-tool {
|
|
5249
5260
|
background: rgba(243, 243, 243, 0.9);
|
|
5250
5261
|
}
|
|
@@ -6328,3 +6339,32 @@ div[data-html] {
|
|
|
6328
6339
|
i.bi, i.icon {
|
|
6329
6340
|
display: inline-flex;
|
|
6330
6341
|
}
|
|
6342
|
+
|
|
6343
|
+
/* block tool */
|
|
6344
|
+
/*
|
|
6345
|
+
.is-block-tool {
|
|
6346
|
+
border-radius: 3px;
|
|
6347
|
+
overflow: hidden;
|
|
6348
|
+
top: 3px;
|
|
6349
|
+
right: 3px;
|
|
6350
|
+
left: auto;
|
|
6351
|
+
width: 25px;
|
|
6352
|
+
|
|
6353
|
+
button {
|
|
6354
|
+
width: 25px;
|
|
6355
|
+
height: 25px;
|
|
6356
|
+
background: transparent;
|
|
6357
|
+
display: flex;
|
|
6358
|
+
align-items: center;
|
|
6359
|
+
justify-content: center;
|
|
6360
|
+
}
|
|
6361
|
+
svg {
|
|
6362
|
+
width: 14px;
|
|
6363
|
+
height: 14px;
|
|
6364
|
+
fill: #000;
|
|
6365
|
+
}
|
|
6366
|
+
}
|
|
6367
|
+
.is-block.active:not(.multi):not(.editable) .is-block-tool {
|
|
6368
|
+
display: flex;
|
|
6369
|
+
}
|
|
6370
|
+
*/
|