@innovastudio/contentbuilder 1.2.4-rc1 → 1.2.4-rc2
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 +96 -5
- package/public/contentbuilder/contentbuilder.esm.js +1936 -1401
- package/public/contentbuilder/contentbuilder.min.js +8 -8
- package/public/contentbuilder/plugins/buttoneditor/plugin.js +1 -1
- package/public/contentbuilder/plugins/preview/plugin.js +1 -1
- package/public/contentbuilder/plugins/searchreplace/plugin.js +1 -1
- package/public/contentbuilder/plugins/symbols/plugin.js +1 -1
- package/public/contentbuilder/plugins/wordcount/plugin.js +1 -1
- package/public/contentbuilder/themes/colored-blue.css +23 -6
- package/public/contentbuilder/themes/colored-blue2.css +23 -6
- package/public/contentbuilder/themes/colored-blue3.css +23 -6
- package/public/contentbuilder/themes/colored-blue4.css +23 -6
- package/public/contentbuilder/themes/colored-blue5.css +23 -6
- package/public/contentbuilder/themes/colored-blue6.css +23 -6
- package/public/contentbuilder/themes/colored-blue7.css +23 -6
- package/public/contentbuilder/themes/colored-blue8.css +23 -6
- package/public/contentbuilder/themes/colored-dark.css +23 -6
- package/public/contentbuilder/themes/colored-darkblue.css +23 -6
- package/public/contentbuilder/themes/colored-gray.css +23 -6
- package/public/contentbuilder/themes/colored-green.css +23 -6
- package/public/contentbuilder/themes/colored-green2.css +23 -6
- package/public/contentbuilder/themes/colored-green3.css +23 -6
- package/public/contentbuilder/themes/colored-green4.css +23 -6
- package/public/contentbuilder/themes/colored-green5.css +23 -6
- package/public/contentbuilder/themes/colored-magenta.css +23 -6
- package/public/contentbuilder/themes/colored-orange.css +23 -6
- package/public/contentbuilder/themes/colored-orange2.css +23 -6
- package/public/contentbuilder/themes/colored-orange3.css +23 -6
- package/public/contentbuilder/themes/colored-pink.css +23 -6
- package/public/contentbuilder/themes/colored-pink2.css +23 -6
- package/public/contentbuilder/themes/colored-pink3.css +23 -6
- package/public/contentbuilder/themes/colored-pink4.css +23 -6
- package/public/contentbuilder/themes/colored-purple.css +23 -6
- package/public/contentbuilder/themes/colored-purple2.css +23 -6
- package/public/contentbuilder/themes/colored-red.css +23 -6
- package/public/contentbuilder/themes/colored-red2.css +23 -6
- package/public/contentbuilder/themes/colored-red3.css +23 -6
- package/public/contentbuilder/themes/colored-red4.css +23 -6
- package/public/contentbuilder/themes/colored-red5.css +23 -6
- package/public/contentbuilder/themes/colored-yellow.css +23 -6
- package/public/contentbuilder/themes/colored-yellow2.css +23 -6
- package/public/contentbuilder/themes/dark-blue.css +23 -6
- package/public/contentbuilder/themes/dark-blue2.css +23 -6
- package/public/contentbuilder/themes/dark-blue3.css +23 -6
- package/public/contentbuilder/themes/dark-gray.css +23 -6
- package/public/contentbuilder/themes/dark-pink.css +23 -6
- package/public/contentbuilder/themes/dark-purple.css +23 -6
- package/public/contentbuilder/themes/dark-red.css +23 -6
- package/public/contentbuilder/themes/dark.css +23 -6
- package/public/contentbuilder/themes/light-blue.css +23 -6
- package/public/contentbuilder/themes/light-blue2.css +23 -6
- package/public/contentbuilder/themes/light-blue3.css +23 -6
- package/public/contentbuilder/themes/light-cyan.css +23 -6
- package/public/contentbuilder/themes/light-gray.css +23 -6
- package/public/contentbuilder/themes/light-gray2.css +23 -6
- package/public/contentbuilder/themes/light-gray3.css +23 -6
- package/public/contentbuilder/themes/light-green.css +23 -6
- package/public/contentbuilder/themes/light-pink.css +23 -6
- package/public/contentbuilder/themes/light-pink2.css +23 -6
- package/public/contentbuilder/themes/light-purple.css +23 -6
- package/public/contentbuilder/themes/light-purple2.css +23 -6
- package/public/contentbuilder/themes/light-red.css +23 -6
- package/public/contentbuilder/themes/light-yellow.css +23 -6
- package/public/contentbuilder/themes/light-yellow2.css +23 -6
package/package.json
CHANGED
|
@@ -195,6 +195,13 @@ button:focus {
|
|
|
195
195
|
|
|
196
196
|
#_cbhtml,
|
|
197
197
|
.is-ui {
|
|
198
|
+
/*
|
|
199
|
+
* {
|
|
200
|
+
font-family:sans-serif;
|
|
201
|
+
line-height: inherit;
|
|
202
|
+
// Prevent overide
|
|
203
|
+
}
|
|
204
|
+
*/
|
|
198
205
|
font-family: sans-serif;
|
|
199
206
|
font-size: 13px;
|
|
200
207
|
letter-spacing: 1px;
|
|
@@ -825,7 +832,7 @@ button:focus {
|
|
|
825
832
|
#_cbhtml .is-rte-pop.active,
|
|
826
833
|
.is-ui .is-rte-pop.active {
|
|
827
834
|
animation-name: formatting-slide-out;
|
|
828
|
-
animation-duration:
|
|
835
|
+
animation-duration: 100ms;
|
|
829
836
|
animation-fill-mode: forwards;
|
|
830
837
|
}
|
|
831
838
|
@keyframes formatting-slide-out {
|
|
@@ -839,7 +846,7 @@ button:focus {
|
|
|
839
846
|
#_cbhtml .is-rte-pop.deactive,
|
|
840
847
|
.is-ui .is-rte-pop.deactive {
|
|
841
848
|
animation-name: formatting-slide-in;
|
|
842
|
-
animation-duration:
|
|
849
|
+
animation-duration: 100ms;
|
|
843
850
|
animation-fill-mode: forwards;
|
|
844
851
|
}
|
|
845
852
|
@keyframes formatting-slide-in {
|
|
@@ -931,8 +938,9 @@ button:focus {
|
|
|
931
938
|
}
|
|
932
939
|
#_cbhtml .is-rte-pop.rte-textsetting-options button,
|
|
933
940
|
.is-ui .is-rte-pop.rte-textsetting-options button {
|
|
934
|
-
width:
|
|
935
|
-
height:
|
|
941
|
+
width: 38px;
|
|
942
|
+
height: 28.2px;
|
|
943
|
+
margin: 1px;
|
|
936
944
|
box-shadow: none;
|
|
937
945
|
background: transparent;
|
|
938
946
|
}
|
|
@@ -944,6 +952,10 @@ button:focus {
|
|
|
944
952
|
.is-ui .is-rte-pop.rte-textsetting-options button:hover {
|
|
945
953
|
background: whitesmoke;
|
|
946
954
|
}
|
|
955
|
+
#_cbhtml .is-rte-pop.rte-textsetting-options button:focus,
|
|
956
|
+
.is-ui .is-rte-pop.rte-textsetting-options button:focus {
|
|
957
|
+
background: whitesmoke;
|
|
958
|
+
}
|
|
947
959
|
#_cbhtml .is-rte-pop.rte-textsetting-options.active,
|
|
948
960
|
.is-ui .is-rte-pop.rte-textsetting-options.active {
|
|
949
961
|
animation-name: textsetting-slide-out;
|
|
@@ -1024,6 +1036,16 @@ button:focus {
|
|
|
1024
1036
|
.is-ui .is-rte-pop.rte-color-picker button:hover {
|
|
1025
1037
|
background: transparent;
|
|
1026
1038
|
}
|
|
1039
|
+
#_cbhtml .is-rte-pop.rte-color-picker button:focus,
|
|
1040
|
+
.is-ui .is-rte-pop.rte-color-picker button:focus {
|
|
1041
|
+
outline: #3e93f7 2px solid;
|
|
1042
|
+
}
|
|
1043
|
+
#_cbhtml .is-rte-pop.rte-color-picker .color-default button,
|
|
1044
|
+
#_cbhtml .is-rte-pop.rte-color-picker .color-gradient button,
|
|
1045
|
+
.is-ui .is-rte-pop.rte-color-picker .color-default button,
|
|
1046
|
+
.is-ui .is-rte-pop.rte-color-picker .color-gradient button {
|
|
1047
|
+
outline: none;
|
|
1048
|
+
}
|
|
1027
1049
|
#_cbhtml .is-rte-pop.rte-color-picker.active,
|
|
1028
1050
|
.is-ui .is-rte-pop.rte-color-picker.active {
|
|
1029
1051
|
animation-name: colorpicker-slide-out;
|
|
@@ -1170,6 +1192,10 @@ button:focus {
|
|
|
1170
1192
|
.is-ui .is-rte-pop.rte-customtag-options > div button:hover {
|
|
1171
1193
|
background: whitesmoke;
|
|
1172
1194
|
}
|
|
1195
|
+
#_cbhtml .is-rte-pop.rte-customtag-options > div button:focus,
|
|
1196
|
+
.is-ui .is-rte-pop.rte-customtag-options > div button:focus {
|
|
1197
|
+
background: whitesmoke;
|
|
1198
|
+
}
|
|
1173
1199
|
#_cbhtml .is-rte-pop.rte-zoom-options > div,
|
|
1174
1200
|
.is-ui .is-rte-pop.rte-zoom-options > div {
|
|
1175
1201
|
width: 224px;
|
|
@@ -2984,6 +3010,25 @@ button:focus {
|
|
|
2984
3010
|
background: transparent;
|
|
2985
3011
|
border: transparent 1px solid;
|
|
2986
3012
|
}
|
|
3013
|
+
#_cbhtml textarea:not(.monaco-mouse-cursor-text),
|
|
3014
|
+
.is-ui textarea:not(.monaco-mouse-cursor-text) {
|
|
3015
|
+
font-family: courier;
|
|
3016
|
+
font-size: 15px;
|
|
3017
|
+
line-height: 2;
|
|
3018
|
+
letter-spacing: 1px;
|
|
3019
|
+
margin: 0;
|
|
3020
|
+
padding: 8px 16px;
|
|
3021
|
+
box-sizing: border-box;
|
|
3022
|
+
border: 1px solid rgba(0, 0, 0, 0.06);
|
|
3023
|
+
background-color: #fafafa;
|
|
3024
|
+
color: #121212;
|
|
3025
|
+
border-radius: 1px;
|
|
3026
|
+
}
|
|
3027
|
+
#_cbhtml textarea:not(.monaco-mouse-cursor-text):focus,
|
|
3028
|
+
.is-ui textarea:not(.monaco-mouse-cursor-text):focus {
|
|
3029
|
+
outline: #3e93f7 2px solid;
|
|
3030
|
+
box-shadow: none;
|
|
3031
|
+
}
|
|
2987
3032
|
#_cbhtml select,
|
|
2988
3033
|
.is-ui select {
|
|
2989
3034
|
font-size: 13px;
|
|
@@ -3713,6 +3758,21 @@ button:focus {
|
|
|
3713
3758
|
width: 100%;
|
|
3714
3759
|
z-index: 1;
|
|
3715
3760
|
}
|
|
3761
|
+
#_cbhtml .pickgradientcolor .div-gradients button,
|
|
3762
|
+
.is-ui .pickgradientcolor .div-gradients button {
|
|
3763
|
+
width: 35px;
|
|
3764
|
+
height: 35px;
|
|
3765
|
+
margin: 0;
|
|
3766
|
+
padding: 0;
|
|
3767
|
+
border: none;
|
|
3768
|
+
transition: none;
|
|
3769
|
+
outline: none;
|
|
3770
|
+
border-radius: 0px;
|
|
3771
|
+
}
|
|
3772
|
+
#_cbhtml .pickgradientcolor .div-gradients button:focus,
|
|
3773
|
+
.is-ui .pickgradientcolor .div-gradients button:focus {
|
|
3774
|
+
border: white 2px solid;
|
|
3775
|
+
}
|
|
3716
3776
|
#_cbhtml .color-swatch,
|
|
3717
3777
|
.is-ui .color-swatch {
|
|
3718
3778
|
width: 100%;
|
|
@@ -3735,6 +3795,19 @@ button:focus {
|
|
|
3735
3795
|
cursor: pointer;
|
|
3736
3796
|
transition: all ease 0.3s;
|
|
3737
3797
|
}
|
|
3798
|
+
#_cbhtml .color-swatch [data-color],
|
|
3799
|
+
.is-ui .color-swatch [data-color] {
|
|
3800
|
+
width: 35px;
|
|
3801
|
+
height: 31.5px;
|
|
3802
|
+
margin: 0;
|
|
3803
|
+
transition: none;
|
|
3804
|
+
outline: none;
|
|
3805
|
+
border-radius: 0px;
|
|
3806
|
+
}
|
|
3807
|
+
#_cbhtml .color-swatch [data-color]:focus,
|
|
3808
|
+
.is-ui .color-swatch [data-color]:focus {
|
|
3809
|
+
border: rgba(255, 255, 255, 0.7) 2px solid;
|
|
3810
|
+
}
|
|
3738
3811
|
#_cbhtml .color-gradient,
|
|
3739
3812
|
.is-ui .color-gradient {
|
|
3740
3813
|
width: 100%;
|
|
@@ -3757,6 +3830,18 @@ button:focus {
|
|
|
3757
3830
|
cursor: pointer;
|
|
3758
3831
|
transition: all ease 0.3s;
|
|
3759
3832
|
}
|
|
3833
|
+
#_cbhtml .color-gradient [data-color],
|
|
3834
|
+
.is-ui .color-gradient [data-color] {
|
|
3835
|
+
width: 35px;
|
|
3836
|
+
height: 31.5px;
|
|
3837
|
+
margin: 0;
|
|
3838
|
+
transition: none;
|
|
3839
|
+
outline: none;
|
|
3840
|
+
}
|
|
3841
|
+
#_cbhtml .color-gradient [data-color]:focus,
|
|
3842
|
+
.is-ui .color-gradient [data-color]:focus {
|
|
3843
|
+
border: rgba(255, 255, 255, 0.7) 2px solid;
|
|
3844
|
+
}
|
|
3760
3845
|
#_cbhtml .pickcolor button,
|
|
3761
3846
|
.is-ui .pickcolor button {
|
|
3762
3847
|
float: left;
|
|
@@ -3772,6 +3857,12 @@ button:focus {
|
|
|
3772
3857
|
height: 35px;
|
|
3773
3858
|
border: transparent 1px solid;
|
|
3774
3859
|
margin: 0px;
|
|
3860
|
+
transition: none;
|
|
3861
|
+
outline: none;
|
|
3862
|
+
}
|
|
3863
|
+
#_cbhtml .pickcolor .color-default button:focus,
|
|
3864
|
+
.is-ui .pickcolor .color-default button:focus {
|
|
3865
|
+
border: rgba(255, 255, 255, 0.7) 2px solid;
|
|
3775
3866
|
}
|
|
3776
3867
|
#_cbhtml .pickcolor button.clear,
|
|
3777
3868
|
.is-ui .pickcolor button.clear {
|
|
@@ -4719,6 +4810,7 @@ button:focus {
|
|
|
4719
4810
|
opacity: 0;
|
|
4720
4811
|
transform: scale(0.7) translateZ(150px);
|
|
4721
4812
|
transition: all 450ms ease-in-out;
|
|
4813
|
+
outline: none;
|
|
4722
4814
|
}
|
|
4723
4815
|
.is-ui .is-lightbox.light {
|
|
4724
4816
|
background-color: rgba(255, 255, 255, 0.97);
|
|
@@ -4774,7 +4866,6 @@ button:focus {
|
|
|
4774
4866
|
background: none;
|
|
4775
4867
|
border: none;
|
|
4776
4868
|
cursor: pointer;
|
|
4777
|
-
outline: none;
|
|
4778
4869
|
box-shadow: none;
|
|
4779
4870
|
}
|
|
4780
4871
|
.is-ui .is-lightbox .cmd-lightbox-close svg {
|