canvasxpress-cli 41.6.61 → 41.7.21
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/src/canvasXpress.css +521 -697
- package/src/canvasXpress.js +14900 -15881
package/src/canvasXpress.css
CHANGED
|
@@ -2,8 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
/*
|
|
4
4
|
* Favorite Colors
|
|
5
|
-
* rgb(51,
|
|
6
|
-
* rgb(
|
|
5
|
+
* rgb(51, 122, 183) - #337ab7
|
|
6
|
+
* rgb(76, 159, 224) - #4c9fe0
|
|
7
|
+
* rgb(83, 105, 255) - #5369ff
|
|
7
8
|
*/
|
|
8
9
|
|
|
9
10
|
/*
|
|
@@ -741,749 +742,504 @@ span.CanvasXpressBin::selection {
|
|
|
741
742
|
margin: 0px !important;
|
|
742
743
|
}
|
|
743
744
|
|
|
745
|
+
/* BEGIN OF CUSTOMIZER CSS */
|
|
746
|
+
/* https://cssgrid-generator.netlify.app/ */
|
|
747
|
+
|
|
744
748
|
/*
|
|
745
|
-
*
|
|
749
|
+
* CanvasXpress Customizer
|
|
746
750
|
*/
|
|
747
751
|
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
border: none;
|
|
752
|
+
svg {
|
|
753
|
+
-webkit-touch-callout: none;
|
|
754
|
+
/* iOS Safari */
|
|
755
|
+
-webkit-user-select: none;
|
|
756
|
+
/* Safari */
|
|
757
|
+
-khtml-user-select: none;
|
|
758
|
+
/* Konqueror HTML */
|
|
759
|
+
-moz-user-select: none;
|
|
760
|
+
/* Old versions of Firefox */
|
|
761
|
+
-ms-user-select: none;
|
|
762
|
+
/* Internet Explorer/Edge */
|
|
763
|
+
user-select: none;
|
|
764
|
+
/* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
|
|
762
765
|
}
|
|
763
766
|
|
|
764
|
-
|
|
765
|
-
* Customizer Left Panel
|
|
766
|
-
*/
|
|
767
|
-
|
|
768
|
-
div.CanvasXpressCustomizerLeftPanel {
|
|
769
|
-
border-right: 1px solid rgb(83, 105, 255) !important;
|
|
770
|
-
background-color: rgba(255, 255, 255, 0.95);
|
|
771
|
-
float: left;
|
|
767
|
+
.customizerPanelLeft {
|
|
772
768
|
display: grid;
|
|
769
|
+
grid-template-columns: 1fr;
|
|
770
|
+
grid-template-rows: 1fr 8fr 1fr;
|
|
771
|
+
grid-column-gap: 0px;
|
|
772
|
+
grid-row-gap: 0px;
|
|
773
|
+
position: fixed;
|
|
774
|
+
z-index: 10001;
|
|
775
|
+
/*height: calc(100% - 5px);*/
|
|
776
|
+
background-color: rgb(255,255,255);
|
|
777
|
+
font-family: arial, tahoma, sans-serif;
|
|
778
|
+
font-weight: normal;
|
|
773
779
|
}
|
|
774
780
|
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
border
|
|
779
|
-
border-
|
|
780
|
-
color: rgb(34, 34, 34);
|
|
781
|
-
cursor: pointer;
|
|
782
|
-
display: block;
|
|
783
|
-
font: normal 12px arial, tahoma, sans-serif;
|
|
784
|
-
line-height: 24px;
|
|
785
|
-
list-style: none;
|
|
786
|
-
margin: 5px;
|
|
787
|
-
display: flex;
|
|
788
|
-
align-items: center;
|
|
789
|
-
outline-style: none;
|
|
790
|
-
outline-width: 0px;
|
|
791
|
-
position: relative;
|
|
792
|
-
text-decoration: none !important;
|
|
793
|
-
white-space: nowrap;
|
|
794
|
-
border-radius: 5px;
|
|
781
|
+
.customizerLeftPanelTop {
|
|
782
|
+
grid-area: 1 / 1 / 2 / 2;
|
|
783
|
+
background: rgb(83, 105, 255);
|
|
784
|
+
border: 1px solid rgb(83, 105, 255) !important;
|
|
785
|
+
border-top-left-radius: 10px;
|
|
795
786
|
}
|
|
796
787
|
|
|
797
|
-
|
|
798
|
-
|
|
788
|
+
.customizerLeftPanelMiddle {
|
|
789
|
+
grid-area: 2 / 1 / 3 / 2;
|
|
790
|
+
background: rgba(0,0,0,0);
|
|
799
791
|
}
|
|
800
792
|
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
background:
|
|
804
|
-
border
|
|
793
|
+
.customizerLeftPanelBottom {
|
|
794
|
+
grid-area: 3 / 1 / 4 / 2;
|
|
795
|
+
background: rgb(83, 105, 255);
|
|
796
|
+
border: 1px solid rgb(83, 105, 255) !important;
|
|
797
|
+
border-bottom-left-radius: 10px;
|
|
805
798
|
}
|
|
806
799
|
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
font: normal 12px arial, tahoma, sans-serif;
|
|
814
|
-
height: 24px;
|
|
815
|
-
line-height: 24px;
|
|
816
|
-
list-style: none;
|
|
817
|
-
margin: 0px !important;
|
|
818
|
-
padding: 5px;
|
|
819
|
-
position: absolute;
|
|
820
|
-
vertical-align: top;
|
|
821
|
-
width: 24px;
|
|
822
|
-
white-space: nowrap;
|
|
823
|
-
background: rgba(0, 0, 0, 0) !important;
|
|
824
|
-
box-shadow: 0 0 0px rgba(0, 0, 0, 0) !important;
|
|
800
|
+
.customizerLeftPanelTop .customizerLeftItem:hover svg,
|
|
801
|
+
.customizerLeftPanelTop .customizerLeftItemActive svg,
|
|
802
|
+
.customizerLeftPanelBottom .customizerLeftItem:hover svg,
|
|
803
|
+
.customizerLeftPanelBottom .customizerLeftItemActive svg {
|
|
804
|
+
border: 1px solid rgb(255, 255, 255) !important;
|
|
805
|
+
background: rgba(0,0,0,0);
|
|
825
806
|
}
|
|
826
807
|
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
808
|
+
.customizerRightPanel {
|
|
809
|
+
background: rgba(0,0,0,0);
|
|
810
|
+
border-left: 1px solid rgb(83, 105, 255) !important;
|
|
811
|
+
border-right: 1px solid rgb(83, 105, 255) !important;
|
|
812
|
+
position: absolute;
|
|
813
|
+
z-index: 10000;
|
|
814
|
+
top: 0px;
|
|
815
|
+
font-family: arial, tahoma, sans-serif;
|
|
816
|
+
font-weight: normal;
|
|
836
817
|
}
|
|
837
818
|
|
|
838
819
|
/*
|
|
839
|
-
* Customizer
|
|
820
|
+
* CanvasXpress Customizer Left Items
|
|
840
821
|
*/
|
|
841
822
|
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
div.CanvasXpressCustomizerRightContainer {
|
|
851
|
-
background-color: rgba(255, 255, 255, 0.95);
|
|
823
|
+
.customizerLeftItem,
|
|
824
|
+
.customizerLeftItemActive {
|
|
825
|
+
display: grid;
|
|
826
|
+
grid-template-columns: 1fr;
|
|
827
|
+
grid-template-rows: 1fr 4fr;
|
|
828
|
+
grid-column-gap: 0px;
|
|
829
|
+
grid-row-gap: 0px;
|
|
830
|
+
margin: 5px;
|
|
852
831
|
border: 1px solid rgb(83, 105, 255) !important;
|
|
853
|
-
border-radius:
|
|
854
|
-
|
|
832
|
+
border-radius: 5px;
|
|
833
|
+
align-items: center;
|
|
855
834
|
}
|
|
856
835
|
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
border-radius: 4px;
|
|
861
|
-
margin: 9px 0 0 9px;
|
|
836
|
+
.customizerLeftItem:hover,
|
|
837
|
+
.customizerLeftItemActive {
|
|
838
|
+
background: rgba(83, 105, 255,0.1);
|
|
862
839
|
}
|
|
863
840
|
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
background
|
|
867
|
-
border: 1px solid rgb(83, 105, 255) !important;
|
|
868
|
-
border-radius: 4px;
|
|
869
|
-
color: rgb(34, 34, 34);
|
|
870
|
-
font: normal 12px arial, tahoma, sans-serif;
|
|
871
|
-
list-style: none;
|
|
872
|
-
margin: 10px 0px 0px 10px !important;
|
|
873
|
-
position: relative;
|
|
874
|
-
padding: 2px;
|
|
875
|
-
vertical-align: top;
|
|
876
|
-
white-space: nowrap;
|
|
877
|
-
background: rgba(0, 0, 0, 0) !important;
|
|
878
|
-
box-shadow: 0 0 0px rgba(0, 0, 0, 0) !important;
|
|
841
|
+
.customizerLeftItem:hover svg,
|
|
842
|
+
.customizerLeftItemActive svg {
|
|
843
|
+
background: rgb(255,255,255);
|
|
879
844
|
}
|
|
880
845
|
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
border-top: 1px solid rgb(83, 105, 255) !important;
|
|
884
|
-
color: rgb(34, 34, 34);
|
|
885
|
-
font: normal 12px arial, tahoma, sans-serif;
|
|
886
|
-
line-height: 24px;
|
|
887
|
-
list-style: none;
|
|
846
|
+
.customizerLeftItemTop {
|
|
847
|
+
grid-area: 1 / 1 / 2 / 2;
|
|
888
848
|
margin: auto;
|
|
889
|
-
|
|
890
|
-
outline-width: 0px;
|
|
891
|
-
text-decoration: none;
|
|
892
|
-
white-space: nowrap;
|
|
893
|
-
width: -webkit-fill-available;
|
|
894
|
-
height: -webkit-fill-available;
|
|
895
|
-
display: flex;
|
|
849
|
+
margin-top: 5px;
|
|
896
850
|
}
|
|
897
851
|
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
border: 0px none !important;
|
|
902
|
-
color: rgb(34, 34, 34);
|
|
903
|
-
font: normal 12px arial, tahoma, sans-serif;
|
|
904
|
-
height: 24px;
|
|
905
|
-
line-height: 24px;
|
|
906
|
-
list-style: none;
|
|
907
|
-
margin: 0px !important;
|
|
908
|
-
position: relative;
|
|
909
|
-
padding: 0px;
|
|
910
|
-
vertical-align: top;
|
|
911
|
-
width: 24px;
|
|
912
|
-
white-space: nowrap;
|
|
913
|
-
background: rgba(0, 0, 0, 0) !important;
|
|
914
|
-
box-shadow: 0 0 0px rgba(0, 0, 0, 0) !important;
|
|
852
|
+
.customizerLeftItemBottom {
|
|
853
|
+
grid-area: 2 / 1 / 3 / 2;
|
|
854
|
+
margin: auto;
|
|
915
855
|
}
|
|
916
856
|
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
background-position: center;
|
|
857
|
+
.customizerLeftIcon {
|
|
858
|
+
padding: 5px;
|
|
920
859
|
border: 1px solid rgb(83, 105, 255) !important;
|
|
921
|
-
border-radius:
|
|
922
|
-
color: rgb(34, 34, 34);
|
|
923
|
-
font: normal 12px arial, tahoma, sans-serif;
|
|
924
|
-
height: 24px;
|
|
925
|
-
line-height: 24px;
|
|
926
|
-
list-style: none;
|
|
927
|
-
margin: 0px !important;
|
|
928
|
-
position: relative;
|
|
929
|
-
padding: 0px;
|
|
930
|
-
vertical-align: top;
|
|
931
|
-
width: 24px;
|
|
932
|
-
white-space: nowrap;
|
|
933
|
-
background: rgba(0, 0, 0, 0) !important;
|
|
934
|
-
box-shadow: 0 0 0px rgba(0, 0, 0, 0) !important;
|
|
860
|
+
border-radius: 5px;
|
|
935
861
|
}
|
|
936
862
|
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
line-height: 28px;
|
|
941
|
-
list-style: none;
|
|
942
|
-
white-space: nowrap;
|
|
943
|
-
position: relative;
|
|
944
|
-
height: 28px;
|
|
945
|
-
}
|
|
863
|
+
/*
|
|
864
|
+
* CanvasXpress Customizer Right Items
|
|
865
|
+
*/
|
|
946
866
|
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
867
|
+
.customizerRightItem {
|
|
868
|
+
display: grid;
|
|
869
|
+
grid-template-columns: 1fr;
|
|
870
|
+
grid-template-rows: 3fr 2fr;
|
|
871
|
+
grid-column-gap: 0px;
|
|
872
|
+
grid-row-gap: 0px;
|
|
873
|
+
border: 1px solid rgb(83, 105, 255) !important;
|
|
874
|
+
border-radius: 5px;
|
|
875
|
+
width: 95%;
|
|
953
876
|
}
|
|
954
877
|
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
margin
|
|
878
|
+
.customizerRightItemTop {
|
|
879
|
+
grid-area: 1 / 1 / 2 / 2;
|
|
880
|
+
padding-top: 5px;
|
|
881
|
+
margin: auto;
|
|
959
882
|
}
|
|
960
883
|
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
884
|
+
.customizerRightItemBottom {
|
|
885
|
+
display: grid;
|
|
886
|
+
grid-area: 2 / 1 / 3 / 2;
|
|
887
|
+
margin: auto;
|
|
888
|
+
}
|
|
964
889
|
|
|
965
890
|
/*
|
|
966
|
-
*
|
|
891
|
+
* CanvasXpress Customizer Right Items Comb
|
|
967
892
|
*/
|
|
968
893
|
|
|
969
|
-
|
|
970
|
-
|
|
894
|
+
.customizerRightItemCombo {
|
|
895
|
+
display: grid;
|
|
896
|
+
grid-template-columns: 1fr 5fr;
|
|
897
|
+
grid-template-rows: 2fr 1fr;
|
|
898
|
+
grid-column-gap: 0px;
|
|
899
|
+
grid-row-gap: 0px;
|
|
900
|
+
border-top: 1px solid rgb(83, 105, 255);
|
|
971
901
|
}
|
|
972
902
|
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
outline-style: none;
|
|
981
|
-
outline-width: 0px;
|
|
982
|
-
white-space: nowrap;
|
|
983
|
-
width: -webkit-fill-available;
|
|
984
|
-
height: -webkit-fill-available;
|
|
985
|
-
display: flex;
|
|
903
|
+
.customizerRightItemComboNB {
|
|
904
|
+
display: grid;
|
|
905
|
+
grid-template-columns: 1fr 5fr;
|
|
906
|
+
grid-template-rows: 2fr 1fr;
|
|
907
|
+
grid-column-gap: 0px;
|
|
908
|
+
grid-row-gap: 0px;
|
|
909
|
+
border: none !important;
|
|
986
910
|
}
|
|
987
911
|
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
white-space: nowrap;
|
|
994
|
-
position: relative;
|
|
995
|
-
height: 28px;
|
|
912
|
+
.customizerRightItemComboLeft {
|
|
913
|
+
grid-area: 1 / 1 / 3 / 2;
|
|
914
|
+
display: flex;
|
|
915
|
+
align-items: center;
|
|
916
|
+
justify-content: center;
|
|
996
917
|
}
|
|
997
918
|
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
height: 24px;
|
|
1004
|
-
line-height: 24px;
|
|
1005
|
-
list-style: none;
|
|
1006
|
-
margin: 0px !important;
|
|
1007
|
-
position: relative;
|
|
1008
|
-
padding: 0px;
|
|
1009
|
-
vertical-align: top;
|
|
1010
|
-
width: 24px;
|
|
1011
|
-
white-space: nowrap;
|
|
1012
|
-
background: rgba(0, 0, 0, 0) !important;
|
|
1013
|
-
box-shadow: 0 0 0px rgba(0, 0, 0, 0) !important;
|
|
919
|
+
.customizerRightItemComboTopRight {
|
|
920
|
+
grid-area: 1 / 2 / 2 / 3;
|
|
921
|
+
display: flex;
|
|
922
|
+
align-items: center;
|
|
923
|
+
justify-content: center;
|
|
1014
924
|
}
|
|
1015
925
|
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
926
|
+
.customizerRightItemComboBottomRight {
|
|
927
|
+
grid-area: 2 / 2 / 3 / 3;
|
|
928
|
+
display: flex;
|
|
929
|
+
align-items: center;
|
|
930
|
+
padding-left: 15px;
|
|
931
|
+
padding-bottom: 2px;
|
|
1022
932
|
}
|
|
1023
933
|
|
|
1024
934
|
/*
|
|
1025
|
-
*
|
|
935
|
+
* CanvasXpress Customizer Right Item Header
|
|
1026
936
|
*/
|
|
1027
937
|
|
|
1028
|
-
|
|
1029
|
-
|
|
938
|
+
.customizerRightItemHeader {
|
|
939
|
+
display: grid;
|
|
940
|
+
grid-template-columns: 1fr;
|
|
941
|
+
grid-template-rows: 2fr 1fr;
|
|
942
|
+
grid-column-gap: 0px;
|
|
943
|
+
grid-row-gap: 0px;
|
|
944
|
+
background: rgba(83, 105, 255,0.1);
|
|
1030
945
|
color: rgb(34, 34, 34);
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
font: normal 12px arial, tahoma, sans-serif;
|
|
1034
|
-
line-height: 24px;
|
|
1035
|
-
list-style: none;
|
|
1036
|
-
margin: 0px;
|
|
1037
|
-
outline-style: none;
|
|
1038
|
-
outline-width: 0px;
|
|
1039
|
-
position: relative;
|
|
1040
|
-
text-decoration: none;
|
|
1041
|
-
white-space: nowrap;
|
|
946
|
+
border-bottom: 1px solid rgb(83, 105, 255) !important;
|
|
947
|
+
padding-left: 5px;
|
|
1042
948
|
}
|
|
1043
949
|
|
|
1044
|
-
|
|
1045
|
-
|
|
950
|
+
.customizerRightItemHeaderNB {
|
|
951
|
+
display: grid;
|
|
952
|
+
grid-template-columns: 1fr;
|
|
953
|
+
grid-template-rows: 2fr 1fr;
|
|
954
|
+
grid-column-gap: 0px;
|
|
955
|
+
grid-row-gap: 0px;
|
|
956
|
+
background: rgba(83, 105, 255,0.1);
|
|
1046
957
|
color: rgb(34, 34, 34);
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
font: normal 12px arial, tahoma, sans-serif;
|
|
1050
|
-
line-height: 24px;
|
|
1051
|
-
list-style: none;
|
|
1052
|
-
margin: 0px;
|
|
1053
|
-
outline-style: none;
|
|
1054
|
-
outline-width: 0px;
|
|
1055
|
-
position: relative;
|
|
1056
|
-
text-decoration: none;
|
|
1057
|
-
white-space: nowrap;
|
|
958
|
+
border-bottom: none !important;
|
|
959
|
+
padding-left: 5px;
|
|
1058
960
|
}
|
|
1059
961
|
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
color: rgb(34, 34, 34);
|
|
1065
|
-
cursor: pointer;
|
|
1066
|
-
font: normal 12px arial, tahoma, sans-serif;
|
|
1067
|
-
height: 24px;
|
|
1068
|
-
line-height: 24px;
|
|
1069
|
-
list-style: none;
|
|
1070
|
-
margin: 0px !important;
|
|
1071
|
-
padding: 0px;
|
|
1072
|
-
position: relative;
|
|
1073
|
-
vertical-align: top;
|
|
1074
|
-
width: 24px;
|
|
1075
|
-
white-space: nowrap;
|
|
1076
|
-
background: rgba(0, 0, 0, 0) !important;
|
|
1077
|
-
box-shadow: 0 0 0px rgba(0, 0, 0, 0) !important;
|
|
962
|
+
.customizerRightItemHeaderTop {
|
|
963
|
+
grid-area: 1 / 1 / 2 / 2;
|
|
964
|
+
display: flex;
|
|
965
|
+
align-items: center;
|
|
1078
966
|
}
|
|
1079
967
|
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
list-style: none;
|
|
1086
|
-
white-space: nowrap;
|
|
1087
|
-
position: relative;
|
|
968
|
+
.customizerRightItemHeaderBottom {
|
|
969
|
+
grid-area: 2 / 1 / 3 / 2;
|
|
970
|
+
display: flex;
|
|
971
|
+
align-items: center;
|
|
972
|
+
padding-left: 10px;
|
|
1088
973
|
}
|
|
1089
974
|
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
float: left;
|
|
1095
|
-
position: relative;
|
|
1096
|
-
background: rgba(83, 105, 255, 0.1);
|
|
975
|
+
.customizerRightItemHeaderMain {
|
|
976
|
+
grid-area: 1 / 1 / 3 / 2;
|
|
977
|
+
display: flex;
|
|
978
|
+
align-items: center;
|
|
1097
979
|
}
|
|
1098
980
|
|
|
1099
981
|
/*
|
|
1100
|
-
*
|
|
982
|
+
* CanvasXpress Customizer Right Item Sub Header
|
|
1101
983
|
*/
|
|
1102
984
|
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
svg.CanvasXpressOptionsCustomizer {
|
|
1111
|
-
background-position: center;
|
|
1112
|
-
border: 1px solid rgb(83, 105, 255) !important;
|
|
1113
|
-
border-radius: 4px;
|
|
1114
|
-
color: rgb(34, 34, 34);
|
|
1115
|
-
font: normal 12px arial, tahoma, sans-serif;
|
|
1116
|
-
list-style: none;
|
|
1117
|
-
margin: 10px 0px 0px 10px !important;
|
|
1118
|
-
position: relative;
|
|
1119
|
-
padding: 2px;
|
|
1120
|
-
vertical-align: top;
|
|
1121
|
-
white-space: nowrap;
|
|
1122
|
-
background: rgba(0, 0, 0, 0) !important;
|
|
1123
|
-
box-shadow: 0 0 0px rgba(0, 0, 0, 0) !important;
|
|
985
|
+
.customizerRightItemSubHeader {
|
|
986
|
+
display: grid;
|
|
987
|
+
grid-template-columns: 1fr;
|
|
988
|
+
grid-template-rows: 1fr;
|
|
989
|
+
grid-column-gap: 0px;
|
|
990
|
+
grid-row-gap: 0px;
|
|
991
|
+
background: rgba(83, 105, 255,0.1);
|
|
1124
992
|
}
|
|
1125
993
|
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
|
-
|
|
1129
|
-
|
|
1130
|
-
div.CanvasXpressAxesCustomizer {
|
|
1131
|
-
background-color: rgba(255, 255, 255, 0.95);
|
|
1132
|
-
border: 1px solid rgb(83, 105, 255);
|
|
1133
|
-
border-radius: 4px;
|
|
1134
|
-
box-sizing: border-box;
|
|
1135
|
-
font: normal 16px arial, tahoma, sans-serif;
|
|
1136
|
-
color: rgb(34, 34, 34);
|
|
1137
|
-
margin: 9px 0 0 9px;
|
|
1138
|
-
white-space: normal;
|
|
1139
|
-
overflow-y: auto;
|
|
1140
|
-
overflow-x: hidden;
|
|
994
|
+
.customizerRightItemSubHeaderRow {
|
|
995
|
+
grid-area: 1 / 1 / 2 / 2;
|
|
996
|
+
display: flex;
|
|
997
|
+
align-items: center;
|
|
1141
998
|
}
|
|
1142
999
|
|
|
1143
|
-
|
|
1144
|
-
|
|
1145
|
-
|
|
1146
|
-
border:
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
list-style: none;
|
|
1150
|
-
position: relative;
|
|
1151
|
-
padding: 0px;
|
|
1152
|
-
vertical-align: top;
|
|
1153
|
-
white-space: nowrap;
|
|
1154
|
-
background: rgba(0, 0, 0, 0) !important;
|
|
1155
|
-
box-shadow: 0 0 0px rgba(0, 0, 0, 0) !important;
|
|
1000
|
+
.customizerRightItemSubHeaderRaw {
|
|
1001
|
+
display: flex;
|
|
1002
|
+
align-items: center;
|
|
1003
|
+
border: 1px solid rgb(83, 105, 255) !important;
|
|
1004
|
+
border-radius: 5px;
|
|
1005
|
+
background-color: rgba(83, 105, 255,0.1);
|
|
1156
1006
|
}
|
|
1157
1007
|
|
|
1158
1008
|
/*
|
|
1159
|
-
*
|
|
1009
|
+
* CanvasXpress Customizer Right Item Launcher
|
|
1160
1010
|
*/
|
|
1161
|
-
input.CanvasXpressSearchCustomizer {
|
|
1162
|
-
margin: 9px;
|
|
1163
|
-
background-color: rgba(255, 255, 255, 0.95);
|
|
1164
|
-
border: 1px solid rgb(83, 105, 255);
|
|
1165
|
-
color: rgb(34, 34, 34);
|
|
1166
|
-
cursor: default;
|
|
1167
|
-
font: normal 16px arial, tahoma, sans-serif;
|
|
1168
|
-
height: 40px;
|
|
1169
|
-
border-radius: 4px;
|
|
1170
|
-
float: left;
|
|
1171
|
-
clear: left;
|
|
1172
|
-
}
|
|
1173
1011
|
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
padding-left: 3px;
|
|
1182
|
-
border-radius: 4px;
|
|
1183
|
-
float: left;
|
|
1184
|
-
clear: left;
|
|
1012
|
+
.customizerRightItemLauncher {
|
|
1013
|
+
display: grid;
|
|
1014
|
+
grid-template-columns: 1fr 6fr;
|
|
1015
|
+
grid-template-rows: 1fr;
|
|
1016
|
+
grid-column-gap: 0px;
|
|
1017
|
+
grid-row-gap: 0px;
|
|
1018
|
+
border-top: 1px solid rgb(83, 105, 255) !important;
|
|
1185
1019
|
}
|
|
1186
1020
|
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
margin-top: 5px;
|
|
1195
|
-
float: left;
|
|
1196
|
-
clear: left;
|
|
1021
|
+
.customizerRightItemLauncherNB {
|
|
1022
|
+
display: grid;
|
|
1023
|
+
grid-template-columns: 1fr 6fr;
|
|
1024
|
+
grid-template-rows: 1fr;
|
|
1025
|
+
grid-column-gap: 0px;
|
|
1026
|
+
grid-row-gap: 0px;
|
|
1027
|
+
border: none !important;
|
|
1197
1028
|
}
|
|
1198
1029
|
|
|
1199
|
-
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
span.CanvasXpressSearchCustomizerCurrent {
|
|
1203
|
-
font: normal 16px arial, tahoma, sans-serif;
|
|
1204
|
-
line-height: 28px;
|
|
1205
|
-
list-style: none;
|
|
1206
|
-
position: relative;
|
|
1207
|
-
height: 28px;
|
|
1208
|
-
margin-top: 5px;
|
|
1209
|
-
float: left;
|
|
1210
|
-
clear: left;
|
|
1030
|
+
.customizerRightItemLauncher:hover,
|
|
1031
|
+
.customizerRightItemLauncherNB:hover {
|
|
1032
|
+
background-color: rgba(83, 105, 255,0.1);
|
|
1211
1033
|
}
|
|
1212
1034
|
|
|
1213
|
-
|
|
1214
|
-
|
|
1035
|
+
.customizerRightItemLauncherLeft {
|
|
1036
|
+
grid-area: 1 / 1 / 2 / 2;
|
|
1037
|
+
display: flex;
|
|
1038
|
+
align-items: center;
|
|
1039
|
+
justify-content: center;
|
|
1040
|
+
background-color: rgba(83, 105, 255,0.1);
|
|
1215
1041
|
}
|
|
1216
1042
|
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
white-space: nowrap;
|
|
1043
|
+
.customizerRightItemLauncherRight {
|
|
1044
|
+
grid-area: 1 / 2 / 2 / 3;
|
|
1045
|
+
display: flex;
|
|
1046
|
+
align-items: center;
|
|
1047
|
+
padding-left: 5px;
|
|
1223
1048
|
}
|
|
1224
1049
|
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1050
|
+
/*
|
|
1051
|
+
* CanvasXpress Customizer Right Item Input
|
|
1052
|
+
*/
|
|
1228
1053
|
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
|
|
1054
|
+
.customizerRightItemInput {
|
|
1055
|
+
display: grid;
|
|
1056
|
+
grid-template-columns: 1fr 6fr;
|
|
1057
|
+
grid-template-rows: repeat(2, 1fr);
|
|
1058
|
+
grid-column-gap: 0px;
|
|
1059
|
+
grid-row-gap: 0px;
|
|
1233
1060
|
}
|
|
1234
1061
|
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
|
|
1062
|
+
.customizerRightItemInputTopLeft {
|
|
1063
|
+
grid-area: 1 / 1 / 2 / 2;
|
|
1064
|
+
display: flex;
|
|
1065
|
+
align-items: center;
|
|
1239
1066
|
}
|
|
1240
1067
|
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
|
|
1244
|
-
|
|
1068
|
+
.customizerRightItemInputTopRight {
|
|
1069
|
+
grid-area: 1 / 2 / 2 / 3;
|
|
1070
|
+
display: flex;
|
|
1071
|
+
align-items: center;
|
|
1245
1072
|
}
|
|
1246
1073
|
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
|
|
1074
|
+
.customizerRightItemInputBottom {
|
|
1075
|
+
grid-area: 2 / 1 / 3 / 3;
|
|
1076
|
+
display: flex;
|
|
1077
|
+
align-items: center;
|
|
1251
1078
|
}
|
|
1252
1079
|
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
font-weight: bold;
|
|
1257
|
-
content: " ]";
|
|
1258
|
-
}
|
|
1080
|
+
/*
|
|
1081
|
+
* CanvasXpress Customizer Right Item Cols
|
|
1082
|
+
*/
|
|
1259
1083
|
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1084
|
+
.customizerRightItemFullCol {
|
|
1085
|
+
display: grid;
|
|
1086
|
+
grid-template-columns: 1fr;
|
|
1087
|
+
grid-template-rows: 1fr;
|
|
1088
|
+
grid-column-gap: 0px;
|
|
1089
|
+
grid-row-gap: 0px;
|
|
1090
|
+
margin: 5px;
|
|
1091
|
+
height: fit-content;
|
|
1264
1092
|
}
|
|
1265
1093
|
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
|
|
1094
|
+
.customizerRightItemHalfCol {
|
|
1095
|
+
display: grid;
|
|
1096
|
+
grid-template-columns: repeat(2, 1fr);
|
|
1097
|
+
grid-template-rows: 1fr;
|
|
1098
|
+
grid-column-gap: 0px;
|
|
1099
|
+
grid-row-gap: 0px;
|
|
1100
|
+
margin: 5px;
|
|
1101
|
+
height: fit-content;
|
|
1270
1102
|
}
|
|
1271
1103
|
|
|
1272
|
-
|
|
1273
|
-
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
|
|
1104
|
+
.customizerRightItemThirdCol {
|
|
1105
|
+
display: grid;
|
|
1106
|
+
grid-template-columns: repeat(3, 1fr);
|
|
1107
|
+
grid-template-rows: 1fr;
|
|
1108
|
+
grid-column-gap: 0px;
|
|
1109
|
+
grid-row-gap: 0px;
|
|
1110
|
+
margin: 5px;
|
|
1111
|
+
height: fit-content;
|
|
1278
1112
|
}
|
|
1279
1113
|
|
|
1280
|
-
|
|
1281
|
-
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
outline-style: none;
|
|
1289
|
-
outline-width: 0px;
|
|
1290
|
-
position: relative;
|
|
1291
|
-
text-decoration: none;
|
|
1292
|
-
white-space: nowrap;
|
|
1114
|
+
.customizerRightItemFourthCol {
|
|
1115
|
+
display: grid;
|
|
1116
|
+
grid-template-columns: repeat(4, 1fr);
|
|
1117
|
+
grid-template-rows: 1fr;
|
|
1118
|
+
grid-column-gap: 0px;
|
|
1119
|
+
grid-row-gap: 0px;
|
|
1120
|
+
margin: 5px;
|
|
1121
|
+
height: fit-content;
|
|
1293
1122
|
}
|
|
1294
1123
|
|
|
1295
|
-
|
|
1296
|
-
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
|
|
1301
|
-
|
|
1302
|
-
|
|
1303
|
-
margin: 0px;
|
|
1304
|
-
outline-style: none;
|
|
1305
|
-
outline-width: 0px;
|
|
1306
|
-
position: relative;
|
|
1307
|
-
text-decoration: none;
|
|
1308
|
-
white-space: nowrap;
|
|
1124
|
+
.customizerRightItemFifthCol {
|
|
1125
|
+
display: grid;
|
|
1126
|
+
grid-template-columns: repeat(5, 1fr);
|
|
1127
|
+
grid-template-rows: 1fr;
|
|
1128
|
+
grid-column-gap: 0px;
|
|
1129
|
+
grid-row-gap: 0px;
|
|
1130
|
+
margin: 5px;
|
|
1131
|
+
height: fit-content;
|
|
1309
1132
|
}
|
|
1310
1133
|
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
|
|
1134
|
+
.customizerRightItemSixthCol {
|
|
1135
|
+
display: grid;
|
|
1136
|
+
grid-template-columns: repeat(6, 1fr);
|
|
1137
|
+
grid-template-rows: 1fr;
|
|
1138
|
+
grid-column-gap: 0px;
|
|
1139
|
+
grid-row-gap: 0px;
|
|
1140
|
+
margin: 5px;
|
|
1141
|
+
height: fit-content;
|
|
1142
|
+
}
|
|
1314
1143
|
|
|
1315
|
-
|
|
1316
|
-
|
|
1317
|
-
|
|
1318
|
-
|
|
1144
|
+
.customizerRightItemCol1 {
|
|
1145
|
+
grid-area: 1 / 1 / 2 / 2;
|
|
1146
|
+
display: flex;
|
|
1147
|
+
align-items: center;
|
|
1148
|
+
justify-content: center;
|
|
1319
1149
|
}
|
|
1320
1150
|
|
|
1321
|
-
|
|
1322
|
-
|
|
1323
|
-
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
padding: 8px;
|
|
1327
|
-
font: normal 16px arial, tahoma, sans-serif;
|
|
1151
|
+
.customizerRightItemCol2 {
|
|
1152
|
+
grid-area: 1 / 2 / 2 / 3;
|
|
1153
|
+
display: flex;
|
|
1154
|
+
align-items: center;
|
|
1155
|
+
justify-content: center;
|
|
1328
1156
|
}
|
|
1329
1157
|
|
|
1330
|
-
|
|
1331
|
-
|
|
1332
|
-
|
|
1333
|
-
|
|
1334
|
-
|
|
1335
|
-
border-bottom-color: rgb(238, 238, 238);
|
|
1336
|
-
border-style: solid;
|
|
1337
|
-
border-radius: 5px 5px 0 0;
|
|
1338
|
-
padding: 8px;
|
|
1339
|
-
font: normal 16px arial, tahoma, sans-serif;
|
|
1158
|
+
.customizerRightItemCol3 {
|
|
1159
|
+
grid-area: 1 / 3 / 2 / 4;
|
|
1160
|
+
display: flex;
|
|
1161
|
+
align-items: center;
|
|
1162
|
+
justify-content: center;
|
|
1340
1163
|
}
|
|
1341
1164
|
|
|
1342
|
-
|
|
1343
|
-
|
|
1344
|
-
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
color: rgb(34, 34, 34);
|
|
1348
|
-
margin: 9px 0 0 9px;
|
|
1349
|
-
padding: 5px;
|
|
1350
|
-
white-space: normal;
|
|
1351
|
-
overflow-y: auto;
|
|
1352
|
-
overflow-x: hidden;
|
|
1165
|
+
.customizerRightItemCol4 {
|
|
1166
|
+
grid-area: 1 / 4 / 2 / 5;
|
|
1167
|
+
display: flex;
|
|
1168
|
+
align-items: center;
|
|
1169
|
+
justify-content: center;
|
|
1353
1170
|
}
|
|
1354
1171
|
|
|
1355
|
-
|
|
1356
|
-
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
color: rgb(34, 34, 34);
|
|
1361
|
-
margin: 9px 0 0 9px;
|
|
1362
|
-
padding: 5px;
|
|
1363
|
-
white-space: normal;
|
|
1364
|
-
overflow-y: auto;
|
|
1365
|
-
overflow-x: hidden;
|
|
1172
|
+
.customizerRightItemCol5 {
|
|
1173
|
+
grid-area: 1 / 5 / 2 / 6;
|
|
1174
|
+
display: flex;
|
|
1175
|
+
align-items: center;
|
|
1176
|
+
justify-content: center;
|
|
1366
1177
|
}
|
|
1367
1178
|
|
|
1368
|
-
|
|
1369
|
-
|
|
1370
|
-
|
|
1371
|
-
-
|
|
1372
|
-
-
|
|
1373
|
-
-o-transition: all 0.5s ease;
|
|
1374
|
-
-ms-transition: all 0.5s ease;
|
|
1375
|
-
transition: all 0.5s ease;
|
|
1376
|
-
cursor: default;
|
|
1377
|
-
height: auto;
|
|
1378
|
-
max-height: 1000px;
|
|
1379
|
-
overflow: hidden;
|
|
1380
|
-
padding-top: 10px;
|
|
1179
|
+
.customizerRightItemCol6 {
|
|
1180
|
+
grid-area: 1 / 6 / 2 / 7;
|
|
1181
|
+
display: flex;
|
|
1182
|
+
align-items: center;
|
|
1183
|
+
justify-content: center;
|
|
1381
1184
|
}
|
|
1382
1185
|
|
|
1383
|
-
|
|
1384
|
-
|
|
1385
|
-
|
|
1386
|
-
|
|
1387
|
-
|
|
1186
|
+
.customizerRightItemColMid {
|
|
1187
|
+
grid-area: 1 / 3 / 2 / 5;
|
|
1188
|
+
display: flex;
|
|
1189
|
+
align-items: center;
|
|
1190
|
+
justify-content: center;
|
|
1191
|
+
border: 1px solid rgb(83, 105, 255) !important;
|
|
1388
1192
|
border-radius: 5px;
|
|
1389
|
-
cursor: pointer;
|
|
1390
|
-
margin: 3px !important;
|
|
1391
|
-
padding: 2px;
|
|
1392
1193
|
}
|
|
1393
1194
|
|
|
1394
|
-
|
|
1395
|
-
|
|
1396
|
-
|
|
1397
|
-
|
|
1398
|
-
|
|
1399
|
-
|
|
1400
|
-
|
|
1401
|
-
|
|
1402
|
-
|
|
1403
|
-
|
|
1404
|
-
|
|
1405
|
-
|
|
1406
|
-
-webkit-transition-duration: 0.3s;
|
|
1407
|
-
/* Safari */
|
|
1195
|
+
.customizerRightItemSelect > select:hover,
|
|
1196
|
+
.customizerRightItemTextArea > svg:hover,
|
|
1197
|
+
.customizerRightItemTextArea > textarea:hover,
|
|
1198
|
+
.customizerContainerRaw > svg:hover,
|
|
1199
|
+
.customizerRightItemCol1 > svg:hover,
|
|
1200
|
+
.customizerRightItemCol2 > svg:hover,
|
|
1201
|
+
.customizerRightItemCol3 > svg:hover,
|
|
1202
|
+
.customizerRightItemCol4 > svg:hover,
|
|
1203
|
+
.customizerRightItemCol5 > svg:hover,
|
|
1204
|
+
.customizerRightItemCol6 > svg:hover,
|
|
1205
|
+
.customizerRightItem:hover {
|
|
1206
|
+
background-color: rgba(83, 105, 255,0.1);
|
|
1408
1207
|
}
|
|
1409
1208
|
|
|
1410
|
-
|
|
1411
|
-
|
|
1412
|
-
|
|
1413
|
-
|
|
1414
|
-
|
|
1209
|
+
/*
|
|
1210
|
+
* Other Customizer classes
|
|
1211
|
+
*/
|
|
1212
|
+
|
|
1213
|
+
.customizerContainer {
|
|
1214
|
+
height: fit-content;
|
|
1415
1215
|
border: 1px solid rgb(83, 105, 255) !important;
|
|
1416
1216
|
border-radius: 5px;
|
|
1417
|
-
|
|
1418
|
-
|
|
1419
|
-
padding: 3px;
|
|
1420
|
-
-webkit-transform: scale(1.8, 1.8);
|
|
1421
|
-
-ms-transform: scale(1.8, 1.8);
|
|
1422
|
-
transform: scale(1.8, 1.8);
|
|
1423
|
-
transition-duration: 0.3s;
|
|
1424
|
-
-webkit-transition-duration: 0.3s;
|
|
1425
|
-
/* Safari */
|
|
1426
|
-
box-shadow: 10px 10px 5px rgb(136, 136, 136) !important;
|
|
1427
|
-
z-index: 2;
|
|
1428
|
-
position: relative;
|
|
1217
|
+
margin: 10px;
|
|
1218
|
+
float: left;
|
|
1429
1219
|
}
|
|
1430
1220
|
|
|
1431
|
-
|
|
1432
|
-
|
|
1433
|
-
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
|
|
1437
|
-
border: 0px none !important;
|
|
1438
|
-
border-radius: 0px;
|
|
1439
|
-
cursor: pointer;
|
|
1440
|
-
margin: 2px 3px !important;
|
|
1441
|
-
-webkit-transform: scale(1, 1);
|
|
1442
|
-
-ms-transform: scale(1, 1);
|
|
1443
|
-
transform: scale(1, 1);
|
|
1444
|
-
transition-duration: 0.3s;
|
|
1445
|
-
-webkit-transition-duration: 0.3s;
|
|
1446
|
-
/* Safari */
|
|
1221
|
+
.customizerContainerRaw {
|
|
1222
|
+
border: none !important;
|
|
1223
|
+
float: left;
|
|
1224
|
+
display: flex;
|
|
1225
|
+
align-items: center;
|
|
1226
|
+
justify-content: center;
|
|
1447
1227
|
}
|
|
1448
1228
|
|
|
1449
|
-
|
|
1450
|
-
|
|
1451
|
-
|
|
1452
|
-
border:
|
|
1229
|
+
.customizerWrangling {
|
|
1230
|
+
height: 102px;
|
|
1231
|
+
margin: 0px 0px 10px 10px;
|
|
1232
|
+
border: 1px solid rgb(83, 105, 255) !important;
|
|
1453
1233
|
border-radius: 5px;
|
|
1454
|
-
|
|
1455
|
-
|
|
1456
|
-
padding: 4px;
|
|
1457
|
-
-webkit-transform: scale(1.8, 1.8);
|
|
1458
|
-
-ms-transform: scale(1.8, 1.8);
|
|
1459
|
-
transform: scale(1.8, 1.8);
|
|
1460
|
-
transition-duration: 0.3s;
|
|
1461
|
-
-webkit-transition-duration: 0.3s;
|
|
1462
|
-
/* Safari */
|
|
1463
|
-
box-shadow: 10px 10px 5px rgb(136, 136, 136) !important;
|
|
1464
|
-
z-index: 2;
|
|
1465
|
-
position: relative;
|
|
1234
|
+
overflow-y: auto;
|
|
1235
|
+
overflow-x: hidden;
|
|
1466
1236
|
}
|
|
1467
1237
|
|
|
1468
|
-
|
|
1469
|
-
|
|
1470
|
-
background: rgba(0, 0, 0, 0) !important;
|
|
1471
|
-
box-shadow: 0 0 0px rgba(0, 0, 0, 0) !important;
|
|
1472
|
-
border: 1px solid rgb(83, 105, 255) !important;
|
|
1473
|
-
border-radius: 5px;
|
|
1474
|
-
cursor: pointer;
|
|
1475
|
-
margin: 12px 3px 3px 3px !important;
|
|
1476
|
-
padding: 2px 3px;
|
|
1477
|
-
-webkit-transform: scale(1, 1);
|
|
1478
|
-
-ms-transform: scale(1, 1);
|
|
1479
|
-
transform: scale(1, 1);
|
|
1480
|
-
transition-duration: 0.3s;
|
|
1481
|
-
-webkit-transition-duration: 0.3s;
|
|
1482
|
-
/* Safari */
|
|
1238
|
+
.customizerWrangling:hover {
|
|
1239
|
+
border: 1px dashed rgb(255,0,0) !important;
|
|
1483
1240
|
}
|
|
1484
1241
|
|
|
1485
|
-
|
|
1486
|
-
svg.CanvasXpressDataCustomizerMask {
|
|
1242
|
+
.customizerMask {
|
|
1487
1243
|
background: rgba(0, 0, 0, 0) !important;
|
|
1488
1244
|
border: 0px none !important;
|
|
1489
1245
|
box-shadow: 0 0 0px rgba(0, 0, 0, 0) !important;
|
|
@@ -1493,25 +1249,14 @@ svg.CanvasXpressDataCustomizerMask {
|
|
|
1493
1249
|
margin: 0px !important;
|
|
1494
1250
|
width: 100%;
|
|
1495
1251
|
height: 20px;
|
|
1496
|
-
-moz-user-select: none;
|
|
1497
|
-
-khtml-user-select: none;
|
|
1498
|
-
-webkit-user-select: none;
|
|
1499
|
-
-o-user-select: none;
|
|
1500
|
-
-ms-user-select: none;
|
|
1501
|
-
-moz-user-select: none;
|
|
1502
1252
|
}
|
|
1503
1253
|
|
|
1504
|
-
|
|
1505
|
-
|
|
1506
|
-
|
|
1507
|
-
span.CanvasXpressDataCustomizerNumericActive,
|
|
1508
|
-
span.CanvasXpressDataCustomizerStringActive,
|
|
1509
|
-
span.CanvasXpressDataCustomizerUniqueActive {
|
|
1254
|
+
.customizerNumeric,
|
|
1255
|
+
.customizerString,
|
|
1256
|
+
.customizerUnique {
|
|
1510
1257
|
border: 1px solid rgb(83, 105, 255);
|
|
1511
1258
|
border-radius: 5px;
|
|
1512
1259
|
cursor: move;
|
|
1513
|
-
font: normal 16px arial, tahoma, sans-serif;
|
|
1514
|
-
color: rgb(34, 34, 34);
|
|
1515
1260
|
margin: 3px;
|
|
1516
1261
|
padding: 3px;
|
|
1517
1262
|
word-wrap: normal;
|
|
@@ -1520,135 +1265,214 @@ span.CanvasXpressDataCustomizerUniqueActive {
|
|
|
1520
1265
|
max-width: 150px;
|
|
1521
1266
|
overflow: hidden;
|
|
1522
1267
|
position: relative;
|
|
1523
|
-
-moz-user-select: none;
|
|
1524
|
-
-khtml-user-select: none;
|
|
1525
|
-
-webkit-user-select: none;
|
|
1526
|
-
-o-user-select: none;
|
|
1527
|
-
-ms-user-select: none;
|
|
1528
1268
|
}
|
|
1529
1269
|
|
|
1530
|
-
|
|
1531
|
-
color: rgb(
|
|
1270
|
+
.customizerNumeric {
|
|
1271
|
+
color: rgb(34, 34, 34);
|
|
1272
|
+
background-color: rgba(0, 0, 0, 0);
|
|
1273
|
+
}
|
|
1274
|
+
|
|
1275
|
+
.customizerString {
|
|
1276
|
+
color: rgb(0, 255, 0);
|
|
1277
|
+
background-color: rgba(0, 0, 0, 0);
|
|
1532
1278
|
}
|
|
1533
1279
|
|
|
1534
|
-
|
|
1280
|
+
.customizerUnique {
|
|
1535
1281
|
color: rgb(0, 0, 255);
|
|
1282
|
+
background-color: rgba(0, 0, 0, 0);
|
|
1536
1283
|
}
|
|
1537
1284
|
|
|
1538
|
-
|
|
1539
|
-
|
|
1540
|
-
|
|
1541
|
-
span.CanvasXpressDataCustomizerListNumericActive,
|
|
1542
|
-
span.CanvasXpressDataCustomizerListStringActive,
|
|
1543
|
-
span.CanvasXpressDataCustomizerListUniqueActive {
|
|
1285
|
+
.customizerListNumeric,
|
|
1286
|
+
.customizerListString,
|
|
1287
|
+
.customizerListUnique {
|
|
1544
1288
|
border: none;
|
|
1545
1289
|
cursor: move;
|
|
1546
|
-
font: normal 16px arial, tahoma, sans-serif;
|
|
1547
1290
|
color: rgb(34, 34, 34);
|
|
1548
1291
|
margin: 0;
|
|
1549
|
-
padding: 0;
|
|
1292
|
+
padding: 0 0 0 3px;
|
|
1550
1293
|
width: 350px;
|
|
1551
1294
|
white-space: nowrap;
|
|
1552
1295
|
display: inline-block;
|
|
1553
1296
|
text-align: start;
|
|
1554
1297
|
overflow: hidden;
|
|
1555
1298
|
position: relative;
|
|
1556
|
-
-moz-user-select: none;
|
|
1557
|
-
-khtml-user-select: none;
|
|
1558
|
-
-webkit-user-select: none;
|
|
1559
|
-
-o-user-select: none;
|
|
1560
|
-
-ms-user-select: none;
|
|
1561
1299
|
}
|
|
1562
1300
|
|
|
1563
|
-
|
|
1564
|
-
span.CanvasXpressDataCustomizerListNumericActive {
|
|
1301
|
+
.customizerListNumeric {
|
|
1565
1302
|
color: rgb(34, 34, 34);
|
|
1566
1303
|
}
|
|
1567
1304
|
|
|
1568
|
-
|
|
1569
|
-
|
|
1570
|
-
color: rgb(255, 0, 0);
|
|
1305
|
+
.customizerListString {
|
|
1306
|
+
color: rgb(0, 255, 0);
|
|
1571
1307
|
}
|
|
1572
1308
|
|
|
1573
|
-
|
|
1574
|
-
span.CanvasXpressDataCustomizerListUniqueActive {
|
|
1309
|
+
.customizerListUnique {
|
|
1575
1310
|
color: rgb(0, 0, 255);
|
|
1576
1311
|
}
|
|
1577
1312
|
|
|
1578
|
-
|
|
1579
|
-
|
|
1313
|
+
.customizerListNumeric,
|
|
1314
|
+
.customizerListString,
|
|
1315
|
+
.customizerListUnique {
|
|
1316
|
+
background-color: rgba(0, 0, 0, 0);
|
|
1317
|
+
}
|
|
1318
|
+
|
|
1319
|
+
.customizerListNumeric:hover,
|
|
1320
|
+
.customizerListString:hover,
|
|
1321
|
+
.customizerListUnique:hover {
|
|
1322
|
+
background: rgba(83, 105, 255, 0.1);
|
|
1323
|
+
}
|
|
1324
|
+
|
|
1325
|
+
.customizerListNumeric:before {
|
|
1580
1326
|
font: normal 10px courier;
|
|
1581
1327
|
color: rgb(83, 105, 255);
|
|
1582
|
-
content: "\00a0#\00a0\00a0
|
|
1328
|
+
content: "\00a0#\00a0\00a0";
|
|
1583
1329
|
}
|
|
1584
1330
|
|
|
1585
|
-
|
|
1586
|
-
span.CanvasXpressDataCustomizerListStringActive:before {
|
|
1331
|
+
.customizerListString:before {
|
|
1587
1332
|
font: normal 10px courier;
|
|
1588
1333
|
color: rgb(83, 105, 255);
|
|
1589
|
-
content: "Abc\00a0
|
|
1334
|
+
content: "Abc\00a0";
|
|
1590
1335
|
}
|
|
1591
1336
|
|
|
1592
|
-
|
|
1593
|
-
span.CanvasXpressDataCustomizerListUniqueActive:before {
|
|
1337
|
+
.customizerListUnique:before {
|
|
1594
1338
|
font: normal 10px courier;
|
|
1595
1339
|
color: rgb(83, 105, 255);
|
|
1596
|
-
content: "Unq\00a0
|
|
1340
|
+
content: "Unq\00a0";
|
|
1597
1341
|
}
|
|
1598
1342
|
|
|
1599
|
-
|
|
1600
|
-
|
|
1601
|
-
|
|
1602
|
-
|
|
1603
|
-
|
|
1604
|
-
|
|
1605
|
-
|
|
1606
|
-
padding: 6px 29px;
|
|
1607
|
-
margin-left: -4px;
|
|
1608
|
-
}
|
|
1609
|
-
|
|
1610
|
-
img.CanvasXpressDataCustomizerActive::selection,
|
|
1611
|
-
img.CanvasXpressDataCustomizer::selection,
|
|
1612
|
-
svg.CanvasXpressDataCustomizerActive::selection,
|
|
1613
|
-
svg.CanvasXpressDataCustomizer::selection,
|
|
1614
|
-
div.CanvasXpressDataCustomizerActive::selection,
|
|
1615
|
-
div.CanvasXpressDataCustomizer::selection,
|
|
1616
|
-
img.CanvasXpressDataCustomizerMask::selection,
|
|
1617
|
-
svg.CanvasXpressDataCustomizerMask::selection,
|
|
1618
|
-
span.CanvasXpressDataCustomizerNumeric::selection,
|
|
1619
|
-
span.CanvasXpressDataCustomizerString::selection,
|
|
1620
|
-
span.CanvasXpressDataCustomizerUnique::selection,
|
|
1621
|
-
span.CanvasXpressDataCustomizerListNumeric::selection,
|
|
1622
|
-
span.CanvasXpressDataCustomizerListString::selection,
|
|
1623
|
-
span.CanvasXpressDataCustomizerListUnique::selection,
|
|
1624
|
-
span.CanvasXpressDataCustomizer::selection {
|
|
1343
|
+
.customizerMask::selection,
|
|
1344
|
+
.customizerNumeric::selection,
|
|
1345
|
+
.customizerString::selection,
|
|
1346
|
+
.customizerUnique::selection,
|
|
1347
|
+
.customizerListNumeric::selection,
|
|
1348
|
+
.customizerListString::selection,
|
|
1349
|
+
.customizerListUnique::selection {
|
|
1625
1350
|
background: rgba(0, 0, 0, 0);
|
|
1626
1351
|
color: rgb(0, 0, 0);
|
|
1627
1352
|
padding: 0;
|
|
1628
1353
|
}
|
|
1629
1354
|
|
|
1630
|
-
|
|
1631
|
-
|
|
1632
|
-
|
|
1633
|
-
|
|
1355
|
+
/*
|
|
1356
|
+
* Search Customizer
|
|
1357
|
+
*/
|
|
1358
|
+
|
|
1359
|
+
input.customizerSearch {
|
|
1360
|
+
margin: 9px;
|
|
1361
|
+
background-color: rgba(255, 255, 255, 0.95);
|
|
1362
|
+
border: 1px solid rgb(83, 105, 255);
|
|
1363
|
+
color: rgb(34, 34, 34);
|
|
1364
|
+
cursor: default;
|
|
1365
|
+
font: inherit;
|
|
1366
|
+
height: 40px;
|
|
1367
|
+
border-radius: 4px;
|
|
1368
|
+
float: left;
|
|
1369
|
+
clear: left;
|
|
1634
1370
|
}
|
|
1635
1371
|
|
|
1636
|
-
|
|
1637
|
-
|
|
1638
|
-
|
|
1639
|
-
|
|
1372
|
+
input.customizerSearch[type="color"] {
|
|
1373
|
+
padding: 0;
|
|
1374
|
+
overflow: hidden;
|
|
1375
|
+
}
|
|
1376
|
+
input.customizerSearch:not([type="color"]) {
|
|
1377
|
+
padding: 5px;
|
|
1640
1378
|
}
|
|
1641
1379
|
|
|
1642
|
-
|
|
1643
|
-
|
|
1644
|
-
|
|
1645
|
-
|
|
1380
|
+
select.customizerSearch {
|
|
1381
|
+
margin: 9px;
|
|
1382
|
+
background-color: rgba(255, 255, 255, 0.95);
|
|
1383
|
+
border: 1px solid rgb(83, 105, 255);
|
|
1384
|
+
color: rgb(34, 34, 34);
|
|
1385
|
+
cursor: default;
|
|
1386
|
+
font: inherit;
|
|
1387
|
+
padding-left: 3px;
|
|
1388
|
+
border-radius: 4px;
|
|
1389
|
+
float: left;
|
|
1390
|
+
clear: left;
|
|
1646
1391
|
}
|
|
1647
1392
|
|
|
1648
|
-
span.
|
|
1649
|
-
|
|
1650
|
-
|
|
1651
|
-
|
|
1393
|
+
span.customizerSearch {
|
|
1394
|
+
color: rgb(34, 34, 34);
|
|
1395
|
+
font: inherit;
|
|
1396
|
+
line-height: 20px;
|
|
1397
|
+
list-style: none;
|
|
1398
|
+
position: relative;
|
|
1399
|
+
margin: 5px 5px 0 15px;
|
|
1400
|
+
float: left;
|
|
1401
|
+
clear: left;
|
|
1402
|
+
}
|
|
1403
|
+
|
|
1404
|
+
span.customizerSearchSelect,
|
|
1405
|
+
span.customizerSearchDescription,
|
|
1406
|
+
span.customizerSearchCategory,
|
|
1407
|
+
span.customizerSearchCurrent {
|
|
1408
|
+
font: inherit;
|
|
1409
|
+
line-height: 28px;
|
|
1410
|
+
list-style: none;
|
|
1411
|
+
position: relative;
|
|
1412
|
+
height: 28px;
|
|
1413
|
+
margin-top: 5px;
|
|
1414
|
+
float: left;
|
|
1415
|
+
clear: left;
|
|
1416
|
+
left: 15px;
|
|
1417
|
+
}
|
|
1418
|
+
|
|
1419
|
+
span.customizerSearchSelect {
|
|
1420
|
+
color: rgb(34, 34, 34);
|
|
1421
|
+
}
|
|
1422
|
+
|
|
1423
|
+
span.customizerSearchDescription,
|
|
1424
|
+
span.customizerSearchCategory {
|
|
1425
|
+
color: rgb(83, 105, 255);
|
|
1426
|
+
overflow: hidden;
|
|
1427
|
+
text-overflow: ellipsis;
|
|
1428
|
+
white-space: nowrap;
|
|
1429
|
+
}
|
|
1430
|
+
|
|
1431
|
+
span.customizerSearchCurrent {
|
|
1432
|
+
color: rgb(83, 105, 255);
|
|
1433
|
+
}
|
|
1434
|
+
|
|
1435
|
+
span.customizerSearchSelect:before {
|
|
1436
|
+
color: rgb(34, 34, 34);
|
|
1437
|
+
font-weight: bold;
|
|
1438
|
+
content: "Select property (";
|
|
1439
|
+
}
|
|
1440
|
+
|
|
1441
|
+
span.customizerSearchSelect:after {
|
|
1442
|
+
color: rgb(34, 34, 34);
|
|
1443
|
+
font-weight: bold;
|
|
1444
|
+
content: ")";
|
|
1445
|
+
}
|
|
1446
|
+
|
|
1447
|
+
span.customizerSearchDescription:before {
|
|
1448
|
+
color: rgb(34, 34, 34);
|
|
1449
|
+
font-weight: bold;
|
|
1450
|
+
content: "Description [ ";
|
|
1451
|
+
}
|
|
1452
|
+
|
|
1453
|
+
span.customizerSearchCategory:before {
|
|
1454
|
+
color: rgb(34, 34, 34);
|
|
1455
|
+
font-weight: bold;
|
|
1456
|
+
content: "Category [ ";
|
|
1457
|
+
}
|
|
1458
|
+
|
|
1459
|
+
span.customizerSearchDescription:after,
|
|
1460
|
+
span.customizerSearchCategory:after {
|
|
1461
|
+
color: rgb(34, 34, 34);
|
|
1462
|
+
font-weight: bold;
|
|
1463
|
+
content: " ]";
|
|
1464
|
+
}
|
|
1465
|
+
|
|
1466
|
+
span.customizerSearchCurrent:before {
|
|
1467
|
+
color: rgb(34, 34, 34);
|
|
1468
|
+
font-weight: bold;
|
|
1469
|
+
content: "Current Value [ ";
|
|
1470
|
+
}
|
|
1471
|
+
|
|
1472
|
+
span.customizerSearchCurrent:after {
|
|
1473
|
+
color: rgb(34, 34, 34);
|
|
1474
|
+
font-weight: bold;
|
|
1475
|
+
content: " ]";
|
|
1652
1476
|
}
|
|
1653
1477
|
|
|
1654
1478
|
/*
|