@innovastudio/contentbuilder 1.2.2 → 1.2.4-rc10

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.
Files changed (67) hide show
  1. package/package.json +2 -1
  2. package/public/contentbuilder/contentbuilder.css +442 -83
  3. package/public/contentbuilder/contentbuilder.esm.js +4688 -2775
  4. package/public/contentbuilder/contentbuilder.min.js +10 -9
  5. package/public/contentbuilder/lang/en.js +4 -1
  6. package/public/contentbuilder/lang/fr.js +4 -1
  7. package/public/contentbuilder/plugins/buttoneditor/plugin.js +1 -1
  8. package/public/contentbuilder/plugins/preview/plugin.js +3 -9
  9. package/public/contentbuilder/plugins/searchreplace/plugin.js +1 -1
  10. package/public/contentbuilder/plugins/symbols/plugin.js +2791 -2545
  11. package/public/contentbuilder/plugins/wordcount/plugin.js +1 -1
  12. package/public/contentbuilder/themes/colored-blue.css +63 -6
  13. package/public/contentbuilder/themes/colored-blue2.css +63 -6
  14. package/public/contentbuilder/themes/colored-blue3.css +63 -6
  15. package/public/contentbuilder/themes/colored-blue4.css +63 -6
  16. package/public/contentbuilder/themes/colored-blue5.css +63 -6
  17. package/public/contentbuilder/themes/colored-blue6.css +63 -6
  18. package/public/contentbuilder/themes/colored-blue7.css +63 -6
  19. package/public/contentbuilder/themes/colored-blue8.css +63 -6
  20. package/public/contentbuilder/themes/colored-dark.css +63 -6
  21. package/public/contentbuilder/themes/colored-darkblue.css +63 -6
  22. package/public/contentbuilder/themes/colored-gray.css +63 -6
  23. package/public/contentbuilder/themes/colored-green.css +63 -6
  24. package/public/contentbuilder/themes/colored-green2.css +63 -6
  25. package/public/contentbuilder/themes/colored-green3.css +63 -6
  26. package/public/contentbuilder/themes/colored-green4.css +63 -6
  27. package/public/contentbuilder/themes/colored-green5.css +63 -6
  28. package/public/contentbuilder/themes/colored-magenta.css +63 -6
  29. package/public/contentbuilder/themes/colored-orange.css +63 -6
  30. package/public/contentbuilder/themes/colored-orange2.css +63 -6
  31. package/public/contentbuilder/themes/colored-orange3.css +63 -6
  32. package/public/contentbuilder/themes/colored-pink.css +63 -6
  33. package/public/contentbuilder/themes/colored-pink2.css +63 -6
  34. package/public/contentbuilder/themes/colored-pink3.css +63 -6
  35. package/public/contentbuilder/themes/colored-pink4.css +63 -6
  36. package/public/contentbuilder/themes/colored-purple.css +63 -6
  37. package/public/contentbuilder/themes/colored-purple2.css +63 -6
  38. package/public/contentbuilder/themes/colored-red.css +63 -6
  39. package/public/contentbuilder/themes/colored-red2.css +63 -6
  40. package/public/contentbuilder/themes/colored-red3.css +63 -6
  41. package/public/contentbuilder/themes/colored-red4.css +63 -6
  42. package/public/contentbuilder/themes/colored-red5.css +63 -6
  43. package/public/contentbuilder/themes/colored-yellow.css +63 -6
  44. package/public/contentbuilder/themes/colored-yellow2.css +63 -6
  45. package/public/contentbuilder/themes/dark-blue.css +63 -6
  46. package/public/contentbuilder/themes/dark-blue2.css +63 -6
  47. package/public/contentbuilder/themes/dark-blue3.css +63 -6
  48. package/public/contentbuilder/themes/dark-gray.css +63 -6
  49. package/public/contentbuilder/themes/dark-pink.css +63 -6
  50. package/public/contentbuilder/themes/dark-purple.css +63 -6
  51. package/public/contentbuilder/themes/dark-red.css +63 -6
  52. package/public/contentbuilder/themes/dark.css +62 -6
  53. package/public/contentbuilder/themes/light-blue.css +63 -6
  54. package/public/contentbuilder/themes/light-blue2.css +63 -6
  55. package/public/contentbuilder/themes/light-blue3.css +63 -6
  56. package/public/contentbuilder/themes/light-cyan.css +63 -6
  57. package/public/contentbuilder/themes/light-gray.css +63 -6
  58. package/public/contentbuilder/themes/light-gray2.css +63 -6
  59. package/public/contentbuilder/themes/light-gray3.css +63 -6
  60. package/public/contentbuilder/themes/light-green.css +63 -6
  61. package/public/contentbuilder/themes/light-pink.css +63 -6
  62. package/public/contentbuilder/themes/light-pink2.css +63 -6
  63. package/public/contentbuilder/themes/light-purple.css +63 -6
  64. package/public/contentbuilder/themes/light-purple2.css +63 -6
  65. package/public/contentbuilder/themes/light-red.css +63 -6
  66. package/public/contentbuilder/themes/light-yellow.css +63 -6
  67. package/public/contentbuilder/themes/light-yellow2.css +63 -6
@@ -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;
@@ -215,11 +222,6 @@ button:focus {
215
222
  .rte-zoom-options
216
223
  */
217
224
  }
218
- #_cbhtml *,
219
- .is-ui * {
220
- font-family: sans-serif;
221
- line-height: inherit;
222
- }
223
225
  #_cbhtml p,
224
226
  .is-ui p {
225
227
  font-size: 13px;
@@ -334,6 +336,10 @@ button:focus {
334
336
  .is-ui .style-helper.separator-color {
335
337
  background: #f0f0f0;
336
338
  }
339
+ #_cbhtml .style-helper.outline-color,
340
+ .is-ui .style-helper.outline-color {
341
+ background: #3e93f7;
342
+ }
337
343
  #_cbhtml .style-helper-button-classic,
338
344
  .is-ui .style-helper-button-classic {
339
345
  background: #f7f7f7;
@@ -357,6 +363,7 @@ button:focus {
357
363
  background: #fff;
358
364
  border: 1px solid #f2f2f2;
359
365
  box-shadow: 4px 17px 20px 0px rgba(0, 0, 0, 0.08);
366
+ outline: none;
360
367
  }
361
368
  #_cbhtml .is-pop:hover,
362
369
  .is-ui .is-pop:hover {
@@ -576,6 +583,12 @@ button:focus {
576
583
  .is-ui .is-general-options div[role=button]:hover {
577
584
  background: whitesmoke !important;
578
585
  }
586
+ #_cbhtml .is-general-options button:focus,
587
+ #_cbhtml .is-general-options div[role=button]:focus,
588
+ .is-ui .is-general-options button:focus,
589
+ .is-ui .is-general-options div[role=button]:focus {
590
+ outline: none;
591
+ }
579
592
  #_cbhtml .is-general-options button svg,
580
593
  #_cbhtml .is-general-options div[role=button] svg,
581
594
  .is-ui .is-general-options button svg,
@@ -631,6 +644,16 @@ button:focus {
631
644
  .is-ui .is-rte-pop.elementrte-more-options div[role=button]:hover {
632
645
  background: whitesmoke;
633
646
  }
647
+ #_cbhtml .is-rte-tool div[role=button]:focus,
648
+ #_cbhtml .is-elementrte-tool div[role=button]:focus,
649
+ #_cbhtml .is-rte-pop.rte-more-options div[role=button]:focus,
650
+ #_cbhtml .is-rte-pop.elementrte-more-options div[role=button]:focus,
651
+ .is-ui .is-rte-tool div[role=button]:focus,
652
+ .is-ui .is-elementrte-tool div[role=button]:focus,
653
+ .is-ui .is-rte-pop.rte-more-options div[role=button]:focus,
654
+ .is-ui .is-rte-pop.elementrte-more-options div[role=button]:focus {
655
+ outline: none;
656
+ }
634
657
  #_cbhtml .is-rte-tool div[role=button] svg,
635
658
  #_cbhtml .is-elementrte-tool div[role=button] svg,
636
659
  #_cbhtml .is-rte-pop.rte-more-options div[role=button] svg,
@@ -676,6 +699,16 @@ button:focus {
676
699
  .is-ui .is-rte-pop.elementrte-more-options button:hover {
677
700
  background: whitesmoke;
678
701
  }
702
+ #_cbhtml .is-rte-tool button:focus,
703
+ #_cbhtml .is-elementrte-tool button:focus,
704
+ #_cbhtml .is-rte-pop.rte-more-options button:focus,
705
+ #_cbhtml .is-rte-pop.elementrte-more-options button:focus,
706
+ .is-ui .is-rte-tool button:focus,
707
+ .is-ui .is-elementrte-tool button:focus,
708
+ .is-ui .is-rte-pop.rte-more-options button:focus,
709
+ .is-ui .is-rte-pop.elementrte-more-options button:focus {
710
+ outline: none;
711
+ }
679
712
  #_cbhtml .is-rte-tool button svg,
680
713
  #_cbhtml .is-elementrte-tool button svg,
681
714
  #_cbhtml .is-rte-pop.rte-more-options button svg,
@@ -755,6 +788,7 @@ button:focus {
755
788
  box-shadow: rgba(0, 0, 0, 0.07) 0px 7px 12px 0px;
756
789
  box-sizing: border-box;
757
790
  overflow: hidden;
791
+ outline: none;
758
792
  }
759
793
  #_cbhtml .is-rte-pop > div,
760
794
  .is-ui .is-rte-pop > div {
@@ -777,6 +811,10 @@ button:focus {
777
811
  .is-ui .is-rte-pop button:hover {
778
812
  background: whitesmoke;
779
813
  }
814
+ #_cbhtml .is-rte-pop button:focus,
815
+ .is-ui .is-rte-pop button:focus {
816
+ outline: none;
817
+ }
780
818
  #_cbhtml .is-rte-pop .is-label,
781
819
  .is-ui .is-rte-pop .is-label {
782
820
  font-size: 9px;
@@ -794,7 +832,7 @@ button:focus {
794
832
  #_cbhtml .is-rte-pop.active,
795
833
  .is-ui .is-rte-pop.active {
796
834
  animation-name: formatting-slide-out;
797
- animation-duration: 0.1s;
835
+ animation-duration: 100ms;
798
836
  animation-fill-mode: forwards;
799
837
  }
800
838
  @keyframes formatting-slide-out {
@@ -808,7 +846,7 @@ button:focus {
808
846
  #_cbhtml .is-rte-pop.deactive,
809
847
  .is-ui .is-rte-pop.deactive {
810
848
  animation-name: formatting-slide-in;
811
- animation-duration: 0.1s;
849
+ animation-duration: 100ms;
812
850
  animation-fill-mode: forwards;
813
851
  }
814
852
  @keyframes formatting-slide-in {
@@ -819,6 +857,10 @@ button:focus {
819
857
  height: 0px;
820
858
  }
821
859
  }
860
+ #_cbhtml .is-rte-pop.rte-paragraph-options,
861
+ .is-ui .is-rte-pop.rte-paragraph-options {
862
+ overflow: hidden;
863
+ }
822
864
  #_cbhtml .is-rte-pop.rte-paragraph-options.active,
823
865
  .is-ui .is-rte-pop.rte-paragraph-options.active {
824
866
  animation-name: paragraph-slide-out;
@@ -828,7 +870,7 @@ button:focus {
828
870
  height: 0;
829
871
  }
830
872
  to {
831
- height: 286px;
873
+ height: 277px;
832
874
  }
833
875
  }
834
876
  #_cbhtml .is-rte-pop.rte-paragraph-options.deactive,
@@ -837,43 +879,55 @@ button:focus {
837
879
  }
838
880
  @keyframes paragraph-slide-in {
839
881
  from {
840
- height: 286px;
882
+ height: 277px;
841
883
  }
842
884
  to {
843
885
  height: 0;
844
886
  }
845
887
  }
846
- #_cbhtml .is-rte-pop.rte-paragraph-options div.on,
847
- .is-ui .is-rte-pop.rte-paragraph-options div.on {
888
+ #_cbhtml .is-rte-pop.rte-paragraph-options li.on,
889
+ .is-ui .is-rte-pop.rte-paragraph-options li.on {
848
890
  background: whitesmoke;
849
891
  }
850
- #_cbhtml .is-rte-pop.rte-paragraph-options > div,
851
- .is-ui .is-rte-pop.rte-paragraph-options > div {
892
+ #_cbhtml .is-rte-pop.rte-paragraph-options > ul,
893
+ .is-ui .is-rte-pop.rte-paragraph-options > ul {
852
894
  width: 242px;
853
895
  padding: 1px 9px 9px;
854
896
  box-sizing: border-box;
855
- overflow-x: hidden;
897
+ overflow: hidden;
856
898
  flex-direction: column;
899
+ list-style: none;
900
+ padding: 0;
901
+ margin: 0;
857
902
  }
858
- #_cbhtml .is-rte-pop.rte-paragraph-options > div > div,
859
- .is-ui .is-rte-pop.rte-paragraph-options > div > div {
903
+ #_cbhtml .is-rte-pop.rte-paragraph-options > ul > li,
904
+ .is-ui .is-rte-pop.rte-paragraph-options > ul > li {
860
905
  cursor: pointer;
861
906
  overflow: hidden;
862
907
  padding: 5px 0;
863
908
  box-sizing: border-box;
909
+ display: flex;
910
+ align-items: center;
911
+ justify-content: center;
912
+ overflow: hidden;
913
+ text-overflow: ellipsis;
914
+ white-space: nowrap;
915
+ outline: none;
864
916
  }
865
- #_cbhtml .is-rte-pop.rte-paragraph-options > div > div:hover,
866
- .is-ui .is-rte-pop.rte-paragraph-options > div > div:hover {
917
+ #_cbhtml .is-rte-pop.rte-paragraph-options > ul > li:hover, #_cbhtml .is-rte-pop.rte-paragraph-options > ul > li:focus,
918
+ .is-ui .is-rte-pop.rte-paragraph-options > ul > li:hover,
919
+ .is-ui .is-rte-pop.rte-paragraph-options > ul > li:focus {
867
920
  background: whitesmoke;
868
921
  }
869
- #_cbhtml .is-rte-pop.rte-paragraph-options > div > div > *,
870
- .is-ui .is-rte-pop.rte-paragraph-options > div > div > * {
922
+ #_cbhtml .is-rte-pop.rte-paragraph-options > ul > li > *,
923
+ .is-ui .is-rte-pop.rte-paragraph-options > ul > li > * {
871
924
  text-transform: none !important;
872
925
  margin: 0 !important;
873
926
  line-height: 1.45 !important;
874
927
  text-align: center;
875
928
  transform: scale(0.7);
876
929
  white-space: nowrap;
930
+ pointer-events: none;
877
931
  }
878
932
  #_cbhtml .is-rte-pop.rte-textsetting-options > div,
879
933
  .is-ui .is-rte-pop.rte-textsetting-options > div {
@@ -884,8 +938,9 @@ button:focus {
884
938
  }
885
939
  #_cbhtml .is-rte-pop.rte-textsetting-options button,
886
940
  .is-ui .is-rte-pop.rte-textsetting-options button {
887
- width: 40px;
888
- height: 30px;
941
+ width: 38px;
942
+ height: 28.2px;
943
+ margin: 1px;
889
944
  box-shadow: none;
890
945
  background: transparent;
891
946
  }
@@ -897,6 +952,10 @@ button:focus {
897
952
  .is-ui .is-rte-pop.rte-textsetting-options button:hover {
898
953
  background: whitesmoke;
899
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
+ }
900
959
  #_cbhtml .is-rte-pop.rte-textsetting-options.active,
901
960
  .is-ui .is-rte-pop.rte-textsetting-options.active {
902
961
  animation-name: textsetting-slide-out;
@@ -972,11 +1031,28 @@ button:focus {
972
1031
  .is-ui .is-rte-pop.rte-color-picker button {
973
1032
  background-color: transparent;
974
1033
  box-shadow: 0px 3px 6px -6px rgba(0, 0, 0, 0.32);
1034
+ border-radius: 0px;
975
1035
  }
976
1036
  #_cbhtml .is-rte-pop.rte-color-picker button:hover,
977
1037
  .is-ui .is-rte-pop.rte-color-picker button:hover {
978
1038
  background: transparent;
979
1039
  }
1040
+ #_cbhtml .is-rte-pop.rte-color-picker button:focus,
1041
+ .is-ui .is-rte-pop.rte-color-picker button:focus {
1042
+ outline: #3e93f7 2px solid;
1043
+ outline-offset: -2px;
1044
+ }
1045
+ #_cbhtml .is-rte-pop.rte-color-picker input[type=text]:focus,
1046
+ .is-ui .is-rte-pop.rte-color-picker input[type=text]:focus {
1047
+ outline: #3e93f7 2px solid;
1048
+ outline-offset: -2px;
1049
+ }
1050
+ #_cbhtml .is-rte-pop.rte-color-picker .color-default button,
1051
+ #_cbhtml .is-rte-pop.rte-color-picker .color-gradient button,
1052
+ .is-ui .is-rte-pop.rte-color-picker .color-default button,
1053
+ .is-ui .is-rte-pop.rte-color-picker .color-gradient button {
1054
+ outline: none;
1055
+ }
980
1056
  #_cbhtml .is-rte-pop.rte-color-picker.active,
981
1057
  .is-ui .is-rte-pop.rte-color-picker.active {
982
1058
  animation-name: colorpicker-slide-out;
@@ -1123,6 +1199,10 @@ button:focus {
1123
1199
  .is-ui .is-rte-pop.rte-customtag-options > div button:hover {
1124
1200
  background: whitesmoke;
1125
1201
  }
1202
+ #_cbhtml .is-rte-pop.rte-customtag-options > div button:focus,
1203
+ .is-ui .is-rte-pop.rte-customtag-options > div button:focus {
1204
+ background: whitesmoke;
1205
+ }
1126
1206
  #_cbhtml .is-rte-pop.rte-zoom-options > div,
1127
1207
  .is-ui .is-rte-pop.rte-zoom-options > div {
1128
1208
  width: 224px;
@@ -1679,6 +1759,12 @@ button:focus {
1679
1759
  flex-direction: column;
1680
1760
  font-family: sans-serif;
1681
1761
  font-weight: 300;
1762
+ outline: none;
1763
+ }
1764
+ #_cbhtml .is-modal a:focus,
1765
+ .is-ui .is-modal a:focus {
1766
+ outline: #3e93f7 2px solid;
1767
+ outline-offset: 0;
1682
1768
  }
1683
1769
  #_cbhtml .is-modal.active,
1684
1770
  .is-ui .is-modal.active {
@@ -1687,16 +1773,16 @@ button:focus {
1687
1773
  #_cbhtml .is-modal button,
1688
1774
  .is-ui .is-modal button {
1689
1775
  color: #000;
1690
- background: #fff;
1776
+ background: rgba(255, 255, 255, 0.3);
1691
1777
  box-shadow: 0px 3px 6px -6px rgba(0, 0, 0, 0.32);
1692
1778
  }
1693
1779
  #_cbhtml .is-modal button:hover,
1694
1780
  .is-ui .is-modal button:hover {
1695
- background: #fff;
1781
+ background: rgba(255, 255, 255, 0.3);
1696
1782
  }
1697
1783
  #_cbhtml .is-modal button.on,
1698
1784
  .is-ui .is-modal button.on {
1699
- background: #f2f2f2;
1785
+ background: rgba(242, 242, 242, 0.3);
1700
1786
  }
1701
1787
  #_cbhtml .is-modal button.is-btn-color,
1702
1788
  .is-ui .is-modal button.is-btn-color {
@@ -1737,6 +1823,12 @@ button:focus {
1737
1823
  opacity: 0;
1738
1824
  }
1739
1825
  }
1826
+ #_cbhtml .is-modal .form-upload-larger:focus-within,
1827
+ .is-ui .is-modal .form-upload-larger:focus-within {
1828
+ outline: #3e93f7 2px solid;
1829
+ outline-offset: 0;
1830
+ border-radius: 1px;
1831
+ }
1740
1832
  #_cbhtml .is-modal .is-modal-overlay,
1741
1833
  .is-ui .is-modal .is-modal-overlay {
1742
1834
  position: absolute;
@@ -1758,25 +1850,27 @@ button:focus {
1758
1850
  .is-ui .is-modal.is-modal-content,
1759
1851
  .is-ui .is-modal .is-modal-content {
1760
1852
  background: #fff;
1761
- border: 1px solid #f2f2f2;
1762
- box-shadow: 4px 17px 20px 0px rgba(0, 0, 0, 0.08);
1853
+ border: 1px solid rgba(212, 217, 226, 0.75);
1854
+ box-shadow: 6px 14px 20px 0px rgba(95, 95, 95, 0.08);
1763
1855
  }
1764
1856
  #_cbhtml .is-modal .is-modal-content,
1765
1857
  .is-ui .is-modal .is-modal-content {
1766
1858
  position: relative;
1767
1859
  width: 100%;
1768
- padding: 20px 20px;
1860
+ padding: 25px 25px;
1769
1861
  box-sizing: border-box;
1862
+ border-radius: 8px;
1770
1863
  }
1771
1864
  #_cbhtml .is-modal:not(.is-modal-content) > div:not(.is-modal-overlay),
1772
1865
  .is-ui .is-modal:not(.is-modal-content) > div:not(.is-modal-overlay) {
1773
1866
  background: #fff;
1774
- border: 1px solid #f2f2f2;
1775
- box-shadow: 4px 17px 20px 0px rgba(0, 0, 0, 0.08);
1867
+ border: 1px solid rgba(212, 217, 226, 0.75);
1868
+ box-shadow: 6px 14px 20px 0px rgba(95, 95, 95, 0.08);
1776
1869
  position: relative;
1777
1870
  width: 100%;
1778
- padding: 20px 20px;
1871
+ padding: 25px 25px;
1779
1872
  box-sizing: border-box;
1873
+ border-radius: 4px;
1780
1874
  }
1781
1875
  #_cbhtml .is-modal.is-modal-full > div:not(.is-modal-overlay),
1782
1876
  .is-ui .is-modal.is-modal-full > div:not(.is-modal-overlay) {
@@ -1820,8 +1914,8 @@ button:focus {
1820
1914
  width: 32px;
1821
1915
  height: 32px;
1822
1916
  position: absolute;
1823
- top: 0px;
1824
- right: 0px;
1917
+ top: 2px;
1918
+ right: 2px;
1825
1919
  box-sizing: border-box;
1826
1920
  padding: 0;
1827
1921
  line-height: 32px;
@@ -1829,6 +1923,11 @@ button:focus {
1829
1923
  color: #545454;
1830
1924
  text-align: center;
1831
1925
  cursor: pointer;
1926
+ box-shadow: none;
1927
+ }
1928
+ #_cbhtml .is-modal div.is-modal-footer button,
1929
+ .is-ui .is-modal div.is-modal-footer button {
1930
+ margin-left: 2px;
1832
1931
  }
1833
1932
  #_cbhtml .is-modal.fileselect, #_cbhtml .is-modal.imageselect, #_cbhtml .is-modal.videoselect,
1834
1933
  .is-ui .is-modal.fileselect,
@@ -1872,7 +1971,7 @@ button:focus {
1872
1971
  #_cbhtml .is-modal.viewconfig div.is-modal-content,
1873
1972
  .is-ui .is-modal.viewconfig div.is-modal-content {
1874
1973
  max-width: 700px;
1875
- padding: 5px 17px 17px 17px;
1974
+ padding: 5px 25px 25px 25px;
1876
1975
  }
1877
1976
  #_cbhtml .is-modal.viewhtml, #_cbhtml .is-modal.viewhtmlformatted, #_cbhtml .is-modal.viewhtmlnormal,
1878
1977
  .is-ui .is-modal.viewhtml,
@@ -1908,7 +2007,7 @@ button:focus {
1908
2007
  .is-ui .is-modal.grideditor {
1909
2008
  background: #fff;
1910
2009
  width: 96px;
1911
- height: 475px;
2010
+ height: 488px;
1912
2011
  top: 33%;
1913
2012
  left: auto;
1914
2013
  right: 15%;
@@ -1927,6 +2026,7 @@ button:focus {
1927
2026
  height: 20px;
1928
2027
  line-height: 20px;
1929
2028
  font-size: 10px;
2029
+ margin: 2px;
1930
2030
  }
1931
2031
  #_cbhtml .is-modal.grideditor.active,
1932
2032
  .is-ui .is-modal.grideditor.active {
@@ -1936,13 +2036,14 @@ button:focus {
1936
2036
  .is-ui .is-modal.grideditor > div {
1937
2037
  width: 100%;
1938
2038
  box-sizing: border-box;
1939
- padding: 0;
2039
+ padding: 1px;
1940
2040
  border: none;
1941
2041
  }
1942
2042
  #_cbhtml .is-modal.grideditor button,
1943
2043
  .is-ui .is-modal.grideditor button {
1944
- width: 48px;
2044
+ width: 45px;
1945
2045
  height: 40px;
2046
+ margin: 1px;
1946
2047
  background-color: transparent !important;
1947
2048
  box-shadow: none !important;
1948
2049
  }
@@ -1959,6 +2060,7 @@ button:focus {
1959
2060
  width: 100%;
1960
2061
  border-top: #f2f2f2 1px solid;
1961
2062
  display: flex;
2063
+ padding: 1px;
1962
2064
  }
1963
2065
  #_cbhtml .is-modal.pickgradientcolor div.is-modal-content,
1964
2066
  .is-ui .is-modal.pickgradientcolor div.is-modal-content {
@@ -2169,6 +2271,7 @@ button:focus {
2169
2271
  .is-ui .is-modal.buttoneditor #divMyButtonList a {
2170
2272
  position: relative;
2171
2273
  margin: 10px 20px 20px 0;
2274
+ outline-offset: 2px;
2172
2275
  }
2173
2276
  #_cbhtml .is-modal.buttoneditor #divMyButtonList a:hover .is-button-remove,
2174
2277
  .is-ui .is-modal.buttoneditor #divMyButtonList a:hover .is-button-remove {
@@ -2192,11 +2295,18 @@ button:focus {
2192
2295
  .is-ui .is-modal.buttoneditor #divButtonTemplateList a {
2193
2296
  position: relative;
2194
2297
  margin: 10px 20px 20px 0;
2298
+ outline-offset: 2px;
2195
2299
  }
2196
2300
  #_cbhtml .is-modal.columnsettings .is-modal-bar,
2197
2301
  .is-ui .is-modal.columnsettings .is-modal-bar {
2198
2302
  background-color: #fafafa;
2199
2303
  }
2304
+ #_cbhtml .is-modal.columnsettings .is-modal-content,
2305
+ .is-ui .is-modal.columnsettings .is-modal-content {
2306
+ width: 380px !important;
2307
+ min-height: 435px;
2308
+ padding: 0px !important;
2309
+ }
2200
2310
  #_cbhtml .is-modal.columnsettings.active,
2201
2311
  .is-ui .is-modal.columnsettings.active {
2202
2312
  display: flex;
@@ -2268,7 +2378,7 @@ button:focus {
2268
2378
  .is-ui .is-modal.columnsettings .div-content-padding button,
2269
2379
  .is-ui .is-modal.columnsettings .div-content-height button {
2270
2380
  width: 40px;
2271
- margin-right: 1px;
2381
+ border: transparent 1px solid;
2272
2382
  }
2273
2383
  #_cbhtml .is-modal.columnsettings .div-content-padding button svg,
2274
2384
  #_cbhtml .is-modal.columnsettings .div-content-height button svg,
@@ -2285,6 +2395,7 @@ button:focus {
2285
2395
  width: 75px;
2286
2396
  padding-left: 15px;
2287
2397
  padding-right: 15px;
2398
+ border: transparent 1px solid;
2288
2399
  }
2289
2400
  #_cbhtml .is-modal.columnsettings .div-content-padding-pos button svg,
2290
2401
  .is-ui .is-modal.columnsettings .div-content-padding-pos button svg {
@@ -2297,6 +2408,7 @@ button:focus {
2297
2408
  #_cbhtml .is-modal.columnsettings .div-content-textcolor button,
2298
2409
  .is-ui .is-modal.columnsettings .div-content-textcolor button {
2299
2410
  width: 40px;
2411
+ border: transparent 1px solid;
2300
2412
  }
2301
2413
  #_cbhtml .is-modal.columnsettings .div-content-textcolor button[data-command=dark],
2302
2414
  .is-ui .is-modal.columnsettings .div-content-textcolor button[data-command=dark] {
@@ -2320,7 +2432,9 @@ button:focus {
2320
2432
  }
2321
2433
  #_cbhtml .is-modal.columnsettings .div-content-position button,
2322
2434
  .is-ui .is-modal.columnsettings .div-content-position button {
2323
- width: 40px;
2435
+ width: 30px;
2436
+ height: 36px;
2437
+ border: transparent 1px solid;
2324
2438
  }
2325
2439
  #_cbhtml .is-modal.columnsettings .div-content-position button svg,
2326
2440
  .is-ui .is-modal.columnsettings .div-content-position button svg {
@@ -2333,6 +2447,8 @@ button:focus {
2333
2447
  #_cbhtml .is-modal.columnsettings .image-src > button,
2334
2448
  .is-ui .is-modal.columnsettings .image-src > button {
2335
2449
  background: transparent !important;
2450
+ width: 50px;
2451
+ height: 43px;
2336
2452
  }
2337
2453
  #_cbhtml .is-modal.columnsettings #divCellClick p,
2338
2454
  .is-ui .is-modal.columnsettings #divCellClick p {
@@ -2350,6 +2466,18 @@ button:focus {
2350
2466
  #_cbhtml .is-modal.imagesource .image-src > button,
2351
2467
  .is-ui .is-modal.imagesource .image-src > button {
2352
2468
  background: transparent !important;
2469
+ width: 50px;
2470
+ height: 43px;
2471
+ }
2472
+ #_cbhtml .is-modal.imagesource .input-select,
2473
+ .is-ui .is-modal.imagesource .input-select {
2474
+ width: 50px;
2475
+ height: 43px;
2476
+ }
2477
+ #_cbhtml .is-modal.imagesource .input-upload,
2478
+ .is-ui .is-modal.imagesource .input-upload {
2479
+ width: 50px;
2480
+ height: 43px;
2353
2481
  }
2354
2482
  #_cbhtml .is-modal.pickfontfamily .is-modal-bar,
2355
2483
  .is-ui .is-modal.pickfontfamily .is-modal-bar {
@@ -2397,6 +2525,10 @@ button:focus {
2397
2525
  .is-ui .is-modal.insertimage .is-drop-area:hover {
2398
2526
  background-color: #f7f7f7;
2399
2527
  }
2528
+ #_cbhtml .is-modal.insertimage .is-drop-area:focus-within,
2529
+ .is-ui .is-modal.insertimage .is-drop-area:focus-within {
2530
+ border-color: #3e93f7;
2531
+ }
2400
2532
  #_cbhtml .is-modal.insertimage .is-drop-area.image-dropping,
2401
2533
  .is-ui .is-modal.insertimage .is-drop-area.image-dropping {
2402
2534
  background-color: #f7f7f7;
@@ -2431,8 +2563,8 @@ button:focus {
2431
2563
  display: inline-block;
2432
2564
  margin: 10px;
2433
2565
  }
2434
- #_cbhtml .is-modal.insertimage .is-preview-area div i,
2435
- .is-ui .is-modal.insertimage .is-preview-area div i {
2566
+ #_cbhtml .is-modal.insertimage .is-preview-area div button,
2567
+ .is-ui .is-modal.insertimage .is-preview-area div button {
2436
2568
  position: absolute;
2437
2569
  top: 0;
2438
2570
  right: 0;
@@ -2460,6 +2592,8 @@ button:focus {
2460
2592
  #_cbhtml .is-modal.insertimage .image-src > button,
2461
2593
  .is-ui .is-modal.insertimage .image-src > button {
2462
2594
  background: transparent !important;
2595
+ width: 50px;
2596
+ height: 43px;
2463
2597
  }
2464
2598
  #_cbhtml .is-modal.imageedit div.is-modal-content,
2465
2599
  .is-ui .is-modal.imageedit div.is-modal-content {
@@ -2484,9 +2618,16 @@ button:focus {
2484
2618
  .is-ui .is-modal.imagelink .image-src {
2485
2619
  display: flex;
2486
2620
  }
2487
- #_cbhtml .is-modal.imagelink .image-src > button,
2488
- .is-ui .is-modal.imagelink .image-src > button {
2621
+ #_cbhtml .is-modal.imagelink .image-src button,
2622
+ .is-ui .is-modal.imagelink .image-src button {
2489
2623
  background: transparent !important;
2624
+ width: 50px;
2625
+ height: 43px;
2626
+ }
2627
+ #_cbhtml .is-modal.imagelink .image-src .image-larger1,
2628
+ .is-ui .is-modal.imagelink .image-src .image-larger1 {
2629
+ width: 50px;
2630
+ height: 43px;
2490
2631
  }
2491
2632
  #_cbhtml .is-modal.imagelink .image-link,
2492
2633
  .is-ui .is-modal.imagelink .image-link {
@@ -2495,6 +2636,13 @@ button:focus {
2495
2636
  #_cbhtml .is-modal.imagelink .image-link button,
2496
2637
  .is-ui .is-modal.imagelink .image-link button {
2497
2638
  background: transparent !important;
2639
+ width: 50px;
2640
+ height: 43px;
2641
+ }
2642
+ #_cbhtml .is-modal.imagelink .image-link .image-larger2,
2643
+ .is-ui .is-modal.imagelink .image-link .image-larger2 {
2644
+ width: 50px;
2645
+ height: 43px;
2498
2646
  }
2499
2647
  #_cbhtml .is-modal.iframelink div.is-modal-content,
2500
2648
  .is-ui .is-modal.iframelink div.is-modal-content {
@@ -2507,7 +2655,7 @@ button:focus {
2507
2655
  #_cbhtml .is-modal.videolink .video-url,
2508
2656
  .is-ui .is-modal.videolink .video-url {
2509
2657
  position: relative;
2510
- height: 50px;
2658
+ height: 43px;
2511
2659
  display: flex;
2512
2660
  flex-direction: row;
2513
2661
  }
@@ -2521,12 +2669,19 @@ button:focus {
2521
2669
  }
2522
2670
  #_cbhtml .is-modal.videolink .input-select,
2523
2671
  .is-ui .is-modal.videolink .input-select {
2524
- width: 60px;
2672
+ width: 50px;
2673
+ height: 43px;
2525
2674
  font-size: 20px;
2526
- height: 50px;
2675
+ height: 43px;
2676
+ width: 50px;
2527
2677
  border-left: none;
2528
2678
  background: transparent;
2529
2679
  }
2680
+ #_cbhtml .is-modal.videolink .input-upload,
2681
+ .is-ui .is-modal.videolink .input-upload {
2682
+ width: 50px;
2683
+ height: 43px;
2684
+ }
2530
2685
  #_cbhtml .is-modal.createlink label,
2531
2686
  .is-ui .is-modal.createlink label {
2532
2687
  font-size: 14px;
@@ -2539,7 +2694,7 @@ button:focus {
2539
2694
  #_cbhtml .is-modal.createlink .link-src,
2540
2695
  .is-ui .is-modal.createlink .link-src {
2541
2696
  position: relative;
2542
- height: 50px;
2697
+ height: 43px;
2543
2698
  display: flex;
2544
2699
  flex-direction: row;
2545
2700
  }
@@ -2555,7 +2710,8 @@ button:focus {
2555
2710
  .is-ui .is-modal.createlink .input-select {
2556
2711
  width: 60px;
2557
2712
  font-size: 20px;
2558
- height: 50px;
2713
+ height: 43px;
2714
+ width: 50px;
2559
2715
  border-left: none;
2560
2716
  background: transparent;
2561
2717
  }
@@ -2563,15 +2719,19 @@ button:focus {
2563
2719
  .is-ui .is-modal.viewconfig .div-themes {
2564
2720
  display: flex;
2565
2721
  flex-flow: wrap;
2566
- width: 189px;
2567
- border: rgba(255, 255, 255, 0.15) 1px solid;
2722
+ width: 198px;
2568
2723
  box-sizing: content-box;
2569
2724
  }
2570
2725
  #_cbhtml .is-modal.viewconfig button.input-setcolor,
2571
2726
  .is-ui .is-modal.viewconfig button.input-setcolor {
2572
2727
  width: 27px;
2573
2728
  height: 25px;
2574
- border: transparent 1px solid;
2729
+ border: transparent 2px solid;
2730
+ border-radius: 0px;
2731
+ }
2732
+ #_cbhtml .is-modal.viewconfig button.input-setcolor:focus,
2733
+ .is-ui .is-modal.viewconfig button.input-setcolor:focus {
2734
+ outline-offset: -2px;
2575
2735
  }
2576
2736
  #_cbhtml .is-tool#divImageTool, #_cbhtml .is-tool.is-video-tool, #_cbhtml .is-tool.is-iframe-tool,
2577
2737
  .is-ui .is-tool#divImageTool,
@@ -2737,6 +2897,7 @@ button:focus {
2737
2897
  font-size: 13px;
2738
2898
  letter-spacing: 1px;
2739
2899
  z-index: 10003;
2900
+ outline: none;
2740
2901
  }
2741
2902
  #_cbhtml .is-side.active,
2742
2903
  .is-ui .is-side.active {
@@ -2769,7 +2930,7 @@ button:focus {
2769
2930
  background: #f7f7f7;
2770
2931
  box-shadow: 0px 3px 6px -6px rgba(0, 0, 0, 0.32);
2771
2932
  width: auto;
2772
- height: 45px;
2933
+ height: 43px;
2773
2934
  border: none;
2774
2935
  font-family: sans-serif;
2775
2936
  font-size: 12px;
@@ -2785,7 +2946,7 @@ button:focus {
2785
2946
  text-transform: none;
2786
2947
  text-align: center;
2787
2948
  position: relative;
2788
- border-radius: 0;
2949
+ border-radius: 1px;
2789
2950
  user-select: none;
2790
2951
  -moz-user-select: none;
2791
2952
  -khtml-user-select: none;
@@ -2812,7 +2973,8 @@ button:focus {
2812
2973
  #_cbhtml .is-btn:focus,
2813
2974
  .is-ui button:focus,
2814
2975
  .is-ui .is-btn:focus {
2815
- outline: none;
2976
+ outline: #3e93f7 2px solid;
2977
+ outline-offset: 0;
2816
2978
  }
2817
2979
  #_cbhtml button.fullwidth,
2818
2980
  #_cbhtml .is-btn.fullwidth,
@@ -2825,7 +2987,7 @@ button:focus {
2825
2987
  .is-ui button.classic,
2826
2988
  .is-ui .is-btn.classic {
2827
2989
  width: 100%;
2828
- height: 50px;
2990
+ height: 43px;
2829
2991
  display: block;
2830
2992
  background: #f7f7f7;
2831
2993
  box-shadow: 0px 3px 6px -6px rgba(0, 0, 0, 0.32);
@@ -2842,10 +3004,10 @@ button:focus {
2842
3004
  .is-ui .is-btn.classic-primary {
2843
3005
  display: inline-block;
2844
3006
  width: auto;
2845
- height: 50px;
2846
- padding-left: 30px;
2847
- padding-right: 30px;
2848
- min-width: 135px;
3007
+ height: 43px;
3008
+ padding-left: 25px;
3009
+ padding-right: 25px;
3010
+ min-width: 110px;
2849
3011
  background: #f7f7f7;
2850
3012
  border: transparent 1px solid;
2851
3013
  box-shadow: 0px 3px 6px -6px rgba(0, 0, 0, 0.32);
@@ -2863,9 +3025,9 @@ button:focus {
2863
3025
  .is-ui .is-btn.classic-secondary {
2864
3026
  display: inline-block;
2865
3027
  width: auto;
2866
- height: 50px;
2867
- padding-left: 30px;
2868
- padding-right: 30px;
3028
+ height: 43px;
3029
+ padding-left: 25px;
3030
+ padding-right: 25px;
2869
3031
  background: transparent;
2870
3032
  border: transparent 1px solid;
2871
3033
  box-shadow: 0px 3px 6px -6px rgba(0, 0, 0, 0.32);
@@ -2877,8 +3039,8 @@ button:focus {
2877
3039
  background: transparent;
2878
3040
  border: transparent 1px solid;
2879
3041
  }
2880
- #_cbhtml textarea,
2881
- .is-ui textarea {
3042
+ #_cbhtml textarea:not(.monaco-mouse-cursor-text),
3043
+ .is-ui textarea:not(.monaco-mouse-cursor-text) {
2882
3044
  font-family: courier;
2883
3045
  font-size: 15px;
2884
3046
  line-height: 2;
@@ -2889,10 +3051,12 @@ button:focus {
2889
3051
  border: 1px solid rgba(0, 0, 0, 0.06);
2890
3052
  background-color: #fafafa;
2891
3053
  color: #121212;
3054
+ border-radius: 1px;
2892
3055
  }
2893
- #_cbhtml textarea:focus,
2894
- .is-ui textarea:focus {
2895
- outline: none;
3056
+ #_cbhtml textarea:not(.monaco-mouse-cursor-text):focus,
3057
+ .is-ui textarea:not(.monaco-mouse-cursor-text):focus {
3058
+ outline: #3e93f7 2px solid;
3059
+ outline-offset: 0;
2896
3060
  box-shadow: none;
2897
3061
  }
2898
3062
  #_cbhtml select,
@@ -2912,6 +3076,7 @@ button:focus {
2912
3076
  -moz-appearance: menulist;
2913
3077
  appearance: menulist;
2914
3078
  padding: 0 5px;
3079
+ border-radius: 1px;
2915
3080
  }
2916
3081
  #_cbhtml select option,
2917
3082
  .is-ui select option {
@@ -2919,13 +3084,14 @@ button:focus {
2919
3084
  }
2920
3085
  #_cbhtml select:focus,
2921
3086
  .is-ui select:focus {
2922
- outline: none;
3087
+ outline: #3e93f7 2px solid;
3088
+ outline-offset: 0;
2923
3089
  box-shadow: none;
2924
3090
  }
2925
3091
  #_cbhtml input[type=text],
2926
3092
  .is-ui input[type=text] {
2927
3093
  width: 100%;
2928
- height: 50px;
3094
+ height: 43px;
2929
3095
  box-sizing: border-box;
2930
3096
  margin: 0;
2931
3097
  font-family: sans-serif;
@@ -2937,12 +3103,13 @@ button:focus {
2937
3103
  display: inline-block;
2938
3104
  border: none;
2939
3105
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
2940
- border-radius: 0;
3106
+ border-radius: 1px;
2941
3107
  background-color: #fafafa;
2942
3108
  }
2943
3109
  #_cbhtml input[type=text]:focus,
2944
3110
  .is-ui input[type=text]:focus {
2945
- outline: none;
3111
+ outline: #3e93f7 2px solid;
3112
+ outline-offset: 0;
2946
3113
  box-shadow: none;
2947
3114
  }
2948
3115
  #_cbhtml input[type=text] [type=checkbox], #_cbhtml input[type=text] [type=radio],
@@ -2953,6 +3120,10 @@ button:focus {
2953
3120
  margin-top: 0;
2954
3121
  margin-bottom: 0;
2955
3122
  }
3123
+ #_cbhtml input[type=radio]:focus,
3124
+ .is-ui input[type=radio]:focus {
3125
+ outline: #3e93f7 1px solid;
3126
+ }
2956
3127
  #_cbhtml label,
2957
3128
  .is-ui label {
2958
3129
  font-size: 13px;
@@ -2987,6 +3158,11 @@ button:focus {
2987
3158
  .is-ui .is-rangeslider:hover {
2988
3159
  opacity: 1;
2989
3160
  }
3161
+ #_cbhtml .is-rangeslider:focus,
3162
+ .is-ui .is-rangeslider:focus {
3163
+ outline: #3e93f7 2px solid;
3164
+ outline-offset: 2px;
3165
+ }
2990
3166
  #_cbhtml .is-rangeslider::-webkit-slider-thumb,
2991
3167
  .is-ui .is-rangeslider::-webkit-slider-thumb {
2992
3168
  -webkit-appearance: none;
@@ -3149,6 +3325,7 @@ button:focus {
3149
3325
  margin: 0 15px 13px 0;
3150
3326
  text-decoration: none;
3151
3327
  transition: box-shadow ease 0.3s;
3328
+ outline: none;
3152
3329
  }
3153
3330
  #_cbhtml .is-tabs a.active,
3154
3331
  .is-ui .is-tabs a.active {
@@ -3157,40 +3334,60 @@ button:focus {
3157
3334
  cursor: default;
3158
3335
  border-bottom: #595959 1px solid;
3159
3336
  }
3337
+ #_cbhtml .is-tabs a:focus,
3338
+ .is-ui .is-tabs a:focus {
3339
+ outline: none;
3340
+ background: rgba(0, 0, 0, 0.05);
3341
+ }
3160
3342
  #_cbhtml .is-tab-content,
3161
3343
  .is-ui .is-tab-content {
3162
3344
  display: none;
3163
3345
  padding: 20px;
3164
3346
  flex-direction: column;
3165
3347
  }
3348
+ #_cbhtml .is-tab-content[tabindex="-1"]:focus,
3349
+ .is-ui .is-tab-content[tabindex="-1"]:focus {
3350
+ outline: none;
3351
+ }
3166
3352
  #_cbhtml .is-tabs-more,
3167
3353
  .is-ui .is-tabs-more {
3168
3354
  box-sizing: border-box;
3169
3355
  width: 150px;
3170
3356
  position: absolute;
3357
+ list-style: none;
3358
+ padding: 0;
3359
+ margin: 0;
3171
3360
  top: 0;
3172
3361
  left: 0;
3173
3362
  background: #fff;
3174
3363
  display: none;
3175
3364
  z-index: 1;
3365
+ border: 1px solid #f2f2f2;
3366
+ box-shadow: 3px 4px 9px 0px rgba(0, 0, 0, 0.06);
3367
+ outline: none;
3368
+ }
3369
+ #_cbhtml .is-tabs-more li,
3370
+ .is-ui .is-tabs-more li {
3371
+ display: flex;
3372
+ align-items: center;
3373
+ overflow: hidden;
3374
+ text-overflow: ellipsis;
3375
+ white-space: nowrap;
3176
3376
  font-family: sans-serif;
3177
3377
  font-size: 11px;
3178
3378
  text-transform: uppercase;
3179
3379
  letter-spacing: 1px;
3180
- border: 1px solid #f2f2f2;
3181
- box-shadow: 3px 4px 9px 0px rgba(0, 0, 0, 0.06);
3182
- }
3183
- #_cbhtml .is-tabs-more > a,
3184
- .is-ui .is-tabs-more > a {
3185
- display: block;
3186
3380
  color: #4a4a4a;
3187
3381
  padding: 10px;
3188
3382
  text-decoration: none;
3189
3383
  text-align: center;
3384
+ cursor: pointer;
3385
+ outline: none;
3190
3386
  }
3191
- #_cbhtml .is-tabs-more > a:hover, #_cbhtml .is-tabs-more > a.active,
3192
- .is-ui .is-tabs-more > a:hover,
3193
- .is-ui .is-tabs-more > a.active {
3387
+ #_cbhtml .is-tabs-more li:hover, #_cbhtml .is-tabs-more li:focus, #_cbhtml .is-tabs-more li.active,
3388
+ .is-ui .is-tabs-more li:hover,
3389
+ .is-ui .is-tabs-more li:focus,
3390
+ .is-ui .is-tabs-more li.active {
3194
3391
  background: whitesmoke;
3195
3392
  }
3196
3393
  #_cbhtml #divSnippetList,
@@ -3271,6 +3468,7 @@ button:focus {
3271
3468
  overflow-x: hidden;
3272
3469
  text-align: center;
3273
3470
  border-top: transparent 40px solid !important;
3471
+ outline: none;
3274
3472
  }
3275
3473
  #_cbhtml .is-design-list > div,
3276
3474
  .is-ui .is-design-list > div {
@@ -3378,6 +3576,105 @@ button:focus {
3378
3576
  .is-ui .is-selectbox-options > div.selected {
3379
3577
  background: whitesmoke;
3380
3578
  }
3579
+ #_cbhtml .is-dropdown,
3580
+ .is-ui .is-dropdown {
3581
+ width: 100%;
3582
+ position: relative;
3583
+ cursor: pointer;
3584
+ }
3585
+ #_cbhtml .is-dropdown .dropdown-toggle,
3586
+ .is-ui .is-dropdown .dropdown-toggle {
3587
+ width: 100%;
3588
+ height: 40px;
3589
+ box-sizing: border-box;
3590
+ padding: 0 0 0 15px;
3591
+ color: #000;
3592
+ background: #f0f0f0;
3593
+ box-shadow: none;
3594
+ font-size: 14px;
3595
+ cursor: pointer;
3596
+ appearance: none;
3597
+ display: flex;
3598
+ justify-content: flex-start;
3599
+ border-radius: 2px;
3600
+ position: relative;
3601
+ overflow: hidden;
3602
+ text-overflow: ellipsis;
3603
+ white-space: nowrap;
3604
+ cursor: pointer;
3605
+ }
3606
+ #_cbhtml .is-dropdown .dropdown-toggle:hover,
3607
+ .is-ui .is-dropdown .dropdown-toggle:hover {
3608
+ background: #f2f2f2;
3609
+ }
3610
+ #_cbhtml .is-dropdown .dropdown-toggle svg,
3611
+ .is-ui .is-dropdown .dropdown-toggle svg {
3612
+ fill: #000;
3613
+ }
3614
+ #_cbhtml .is-dropdown .dropdown-toggle.no-outline,
3615
+ .is-ui .is-dropdown .dropdown-toggle.no-outline {
3616
+ outline: none !important;
3617
+ }
3618
+ #_cbhtml .is-dropdown .dropdown-toggle::after,
3619
+ .is-ui .is-dropdown .dropdown-toggle::after {
3620
+ content: "";
3621
+ border-width: 5px;
3622
+ border-radius: 3px;
3623
+ border-style: solid;
3624
+ border-color: transparent;
3625
+ border-top-color: #000;
3626
+ position: absolute;
3627
+ right: 12px;
3628
+ top: calc(50% + 3px);
3629
+ transform: translateY(-50%);
3630
+ }
3631
+ #_cbhtml .is-dropdown .dropdown-toggle.active::after,
3632
+ .is-ui .is-dropdown .dropdown-toggle.active::after {
3633
+ border-color: transparent;
3634
+ border-bottom-color: #000;
3635
+ top: calc(50% - 3px);
3636
+ }
3637
+ #_cbhtml .is-dropdown .dropdown-menu,
3638
+ .is-ui .is-dropdown .dropdown-menu {
3639
+ width: 100%;
3640
+ height: 250px;
3641
+ border: #e8e8e8 1px solid;
3642
+ background-color: #fff;
3643
+ list-style: none;
3644
+ padding: 0;
3645
+ margin: 0;
3646
+ border-radius: 2px;
3647
+ display: none;
3648
+ overflow-y: auto;
3649
+ overflow-x: hidden;
3650
+ }
3651
+ #_cbhtml .is-dropdown .dropdown-menu li,
3652
+ .is-ui .is-dropdown .dropdown-menu li {
3653
+ background-color: #fff;
3654
+ height: 38px;
3655
+ display: flex;
3656
+ align-items: center;
3657
+ overflow: hidden;
3658
+ text-overflow: ellipsis;
3659
+ white-space: nowrap;
3660
+ color: #000;
3661
+ padding: 0 0 0 15px;
3662
+ font-size: 13px;
3663
+ }
3664
+ #_cbhtml .is-dropdown .dropdown-menu li:hover, #_cbhtml .is-dropdown .dropdown-menu li:focus,
3665
+ .is-ui .is-dropdown .dropdown-menu li:hover,
3666
+ .is-ui .is-dropdown .dropdown-menu li:focus {
3667
+ outline: none;
3668
+ background: whitesmoke;
3669
+ }
3670
+ #_cbhtml .is-dropdown .dropdown-menu li.selected,
3671
+ .is-ui .is-dropdown .dropdown-menu li.selected {
3672
+ background: whitesmoke;
3673
+ }
3674
+ #_cbhtml .is-dropdown .dropdown-menu[aria-expanded=true],
3675
+ .is-ui .is-dropdown .dropdown-menu[aria-expanded=true] {
3676
+ display: block;
3677
+ }
3381
3678
  #_cbhtml .elementstyles,
3382
3679
  .is-ui .elementstyles {
3383
3680
  width: 300px;
@@ -3452,12 +3749,15 @@ button:focus {
3452
3749
  border-radius: 0;
3453
3750
  height: 35px;
3454
3751
  font-size: 13px;
3752
+ margin-right: 2px;
3753
+ border-radius: 1px;
3455
3754
  }
3456
3755
  #_cbhtml .elementstyles .is-settings select,
3457
3756
  .is-ui .elementstyles .is-settings select {
3458
3757
  border-radius: 0;
3459
3758
  height: 35px;
3460
3759
  margin: 0;
3760
+ border-radius: 1px;
3461
3761
  }
3462
3762
  #_cbhtml .elementstyles #divElementMore,
3463
3763
  .is-ui .elementstyles #divElementMore {
@@ -3503,6 +3803,21 @@ button:focus {
3503
3803
  width: 100%;
3504
3804
  z-index: 1;
3505
3805
  }
3806
+ #_cbhtml .pickgradientcolor .div-gradients button,
3807
+ .is-ui .pickgradientcolor .div-gradients button {
3808
+ width: 35px;
3809
+ height: 35px;
3810
+ margin: 0;
3811
+ padding: 0;
3812
+ border: none;
3813
+ transition: none;
3814
+ outline: none;
3815
+ border-radius: 0px;
3816
+ }
3817
+ #_cbhtml .pickgradientcolor .div-gradients button:focus,
3818
+ .is-ui .pickgradientcolor .div-gradients button:focus {
3819
+ border: white 2px solid;
3820
+ }
3506
3821
  #_cbhtml .color-swatch,
3507
3822
  .is-ui .color-swatch {
3508
3823
  width: 100%;
@@ -3525,6 +3840,19 @@ button:focus {
3525
3840
  cursor: pointer;
3526
3841
  transition: all ease 0.3s;
3527
3842
  }
3843
+ #_cbhtml .color-swatch [data-color],
3844
+ .is-ui .color-swatch [data-color] {
3845
+ width: 35px;
3846
+ height: 31.5px;
3847
+ margin: 0;
3848
+ transition: none;
3849
+ outline: none;
3850
+ border-radius: 0px;
3851
+ }
3852
+ #_cbhtml .color-swatch [data-color]:focus,
3853
+ .is-ui .color-swatch [data-color]:focus {
3854
+ border: rgba(255, 255, 255, 0.7) 2px solid;
3855
+ }
3528
3856
  #_cbhtml .color-gradient,
3529
3857
  .is-ui .color-gradient {
3530
3858
  width: 100%;
@@ -3547,18 +3875,48 @@ button:focus {
3547
3875
  cursor: pointer;
3548
3876
  transition: all ease 0.3s;
3549
3877
  }
3878
+ #_cbhtml .color-gradient [data-color],
3879
+ .is-ui .color-gradient [data-color] {
3880
+ width: 35px;
3881
+ height: 31.5px;
3882
+ margin: 0;
3883
+ transition: none;
3884
+ outline: none;
3885
+ }
3886
+ #_cbhtml .color-gradient [data-color]:focus,
3887
+ .is-ui .color-gradient [data-color]:focus {
3888
+ border: rgba(255, 255, 255, 0.7) 2px solid;
3889
+ }
3550
3890
  #_cbhtml .pickcolor button,
3551
3891
  .is-ui .pickcolor button {
3552
3892
  float: left;
3553
3893
  width: 45px;
3554
3894
  height: 45px;
3555
3895
  cursor: pointer;
3896
+ border-radius: 0px;
3897
+ }
3898
+ #_cbhtml .pickcolor button:focus,
3899
+ .is-ui .pickcolor button:focus {
3900
+ outline: #3e93f7 2px solid;
3901
+ outline-offset: -2px;
3902
+ }
3903
+ #_cbhtml .pickcolor input[type=text]:focus,
3904
+ .is-ui .pickcolor input[type=text]:focus {
3905
+ outline: #3e93f7 2px solid;
3906
+ outline-offset: -2px;
3556
3907
  }
3557
3908
  #_cbhtml .pickcolor .color-default button,
3558
3909
  .is-ui .pickcolor .color-default button {
3559
3910
  width: 35px;
3560
3911
  height: 35px;
3561
3912
  border: transparent 1px solid;
3913
+ margin: 0px;
3914
+ transition: none;
3915
+ outline: none;
3916
+ }
3917
+ #_cbhtml .pickcolor .color-default button:focus,
3918
+ .is-ui .pickcolor .color-default button:focus {
3919
+ border: rgba(255, 255, 255, 0.7) 2px solid;
3562
3920
  }
3563
3921
  #_cbhtml .pickcolor button.clear,
3564
3922
  .is-ui .pickcolor button.clear {
@@ -3622,11 +3980,12 @@ button:focus {
3622
3980
  text-align: c enter;
3623
3981
  line-height: unset;
3624
3982
  position: relative;
3625
- border-radius: 0;
3983
+ border-radius: 1px;
3626
3984
  transition: all ease 0.3s;
3627
3985
  }
3628
3986
  .is-tool button:focus {
3629
- outline: none;
3987
+ outline: none !important;
3988
+ outline-offset: 0;
3630
3989
  }
3631
3990
  .is-tool button svg {
3632
3991
  fill: #000;
@@ -4506,6 +4865,7 @@ button:focus {
4506
4865
  opacity: 0;
4507
4866
  transform: scale(0.7) translateZ(150px);
4508
4867
  transition: all 450ms ease-in-out;
4868
+ outline: none;
4509
4869
  }
4510
4870
  .is-ui .is-lightbox.light {
4511
4871
  background-color: rgba(255, 255, 255, 0.97);
@@ -4561,7 +4921,6 @@ button:focus {
4561
4921
  background: none;
4562
4922
  border: none;
4563
4923
  cursor: pointer;
4564
- outline: none;
4565
4924
  box-shadow: none;
4566
4925
  }
4567
4926
  .is-ui .is-lightbox .cmd-lightbox-close svg {