@innovastudio/contentbuilder 1.0.35 → 1.0.36
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
|
@@ -788,6 +788,8 @@ button:focus {
|
|
|
788
788
|
margin: 0 !important;
|
|
789
789
|
line-height: 1.45 !important;
|
|
790
790
|
text-align: center;
|
|
791
|
+
transform: scale(0.7);
|
|
792
|
+
white-space: nowrap;
|
|
791
793
|
}
|
|
792
794
|
#_cbhtml .is-rte-pop.rte-textsetting-options > div,
|
|
793
795
|
.is-ui .is-rte-pop.rte-textsetting-options > div {
|
|
@@ -58761,6 +58761,7 @@ class ContentBuilder {
|
|
|
58761
58761
|
const util = this.util;
|
|
58762
58762
|
util.getUIStyles();
|
|
58763
58763
|
this.setUIColorRefresh();
|
|
58764
|
+
if (this.opts.onThemeChange) this.opts.onThemeChange();
|
|
58764
58765
|
});
|
|
58765
58766
|
document.head.appendChild(link);
|
|
58766
58767
|
} else {
|
|
@@ -58779,6 +58780,7 @@ class ContentBuilder {
|
|
|
58779
58780
|
const util = this.util;
|
|
58780
58781
|
util.getUIStyles();
|
|
58781
58782
|
this.setUIColorRefresh();
|
|
58783
|
+
if (this.opts.onThemeChange) this.opts.onThemeChange();
|
|
58782
58784
|
}
|
|
58783
58785
|
}
|
|
58784
58786
|
|