@innovastudio/contentbuilder 1.3.31 → 1.3.32
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 +17 -2
- package/public/contentbuilder/contentbuilder.esm.js +57 -6
- package/public/contentbuilder/contentbuilder.min.js +2 -2
- package/public/contentbuilder/themes/colored-blue.css +14 -0
- package/public/contentbuilder/themes/colored-blue2.css +14 -0
- package/public/contentbuilder/themes/colored-blue3.css +14 -0
- package/public/contentbuilder/themes/colored-blue4.css +14 -0
- package/public/contentbuilder/themes/colored-blue5.css +14 -0
- package/public/contentbuilder/themes/colored-blue6.css +14 -0
- package/public/contentbuilder/themes/colored-blue7.css +14 -0
- package/public/contentbuilder/themes/colored-blue8.css +14 -0
- package/public/contentbuilder/themes/colored-darkblue.css +14 -0
- package/public/contentbuilder/themes/colored-gray.css +14 -0
- package/public/contentbuilder/themes/colored-green.css +14 -0
- package/public/contentbuilder/themes/colored-green2.css +14 -0
- package/public/contentbuilder/themes/colored-green3.css +14 -0
- package/public/contentbuilder/themes/colored-green4.css +14 -0
- package/public/contentbuilder/themes/colored-green5.css +14 -0
- package/public/contentbuilder/themes/colored-magenta.css +14 -0
- package/public/contentbuilder/themes/colored-orange.css +14 -0
- package/public/contentbuilder/themes/colored-orange2.css +14 -0
- package/public/contentbuilder/themes/colored-orange3.css +14 -0
- package/public/contentbuilder/themes/colored-pink.css +14 -0
- package/public/contentbuilder/themes/colored-pink2.css +14 -0
- package/public/contentbuilder/themes/colored-pink3.css +14 -0
- package/public/contentbuilder/themes/colored-pink4.css +14 -0
- package/public/contentbuilder/themes/colored-purple.css +14 -0
- package/public/contentbuilder/themes/colored-purple2.css +14 -0
- package/public/contentbuilder/themes/colored-red.css +14 -0
- package/public/contentbuilder/themes/colored-red2.css +14 -0
- package/public/contentbuilder/themes/colored-red3.css +14 -0
- package/public/contentbuilder/themes/colored-red4.css +14 -0
- package/public/contentbuilder/themes/colored-red5.css +14 -0
- package/public/contentbuilder/themes/colored-yellow.css +14 -0
- package/public/contentbuilder/themes/colored-yellow2.css +14 -0
- package/public/contentbuilder/themes/dark-blue.css +14 -0
- package/public/contentbuilder/themes/dark-blue2.css +14 -0
- package/public/contentbuilder/themes/dark-blue3.css +14 -0
- package/public/contentbuilder/themes/dark-gray.css +14 -0
- package/public/contentbuilder/themes/dark-pink.css +14 -0
- package/public/contentbuilder/themes/dark-purple.css +14 -0
- package/public/contentbuilder/themes/dark-red.css +14 -0
- package/public/contentbuilder/themes/dark.css +14 -0
- package/public/contentbuilder/themes/light-blue.css +14 -0
- package/public/contentbuilder/themes/light-blue2.css +14 -0
- package/public/contentbuilder/themes/light-blue3.css +14 -0
- package/public/contentbuilder/themes/light-cyan.css +14 -0
- package/public/contentbuilder/themes/light-gray.css +14 -0
- package/public/contentbuilder/themes/light-gray2.css +14 -0
- package/public/contentbuilder/themes/light-gray3.css +14 -0
- package/public/contentbuilder/themes/light-green.css +14 -0
- package/public/contentbuilder/themes/light-pink.css +14 -0
- package/public/contentbuilder/themes/light-pink2.css +14 -0
- package/public/contentbuilder/themes/light-purple.css +14 -0
- package/public/contentbuilder/themes/light-purple2.css +14 -0
- package/public/contentbuilder/themes/light-red.css +14 -0
- package/public/contentbuilder/themes/light-yellow.css +14 -0
- package/public/contentbuilder/themes/light-yellow2.css +14 -0
|
@@ -782,6 +782,20 @@
|
|
|
782
782
|
box-shadow: rgba(249, 147, 15, 0.05) 0 0 16px 0px;
|
|
783
783
|
background: #f7dfc0;
|
|
784
784
|
}
|
|
785
|
+
.colored #_cbhtml .is-side button,
|
|
786
|
+
.colored .is-ui .is-side button {
|
|
787
|
+
color: #000;
|
|
788
|
+
background: rgba(255, 255, 255, 0.3);
|
|
789
|
+
box-shadow: 0px 3px 6px -6px rgba(0, 0, 0, 0.32);
|
|
790
|
+
}
|
|
791
|
+
.colored #_cbhtml .is-side button:hover,
|
|
792
|
+
.colored .is-ui .is-side button:hover {
|
|
793
|
+
background: rgba(255, 255, 255, 0.3);
|
|
794
|
+
}
|
|
795
|
+
.colored #_cbhtml .is-side button.on,
|
|
796
|
+
.colored .is-ui .is-side button.on {
|
|
797
|
+
background: rgba(248, 228, 201, 0.3);
|
|
798
|
+
}
|
|
785
799
|
.colored #_cbhtml .is-side svg,
|
|
786
800
|
.colored .is-ui .is-side svg {
|
|
787
801
|
fill: #000;
|
|
@@ -790,6 +790,20 @@
|
|
|
790
790
|
box-shadow: rgba(63, 78, 201, 0.05) 0 0 16px 0px;
|
|
791
791
|
background: #4251bd;
|
|
792
792
|
}
|
|
793
|
+
.dark #_cbhtml .is-side button,
|
|
794
|
+
.dark .is-ui .is-side button {
|
|
795
|
+
color: #fafafa;
|
|
796
|
+
background: rgba(142, 151, 215, 0.49);
|
|
797
|
+
box-shadow: 0px 3px 6px -6px rgba(0, 0, 0, 0.32);
|
|
798
|
+
}
|
|
799
|
+
.dark #_cbhtml .is-side button:hover,
|
|
800
|
+
.dark .is-ui .is-side button:hover {
|
|
801
|
+
background: rgba(145, 154, 217, 0.49);
|
|
802
|
+
}
|
|
803
|
+
.dark #_cbhtml .is-side button.on,
|
|
804
|
+
.dark .is-ui .is-side button.on {
|
|
805
|
+
background: rgba(104, 116, 202, 0.49);
|
|
806
|
+
}
|
|
793
807
|
.dark #_cbhtml .is-side svg,
|
|
794
808
|
.dark .is-ui .is-side svg {
|
|
795
809
|
fill: #fafafa;
|
|
@@ -790,6 +790,20 @@
|
|
|
790
790
|
box-shadow: rgba(11, 77, 146, 0.05) 0 0 16px 0px;
|
|
791
791
|
background: #0a4889;
|
|
792
792
|
}
|
|
793
|
+
.dark #_cbhtml .is-side button,
|
|
794
|
+
.dark .is-ui .is-side button {
|
|
795
|
+
color: #fafafa;
|
|
796
|
+
background: rgba(17, 122, 232, 0.49);
|
|
797
|
+
box-shadow: 0px 3px 6px -6px rgba(0, 0, 0, 0.32);
|
|
798
|
+
}
|
|
799
|
+
.dark #_cbhtml .is-side button:hover,
|
|
800
|
+
.dark .is-ui .is-side button:hover {
|
|
801
|
+
background: rgba(17, 124, 237, 0.49);
|
|
802
|
+
}
|
|
803
|
+
.dark #_cbhtml .is-side button.on,
|
|
804
|
+
.dark .is-ui .is-side button.on {
|
|
805
|
+
background: rgba(13, 97, 185, 0.49);
|
|
806
|
+
}
|
|
793
807
|
.dark #_cbhtml .is-side svg,
|
|
794
808
|
.dark .is-ui .is-side svg {
|
|
795
809
|
fill: #fafafa;
|
|
@@ -790,6 +790,20 @@
|
|
|
790
790
|
box-shadow: rgba(0, 106, 221, 0.05) 0 0 16px 0px;
|
|
791
791
|
background: #474c50;
|
|
792
792
|
}
|
|
793
|
+
.dark #_cbhtml .is-side button,
|
|
794
|
+
.dark .is-ui .is-side button {
|
|
795
|
+
color: #fafafa;
|
|
796
|
+
background: rgba(119, 127, 134, 0.49);
|
|
797
|
+
box-shadow: 0px 3px 6px -6px rgba(0, 0, 0, 0.32);
|
|
798
|
+
}
|
|
799
|
+
.dark #_cbhtml .is-side button:hover,
|
|
800
|
+
.dark .is-ui .is-side button:hover {
|
|
801
|
+
background: rgba(122, 130, 137, 0.49);
|
|
802
|
+
}
|
|
803
|
+
.dark #_cbhtml .is-side button.on,
|
|
804
|
+
.dark .is-ui .is-side button.on {
|
|
805
|
+
background: rgba(95, 102, 107, 0.49);
|
|
806
|
+
}
|
|
793
807
|
.dark #_cbhtml .is-side svg,
|
|
794
808
|
.dark .is-ui .is-side svg {
|
|
795
809
|
fill: #fafafa;
|
|
@@ -790,6 +790,20 @@
|
|
|
790
790
|
box-shadow: rgba(76, 76, 76, 0.05) 0 0 16px 0px;
|
|
791
791
|
background: #4c4c4c;
|
|
792
792
|
}
|
|
793
|
+
.dark #_cbhtml .is-side button,
|
|
794
|
+
.dark .is-ui .is-side button {
|
|
795
|
+
color: #fafafa;
|
|
796
|
+
background: rgba(127, 127, 127, 0.49);
|
|
797
|
+
box-shadow: 0px 3px 6px -6px rgba(0, 0, 0, 0.32);
|
|
798
|
+
}
|
|
799
|
+
.dark #_cbhtml .is-side button:hover,
|
|
800
|
+
.dark .is-ui .is-side button:hover {
|
|
801
|
+
background: rgba(130, 130, 130, 0.49);
|
|
802
|
+
}
|
|
803
|
+
.dark #_cbhtml .is-side button.on,
|
|
804
|
+
.dark .is-ui .is-side button.on {
|
|
805
|
+
background: rgba(102, 102, 102, 0.49);
|
|
806
|
+
}
|
|
793
807
|
.dark #_cbhtml .is-side svg,
|
|
794
808
|
.dark .is-ui .is-side svg {
|
|
795
809
|
fill: #fafafa;
|
|
@@ -790,6 +790,20 @@
|
|
|
790
790
|
box-shadow: rgba(233, 47, 105, 0.05) 0 0 16px 0px;
|
|
791
791
|
background: #484345;
|
|
792
792
|
}
|
|
793
|
+
.dark #_cbhtml .is-side button,
|
|
794
|
+
.dark .is-ui .is-side button {
|
|
795
|
+
color: #fafafa;
|
|
796
|
+
background: rgba(125, 116, 120, 0.49);
|
|
797
|
+
box-shadow: 0px 3px 6px -6px rgba(0, 0, 0, 0.32);
|
|
798
|
+
}
|
|
799
|
+
.dark #_cbhtml .is-side button:hover,
|
|
800
|
+
.dark .is-ui .is-side button:hover {
|
|
801
|
+
background: rgba(127, 119, 122, 0.49);
|
|
802
|
+
}
|
|
803
|
+
.dark #_cbhtml .is-side button.on,
|
|
804
|
+
.dark .is-ui .is-side button.on {
|
|
805
|
+
background: rgba(98, 92, 94, 0.49);
|
|
806
|
+
}
|
|
793
807
|
.dark #_cbhtml .is-side svg,
|
|
794
808
|
.dark .is-ui .is-side svg {
|
|
795
809
|
fill: #fafafa;
|
|
@@ -790,6 +790,20 @@
|
|
|
790
790
|
box-shadow: rgba(95, 62, 191, 0.05) 0 0 16px 0px;
|
|
791
791
|
background: #5739b1;
|
|
792
792
|
}
|
|
793
|
+
.dark #_cbhtml .is-side button,
|
|
794
|
+
.dark .is-ui .is-side button {
|
|
795
|
+
color: #fafafa;
|
|
796
|
+
background: rgba(146, 123, 213, 0.49);
|
|
797
|
+
box-shadow: 0px 3px 6px -6px rgba(0, 0, 0, 0.32);
|
|
798
|
+
}
|
|
799
|
+
.dark #_cbhtml .is-side button:hover,
|
|
800
|
+
.dark .is-ui .is-side button:hover {
|
|
801
|
+
background: rgba(149, 127, 214, 0.49);
|
|
802
|
+
}
|
|
803
|
+
.dark #_cbhtml .is-side button.on,
|
|
804
|
+
.dark .is-ui .is-side button.on {
|
|
805
|
+
background: rgba(114, 85, 200, 0.49);
|
|
806
|
+
}
|
|
793
807
|
.dark #_cbhtml .is-side svg,
|
|
794
808
|
.dark .is-ui .is-side svg {
|
|
795
809
|
fill: #fafafa;
|
|
@@ -790,6 +790,20 @@
|
|
|
790
790
|
box-shadow: rgba(237, 40, 40, 0.05) 0 0 16px 0px;
|
|
791
791
|
background: #423f3f;
|
|
792
792
|
}
|
|
793
|
+
.dark #_cbhtml .is-side button,
|
|
794
|
+
.dark .is-ui .is-side button {
|
|
795
|
+
color: #fafafa;
|
|
796
|
+
background: rgba(118, 113, 113, 0.49);
|
|
797
|
+
box-shadow: 0px 3px 6px -6px rgba(0, 0, 0, 0.32);
|
|
798
|
+
}
|
|
799
|
+
.dark #_cbhtml .is-side button:hover,
|
|
800
|
+
.dark .is-ui .is-side button:hover {
|
|
801
|
+
background: rgba(121, 115, 115, 0.49);
|
|
802
|
+
}
|
|
803
|
+
.dark #_cbhtml .is-side button.on,
|
|
804
|
+
.dark .is-ui .is-side button.on {
|
|
805
|
+
background: rgba(92, 88, 88, 0.49);
|
|
806
|
+
}
|
|
793
807
|
.dark #_cbhtml .is-side svg,
|
|
794
808
|
.dark .is-ui .is-side svg {
|
|
795
809
|
fill: #fafafa;
|
|
@@ -790,6 +790,20 @@
|
|
|
790
790
|
box-shadow: rgba(52, 52, 52, 0.05) 0 0 16px 0px;
|
|
791
791
|
background: #343434;
|
|
792
792
|
}
|
|
793
|
+
.dark #_cbhtml .is-side button,
|
|
794
|
+
.dark .is-ui .is-side button {
|
|
795
|
+
color: #fafafa;
|
|
796
|
+
background: rgba(103, 103, 103, 0.55);
|
|
797
|
+
box-shadow: 0px 3px 6px -6px rgba(0, 0, 0, 0.32);
|
|
798
|
+
}
|
|
799
|
+
.dark #_cbhtml .is-side button:hover,
|
|
800
|
+
.dark .is-ui .is-side button:hover {
|
|
801
|
+
background: rgba(113, 113, 113, 0.55);
|
|
802
|
+
}
|
|
803
|
+
.dark #_cbhtml .is-side button.on,
|
|
804
|
+
.dark .is-ui .is-side button.on {
|
|
805
|
+
background: rgba(78, 78, 78, 0.55);
|
|
806
|
+
}
|
|
793
807
|
.dark #_cbhtml .is-side svg,
|
|
794
808
|
.dark .is-ui .is-side svg {
|
|
795
809
|
fill: #fafafa;
|
|
@@ -782,6 +782,20 @@
|
|
|
782
782
|
box-shadow: rgba(219, 229, 245, 0.05) 0 0 16px 0px;
|
|
783
783
|
background: #e3e9f3;
|
|
784
784
|
}
|
|
785
|
+
.light #_cbhtml .is-side button,
|
|
786
|
+
.light .is-ui .is-side button {
|
|
787
|
+
color: #000;
|
|
788
|
+
background: rgba(255, 255, 255, 0.3);
|
|
789
|
+
box-shadow: 0px 3px 6px -6px rgba(0, 0, 0, 0.32);
|
|
790
|
+
}
|
|
791
|
+
.light #_cbhtml .is-side button:hover,
|
|
792
|
+
.light .is-ui .is-side button:hover {
|
|
793
|
+
background: rgba(255, 255, 255, 0.3);
|
|
794
|
+
}
|
|
795
|
+
.light #_cbhtml .is-side button.on,
|
|
796
|
+
.light .is-ui .is-side button.on {
|
|
797
|
+
background: rgba(234, 239, 246, 0.3);
|
|
798
|
+
}
|
|
785
799
|
.light #_cbhtml .is-side svg,
|
|
786
800
|
.light .is-ui .is-side svg {
|
|
787
801
|
fill: #000;
|
|
@@ -782,6 +782,20 @@
|
|
|
782
782
|
box-shadow: rgba(199, 235, 253, 0.05) 0 0 16px 0px;
|
|
783
783
|
background: #cfe8f5;
|
|
784
784
|
}
|
|
785
|
+
.light #_cbhtml .is-side button,
|
|
786
|
+
.light .is-ui .is-side button {
|
|
787
|
+
color: #000;
|
|
788
|
+
background: rgba(255, 255, 255, 0.3);
|
|
789
|
+
box-shadow: 0px 3px 6px -6px rgba(0, 0, 0, 0.32);
|
|
790
|
+
}
|
|
791
|
+
.light #_cbhtml .is-side button:hover,
|
|
792
|
+
.light .is-ui .is-side button:hover {
|
|
793
|
+
background: rgba(255, 255, 255, 0.3);
|
|
794
|
+
}
|
|
795
|
+
.light #_cbhtml .is-side button.on,
|
|
796
|
+
.light .is-ui .is-side button.on {
|
|
797
|
+
background: rgba(215, 236, 247, 0.3);
|
|
798
|
+
}
|
|
785
799
|
.light #_cbhtml .is-side svg,
|
|
786
800
|
.light .is-ui .is-side svg {
|
|
787
801
|
fill: #000;
|
|
@@ -782,6 +782,20 @@
|
|
|
782
782
|
box-shadow: rgba(197, 212, 255, 0.05) 0 0 16px 0px;
|
|
783
783
|
background: #bfcdf7;
|
|
784
784
|
}
|
|
785
|
+
.light #_cbhtml .is-side button,
|
|
786
|
+
.light .is-ui .is-side button {
|
|
787
|
+
color: #000;
|
|
788
|
+
background: rgba(255, 255, 255, 0.3);
|
|
789
|
+
box-shadow: 0px 3px 6px -6px rgba(0, 0, 0, 0.32);
|
|
790
|
+
}
|
|
791
|
+
.light #_cbhtml .is-side button:hover,
|
|
792
|
+
.light .is-ui .is-side button:hover {
|
|
793
|
+
background: rgba(255, 255, 255, 0.3);
|
|
794
|
+
}
|
|
795
|
+
.light #_cbhtml .is-side button.on,
|
|
796
|
+
.light .is-ui .is-side button.on {
|
|
797
|
+
background: rgba(200, 212, 248, 0.3);
|
|
798
|
+
}
|
|
785
799
|
.light #_cbhtml .is-side svg,
|
|
786
800
|
.light .is-ui .is-side svg {
|
|
787
801
|
fill: #000;
|
|
@@ -782,6 +782,20 @@
|
|
|
782
782
|
box-shadow: rgba(215, 247, 241, 0.05) 0 0 16px 0px;
|
|
783
783
|
background: #d4f1eb;
|
|
784
784
|
}
|
|
785
|
+
.light #_cbhtml .is-side button,
|
|
786
|
+
.light .is-ui .is-side button {
|
|
787
|
+
color: #000;
|
|
788
|
+
background: rgba(255, 255, 255, 0.3);
|
|
789
|
+
box-shadow: 0px 3px 6px -6px rgba(0, 0, 0, 0.32);
|
|
790
|
+
}
|
|
791
|
+
.light #_cbhtml .is-side button:hover,
|
|
792
|
+
.light .is-ui .is-side button:hover {
|
|
793
|
+
background: rgba(255, 255, 255, 0.3);
|
|
794
|
+
}
|
|
795
|
+
.light #_cbhtml .is-side button.on,
|
|
796
|
+
.light .is-ui .is-side button.on {
|
|
797
|
+
background: rgba(220, 244, 239, 0.3);
|
|
798
|
+
}
|
|
785
799
|
.light #_cbhtml .is-side svg,
|
|
786
800
|
.light .is-ui .is-side svg {
|
|
787
801
|
fill: #000;
|
|
@@ -782,6 +782,20 @@
|
|
|
782
782
|
box-shadow: rgba(218, 218, 218, 0.05) 0 0 16px 0px;
|
|
783
783
|
background: #cecece;
|
|
784
784
|
}
|
|
785
|
+
.light #_cbhtml .is-side button,
|
|
786
|
+
.light .is-ui .is-side button {
|
|
787
|
+
color: #000;
|
|
788
|
+
background: rgba(255, 255, 255, 0.3);
|
|
789
|
+
box-shadow: 0px 3px 6px -6px rgba(0, 0, 0, 0.32);
|
|
790
|
+
}
|
|
791
|
+
.light #_cbhtml .is-side button:hover,
|
|
792
|
+
.light .is-ui .is-side button:hover {
|
|
793
|
+
background: rgba(255, 255, 255, 0.3);
|
|
794
|
+
}
|
|
795
|
+
.light #_cbhtml .is-side button.on,
|
|
796
|
+
.light .is-ui .is-side button.on {
|
|
797
|
+
background: rgba(211, 211, 211, 0.3);
|
|
798
|
+
}
|
|
785
799
|
.light #_cbhtml .is-side svg,
|
|
786
800
|
.light .is-ui .is-side svg {
|
|
787
801
|
fill: #000;
|
|
@@ -782,6 +782,20 @@
|
|
|
782
782
|
box-shadow: rgba(239, 239, 239, 0.05) 0 0 16px 0px;
|
|
783
783
|
background: #e3e3e3;
|
|
784
784
|
}
|
|
785
|
+
.light #_cbhtml .is-side button,
|
|
786
|
+
.light .is-ui .is-side button {
|
|
787
|
+
color: #000;
|
|
788
|
+
background: rgba(255, 255, 255, 0.3);
|
|
789
|
+
box-shadow: 0px 3px 6px -6px rgba(0, 0, 0, 0.32);
|
|
790
|
+
}
|
|
791
|
+
.light #_cbhtml .is-side button:hover,
|
|
792
|
+
.light .is-ui .is-side button:hover {
|
|
793
|
+
background: rgba(255, 255, 255, 0.3);
|
|
794
|
+
}
|
|
795
|
+
.light #_cbhtml .is-side button.on,
|
|
796
|
+
.light .is-ui .is-side button.on {
|
|
797
|
+
background: rgba(232, 232, 232, 0.3);
|
|
798
|
+
}
|
|
785
799
|
.light #_cbhtml .is-side svg,
|
|
786
800
|
.light .is-ui .is-side svg {
|
|
787
801
|
fill: #000;
|
|
@@ -782,6 +782,20 @@
|
|
|
782
782
|
box-shadow: rgba(250, 250, 250, 0.05) 0 0 16px 0px;
|
|
783
783
|
background: #e3e3e3;
|
|
784
784
|
}
|
|
785
|
+
.light #_cbhtml .is-side button,
|
|
786
|
+
.light .is-ui .is-side button {
|
|
787
|
+
color: #000;
|
|
788
|
+
background: rgba(255, 255, 255, 0.3);
|
|
789
|
+
box-shadow: 0px 3px 6px -6px rgba(0, 0, 0, 0.32);
|
|
790
|
+
}
|
|
791
|
+
.light #_cbhtml .is-side button:hover,
|
|
792
|
+
.light .is-ui .is-side button:hover {
|
|
793
|
+
background: rgba(255, 255, 255, 0.3);
|
|
794
|
+
}
|
|
795
|
+
.light #_cbhtml .is-side button.on,
|
|
796
|
+
.light .is-ui .is-side button.on {
|
|
797
|
+
background: rgba(232, 232, 232, 0.3);
|
|
798
|
+
}
|
|
785
799
|
.light #_cbhtml .is-side svg,
|
|
786
800
|
.light .is-ui .is-side svg {
|
|
787
801
|
fill: #000;
|
|
@@ -782,6 +782,20 @@
|
|
|
782
782
|
box-shadow: rgba(221, 243, 220, 0.05) 0 0 16px 0px;
|
|
783
783
|
background: #d9ead7;
|
|
784
784
|
}
|
|
785
|
+
.light #_cbhtml .is-side button,
|
|
786
|
+
.light .is-ui .is-side button {
|
|
787
|
+
color: #000;
|
|
788
|
+
background: rgba(255, 255, 255, 0.3);
|
|
789
|
+
box-shadow: 0px 3px 6px -6px rgba(0, 0, 0, 0.32);
|
|
790
|
+
}
|
|
791
|
+
.light #_cbhtml .is-side button:hover,
|
|
792
|
+
.light .is-ui .is-side button:hover {
|
|
793
|
+
background: rgba(255, 255, 255, 0.3);
|
|
794
|
+
}
|
|
795
|
+
.light #_cbhtml .is-side button.on,
|
|
796
|
+
.light .is-ui .is-side button.on {
|
|
797
|
+
background: rgba(223, 238, 222, 0.3);
|
|
798
|
+
}
|
|
785
799
|
.light #_cbhtml .is-side svg,
|
|
786
800
|
.light .is-ui .is-side svg {
|
|
787
801
|
fill: #000;
|
|
@@ -782,6 +782,20 @@
|
|
|
782
782
|
box-shadow: rgba(255, 213, 242, 0.05) 0 0 16px 0px;
|
|
783
783
|
background: #fbd6f0;
|
|
784
784
|
}
|
|
785
|
+
.light #_cbhtml .is-side button,
|
|
786
|
+
.light .is-ui .is-side button {
|
|
787
|
+
color: #000;
|
|
788
|
+
background: rgba(255, 255, 255, 0.3);
|
|
789
|
+
box-shadow: 0px 3px 6px -6px rgba(0, 0, 0, 0.32);
|
|
790
|
+
}
|
|
791
|
+
.light #_cbhtml .is-side button:hover,
|
|
792
|
+
.light .is-ui .is-side button:hover {
|
|
793
|
+
background: rgba(255, 255, 255, 0.3);
|
|
794
|
+
}
|
|
795
|
+
.light #_cbhtml .is-side button.on,
|
|
796
|
+
.light .is-ui .is-side button.on {
|
|
797
|
+
background: rgba(252, 223, 243, 0.3);
|
|
798
|
+
}
|
|
785
799
|
.light #_cbhtml .is-side svg,
|
|
786
800
|
.light .is-ui .is-side svg {
|
|
787
801
|
fill: #000;
|
|
@@ -782,6 +782,20 @@
|
|
|
782
782
|
box-shadow: rgba(255, 213, 242, 0.05) 0 0 16px 0px;
|
|
783
783
|
background: #fbd6f0;
|
|
784
784
|
}
|
|
785
|
+
.light #_cbhtml .is-side button,
|
|
786
|
+
.light .is-ui .is-side button {
|
|
787
|
+
color: #000;
|
|
788
|
+
background: rgba(255, 255, 255, 0.3);
|
|
789
|
+
box-shadow: 0px 3px 6px -6px rgba(0, 0, 0, 0.32);
|
|
790
|
+
}
|
|
791
|
+
.light #_cbhtml .is-side button:hover,
|
|
792
|
+
.light .is-ui .is-side button:hover {
|
|
793
|
+
background: rgba(255, 255, 255, 0.3);
|
|
794
|
+
}
|
|
795
|
+
.light #_cbhtml .is-side button.on,
|
|
796
|
+
.light .is-ui .is-side button.on {
|
|
797
|
+
background: rgba(252, 223, 243, 0.3);
|
|
798
|
+
}
|
|
785
799
|
.light #_cbhtml .is-side svg,
|
|
786
800
|
.light .is-ui .is-side svg {
|
|
787
801
|
fill: #000;
|
|
@@ -782,6 +782,20 @@
|
|
|
782
782
|
box-shadow: rgba(220, 218, 243, 0.05) 0 0 16px 0px;
|
|
783
783
|
background: #e3e2f3;
|
|
784
784
|
}
|
|
785
|
+
.light #_cbhtml .is-side button,
|
|
786
|
+
.light .is-ui .is-side button {
|
|
787
|
+
color: #000;
|
|
788
|
+
background: rgba(255, 255, 255, 0.3);
|
|
789
|
+
box-shadow: 0px 3px 6px -6px rgba(0, 0, 0, 0.32);
|
|
790
|
+
}
|
|
791
|
+
.light #_cbhtml .is-side button:hover,
|
|
792
|
+
.light .is-ui .is-side button:hover {
|
|
793
|
+
background: rgba(255, 255, 255, 0.3);
|
|
794
|
+
}
|
|
795
|
+
.light #_cbhtml .is-side button.on,
|
|
796
|
+
.light .is-ui .is-side button.on {
|
|
797
|
+
background: rgba(234, 233, 246, 0.3);
|
|
798
|
+
}
|
|
785
799
|
.light #_cbhtml .is-side svg,
|
|
786
800
|
.light .is-ui .is-side svg {
|
|
787
801
|
fill: #000;
|
|
@@ -782,6 +782,20 @@
|
|
|
782
782
|
box-shadow: rgba(234, 218, 251, 0.05) 0 0 16px 0px;
|
|
783
783
|
background: #e3d8ef;
|
|
784
784
|
}
|
|
785
|
+
.light #_cbhtml .is-side button,
|
|
786
|
+
.light .is-ui .is-side button {
|
|
787
|
+
color: #000;
|
|
788
|
+
background: rgba(255, 255, 255, 0.3);
|
|
789
|
+
box-shadow: 0px 3px 6px -6px rgba(0, 0, 0, 0.32);
|
|
790
|
+
}
|
|
791
|
+
.light #_cbhtml .is-side button:hover,
|
|
792
|
+
.light .is-ui .is-side button:hover {
|
|
793
|
+
background: rgba(255, 255, 255, 0.3);
|
|
794
|
+
}
|
|
795
|
+
.light #_cbhtml .is-side button.on,
|
|
796
|
+
.light .is-ui .is-side button.on {
|
|
797
|
+
background: rgba(232, 223, 242, 0.3);
|
|
798
|
+
}
|
|
785
799
|
.light #_cbhtml .is-side svg,
|
|
786
800
|
.light .is-ui .is-side svg {
|
|
787
801
|
fill: #000;
|
|
@@ -782,6 +782,20 @@
|
|
|
782
782
|
box-shadow: rgba(255, 226, 226, 0.05) 0 0 16px 0px;
|
|
783
783
|
background: #fbe2e2;
|
|
784
784
|
}
|
|
785
|
+
.light #_cbhtml .is-side button,
|
|
786
|
+
.light .is-ui .is-side button {
|
|
787
|
+
color: #000;
|
|
788
|
+
background: rgba(255, 255, 255, 0.3);
|
|
789
|
+
box-shadow: 0px 3px 6px -6px rgba(0, 0, 0, 0.32);
|
|
790
|
+
}
|
|
791
|
+
.light #_cbhtml .is-side button:hover,
|
|
792
|
+
.light .is-ui .is-side button:hover {
|
|
793
|
+
background: rgba(255, 255, 255, 0.3);
|
|
794
|
+
}
|
|
795
|
+
.light #_cbhtml .is-side button.on,
|
|
796
|
+
.light .is-ui .is-side button.on {
|
|
797
|
+
background: rgba(252, 235, 235, 0.3);
|
|
798
|
+
}
|
|
785
799
|
.light #_cbhtml .is-side svg,
|
|
786
800
|
.light .is-ui .is-side svg {
|
|
787
801
|
fill: #000;
|
|
@@ -782,6 +782,20 @@
|
|
|
782
782
|
box-shadow: rgba(249, 244, 217, 0.05) 0 0 16px 0px;
|
|
783
783
|
background: #f5f2df;
|
|
784
784
|
}
|
|
785
|
+
.light #_cbhtml .is-side button,
|
|
786
|
+
.light .is-ui .is-side button {
|
|
787
|
+
color: #000;
|
|
788
|
+
background: rgba(255, 255, 255, 0.3);
|
|
789
|
+
box-shadow: 0px 3px 6px -6px rgba(0, 0, 0, 0.32);
|
|
790
|
+
}
|
|
791
|
+
.light #_cbhtml .is-side button:hover,
|
|
792
|
+
.light .is-ui .is-side button:hover {
|
|
793
|
+
background: rgba(255, 255, 255, 0.3);
|
|
794
|
+
}
|
|
795
|
+
.light #_cbhtml .is-side button.on,
|
|
796
|
+
.light .is-ui .is-side button.on {
|
|
797
|
+
background: rgba(247, 245, 231, 0.3);
|
|
798
|
+
}
|
|
785
799
|
.light #_cbhtml .is-side svg,
|
|
786
800
|
.light .is-ui .is-side svg {
|
|
787
801
|
fill: #000;
|
|
@@ -782,6 +782,20 @@
|
|
|
782
782
|
box-shadow: rgba(255, 239, 177, 0.05) 0 0 16px 0px;
|
|
783
783
|
background: #f9ecb9;
|
|
784
784
|
}
|
|
785
|
+
.light #_cbhtml .is-side button,
|
|
786
|
+
.light .is-ui .is-side button {
|
|
787
|
+
color: #000;
|
|
788
|
+
background: rgba(255, 255, 255, 0.3);
|
|
789
|
+
box-shadow: 0px 3px 6px -6px rgba(0, 0, 0, 0.32);
|
|
790
|
+
}
|
|
791
|
+
.light #_cbhtml .is-side button:hover,
|
|
792
|
+
.light .is-ui .is-side button:hover {
|
|
793
|
+
background: rgba(255, 255, 255, 0.3);
|
|
794
|
+
}
|
|
795
|
+
.light #_cbhtml .is-side button.on,
|
|
796
|
+
.light .is-ui .is-side button.on {
|
|
797
|
+
background: rgba(250, 239, 194, 0.3);
|
|
798
|
+
}
|
|
785
799
|
.light #_cbhtml .is-side svg,
|
|
786
800
|
.light .is-ui .is-side svg {
|
|
787
801
|
fill: #000;
|