@innovastudio/contentbuilder 1.2.4-rc10 → 1.2.4-rc11
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 +52 -13
- package/public/contentbuilder/contentbuilder.esm.js +1743 -1491
- package/public/contentbuilder/contentbuilder.min.js +4 -4
- package/public/contentbuilder/lang/en.js +25 -1
- package/public/contentbuilder/lang/fr.js +25 -1
package/package.json
CHANGED
|
@@ -1773,16 +1773,16 @@ button:focus {
|
|
|
1773
1773
|
#_cbhtml .is-modal button,
|
|
1774
1774
|
.is-ui .is-modal button {
|
|
1775
1775
|
color: #000;
|
|
1776
|
-
background:
|
|
1776
|
+
background: #fff;
|
|
1777
1777
|
box-shadow: 0px 3px 6px -6px rgba(0, 0, 0, 0.32);
|
|
1778
1778
|
}
|
|
1779
1779
|
#_cbhtml .is-modal button:hover,
|
|
1780
1780
|
.is-ui .is-modal button:hover {
|
|
1781
|
-
background:
|
|
1781
|
+
background: #fff;
|
|
1782
1782
|
}
|
|
1783
1783
|
#_cbhtml .is-modal button.on,
|
|
1784
1784
|
.is-ui .is-modal button.on {
|
|
1785
|
-
background:
|
|
1785
|
+
background: #f2f2f2;
|
|
1786
1786
|
}
|
|
1787
1787
|
#_cbhtml .is-modal button.is-btn-color,
|
|
1788
1788
|
.is-ui .is-modal button.is-btn-color {
|
|
@@ -2046,6 +2046,7 @@ button:focus {
|
|
|
2046
2046
|
margin: 1px;
|
|
2047
2047
|
background-color: transparent !important;
|
|
2048
2048
|
box-shadow: none !important;
|
|
2049
|
+
outline-offset: -2px;
|
|
2049
2050
|
}
|
|
2050
2051
|
#_cbhtml .is-modal.grideditor button.on,
|
|
2051
2052
|
.is-ui .is-modal.grideditor button.on {
|
|
@@ -2100,6 +2101,7 @@ button:focus {
|
|
|
2100
2101
|
padding: 1px 20px;
|
|
2101
2102
|
box-sizing: border-box;
|
|
2102
2103
|
border: none;
|
|
2104
|
+
outline-offset: -2px;
|
|
2103
2105
|
}
|
|
2104
2106
|
#_cbhtml .is-modal.pickgradientcolor .is-settings button.is-btn-color,
|
|
2105
2107
|
.is-ui .is-modal.pickgradientcolor .is-settings button.is-btn-color {
|
|
@@ -2180,6 +2182,7 @@ button:focus {
|
|
|
2180
2182
|
#_cbhtml .is-modal.edittable button,
|
|
2181
2183
|
.is-ui .is-modal.edittable button {
|
|
2182
2184
|
height: 35px;
|
|
2185
|
+
outline-offset: -2px;
|
|
2183
2186
|
}
|
|
2184
2187
|
#_cbhtml .is-modal.edittable button.is-btn-color,
|
|
2185
2188
|
.is-ui .is-modal.edittable button.is-btn-color {
|
|
@@ -2189,21 +2192,48 @@ button:focus {
|
|
|
2189
2192
|
background: rgba(255, 255, 255, 0.2);
|
|
2190
2193
|
border: rgba(0, 0, 0, 0.09) 1px solid;
|
|
2191
2194
|
}
|
|
2195
|
+
#_cbhtml .is-modal.shortcuts div.is-modal-content,
|
|
2196
|
+
.is-ui .is-modal.shortcuts div.is-modal-content {
|
|
2197
|
+
max-width: 600px;
|
|
2198
|
+
padding: 5px 25px 25px 25px;
|
|
2199
|
+
}
|
|
2200
|
+
#_cbhtml .is-modal.shortcuts table,
|
|
2201
|
+
.is-ui .is-modal.shortcuts table {
|
|
2202
|
+
width: 100%;
|
|
2203
|
+
margin: 30px 7px 0;
|
|
2204
|
+
}
|
|
2205
|
+
#_cbhtml .is-modal.shortcuts td,
|
|
2206
|
+
.is-ui .is-modal.shortcuts td {
|
|
2207
|
+
font-family: sans-serif;
|
|
2208
|
+
font-size: 15px;
|
|
2209
|
+
font-weight: 300;
|
|
2210
|
+
padding: 7px 2px;
|
|
2211
|
+
line-height: 1.2;
|
|
2212
|
+
}
|
|
2213
|
+
#_cbhtml .is-modal.shortcuts td.shortcut-title,
|
|
2214
|
+
.is-ui .is-modal.shortcuts td.shortcut-title {
|
|
2215
|
+
font-weight: 500;
|
|
2216
|
+
padding-top: 20px;
|
|
2217
|
+
}
|
|
2192
2218
|
#_cbhtml .is-modal.buttoneditor,
|
|
2193
2219
|
.is-ui .is-modal.buttoneditor {
|
|
2194
2220
|
z-index: 10002;
|
|
2195
2221
|
position: fixed;
|
|
2196
2222
|
overflow: hidden;
|
|
2197
2223
|
width: 520px;
|
|
2198
|
-
height:
|
|
2224
|
+
height: 582px;
|
|
2199
2225
|
top: 50%;
|
|
2200
2226
|
left: auto;
|
|
2201
2227
|
right: 30%;
|
|
2202
|
-
margin-top: -
|
|
2228
|
+
margin-top: -292px;
|
|
2203
2229
|
box-sizing: content-box;
|
|
2204
2230
|
flex-direction: row;
|
|
2205
2231
|
align-items: flex-start;
|
|
2206
2232
|
}
|
|
2233
|
+
#_cbhtml .is-modal.buttoneditor .is-modal-overlay,
|
|
2234
|
+
.is-ui .is-modal.buttoneditor .is-modal-overlay {
|
|
2235
|
+
display: none !important;
|
|
2236
|
+
}
|
|
2207
2237
|
#_cbhtml .is-modal.buttoneditor .is-modal-bar,
|
|
2208
2238
|
.is-ui .is-modal.buttoneditor .is-modal-bar {
|
|
2209
2239
|
line-height: 30px;
|
|
@@ -2230,6 +2260,7 @@ button:focus {
|
|
|
2230
2260
|
.is-ui .is-modal.buttoneditor button {
|
|
2231
2261
|
padding: 0 10px;
|
|
2232
2262
|
height: 35px;
|
|
2263
|
+
outline-offset: -2px;
|
|
2233
2264
|
}
|
|
2234
2265
|
#_cbhtml .is-modal.buttoneditor .is-button-remove,
|
|
2235
2266
|
.is-ui .is-modal.buttoneditor .is-button-remove {
|
|
@@ -2277,25 +2308,32 @@ button:focus {
|
|
|
2277
2308
|
.is-ui .is-modal.buttoneditor #divMyButtonList a:hover .is-button-remove {
|
|
2278
2309
|
display: flex;
|
|
2279
2310
|
}
|
|
2280
|
-
#_cbhtml .is-modal.buttoneditor #
|
|
2281
|
-
.is-ui .is-modal.buttoneditor #
|
|
2282
|
-
padding:
|
|
2311
|
+
#_cbhtml .is-modal.buttoneditor #divButtonTemplates,
|
|
2312
|
+
.is-ui .is-modal.buttoneditor #divButtonTemplates {
|
|
2313
|
+
padding: 0;
|
|
2314
|
+
overflow: hidden;
|
|
2315
|
+
overflow-y: auto;
|
|
2283
2316
|
height: 100%;
|
|
2284
2317
|
width: 100%;
|
|
2285
2318
|
position: absolute;
|
|
2286
2319
|
top: 0;
|
|
2320
|
+
border-top: 80px transparent solid;
|
|
2321
|
+
box-sizing: border-box;
|
|
2322
|
+
}
|
|
2323
|
+
#_cbhtml .is-modal.buttoneditor #divButtonTemplateList,
|
|
2324
|
+
.is-ui .is-modal.buttoneditor #divButtonTemplateList {
|
|
2325
|
+
padding: 10px 20px 0px;
|
|
2326
|
+
width: 100%;
|
|
2327
|
+
top: 0;
|
|
2287
2328
|
left: 0;
|
|
2288
|
-
border-top: transparent 100px solid;
|
|
2289
2329
|
box-sizing: border-box;
|
|
2290
|
-
overflow: hidden;
|
|
2291
|
-
overflow-y: auto;
|
|
2292
|
-
overflow-y: auto;
|
|
2293
2330
|
}
|
|
2294
2331
|
#_cbhtml .is-modal.buttoneditor #divButtonTemplateList a,
|
|
2295
2332
|
.is-ui .is-modal.buttoneditor #divButtonTemplateList a {
|
|
2296
2333
|
position: relative;
|
|
2297
|
-
margin: 10px
|
|
2334
|
+
margin: 10px 15px 10px 0;
|
|
2298
2335
|
outline-offset: 2px;
|
|
2336
|
+
transform: scale(0.9);
|
|
2299
2337
|
}
|
|
2300
2338
|
#_cbhtml .is-modal.columnsettings .is-modal-bar,
|
|
2301
2339
|
.is-ui .is-modal.columnsettings .is-modal-bar {
|
|
@@ -2326,6 +2364,7 @@ button:focus {
|
|
|
2326
2364
|
padding: 1px 20px;
|
|
2327
2365
|
box-sizing: border-box;
|
|
2328
2366
|
border: none;
|
|
2367
|
+
outline-offset: -2px;
|
|
2329
2368
|
}
|
|
2330
2369
|
#_cbhtml .is-modal.columnsettings button.is-btn-color,
|
|
2331
2370
|
.is-ui .is-modal.columnsettings button.is-btn-color {
|