agentic-ui-libs 1.0.0-beta.3 → 1.0.0-beta.4
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/dist/assets/style.css +1432 -3
- package/dist/features/md-editor/MDEditor.d.ts +5 -0
- package/dist/features/md-editor/MDEditor.d.ts.map +1 -0
- package/dist/features/md-editor/components/AIContextMenu.d.ts +10 -0
- package/dist/features/md-editor/components/AIContextMenu.d.ts.map +1 -0
- package/dist/features/md-editor/components/AIRefinePanel.d.ts +5 -0
- package/dist/features/md-editor/components/AIRefinePanel.d.ts.map +1 -0
- package/dist/features/md-editor/components/DragHandle.d.ts +8 -0
- package/dist/features/md-editor/components/DragHandle.d.ts.map +1 -0
- package/dist/features/md-editor/components/InlineToolbar.d.ts +15 -0
- package/dist/features/md-editor/components/InlineToolbar.d.ts.map +1 -0
- package/dist/features/md-editor/components/MentionChip.d.ts +12 -0
- package/dist/features/md-editor/components/MentionChip.d.ts.map +1 -0
- package/dist/features/md-editor/components/SlashMenu.d.ts +15 -0
- package/dist/features/md-editor/components/SlashMenu.d.ts.map +1 -0
- package/dist/features/md-editor/components/TableToolbar.d.ts +9 -0
- package/dist/features/md-editor/components/TableToolbar.d.ts.map +1 -0
- package/dist/features/md-editor/components/VariableChip.d.ts +12 -0
- package/dist/features/md-editor/components/VariableChip.d.ts.map +1 -0
- package/dist/features/md-editor/components/VariableMenu.d.ts +19 -0
- package/dist/features/md-editor/components/VariableMenu.d.ts.map +1 -0
- package/dist/features/md-editor/components/index.d.ts +9 -0
- package/dist/features/md-editor/components/index.d.ts.map +1 -0
- package/dist/features/md-editor/extensions/AIRefineExtension.d.ts +20 -0
- package/dist/features/md-editor/extensions/AIRefineExtension.d.ts.map +1 -0
- package/dist/features/md-editor/extensions/MentionChip.d.ts +22 -0
- package/dist/features/md-editor/extensions/MentionChip.d.ts.map +1 -0
- package/dist/features/md-editor/extensions/SlashCommand.d.ts +19 -0
- package/dist/features/md-editor/extensions/SlashCommand.d.ts.map +1 -0
- package/dist/features/md-editor/extensions/VariableChip.d.ts +21 -0
- package/dist/features/md-editor/extensions/VariableChip.d.ts.map +1 -0
- package/dist/features/md-editor/extensions/index.d.ts +4 -0
- package/dist/features/md-editor/extensions/index.d.ts.map +1 -0
- package/dist/features/md-editor/index.d.ts +9 -0
- package/dist/features/md-editor/index.d.ts.map +1 -0
- package/dist/features/md-editor/types.d.ts +346 -0
- package/dist/features/md-editor/types.d.ts.map +1 -0
- package/dist/features/md-editor/utils/index.d.ts +2 -0
- package/dist/features/md-editor/utils/index.d.ts.map +1 -0
- package/dist/features/md-editor/utils/markdown.d.ts +19 -0
- package/dist/features/md-editor/utils/markdown.d.ts.map +1 -0
- package/dist/features/prompt-editor/types.d.ts +1 -0
- package/dist/features/prompt-editor/types.d.ts.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +32686 -1307
- package/dist/ui-libs.umd.js +33581 -2202
- package/package.json +26 -3
package/dist/assets/style.css
CHANGED
|
@@ -566,6 +566,9 @@ video {
|
|
|
566
566
|
.pointer-events-none {
|
|
567
567
|
pointer-events: none;
|
|
568
568
|
}
|
|
569
|
+
.pointer-events-auto {
|
|
570
|
+
pointer-events: auto;
|
|
571
|
+
}
|
|
569
572
|
.visible {
|
|
570
573
|
visibility: visible;
|
|
571
574
|
}
|
|
@@ -599,6 +602,9 @@ video {
|
|
|
599
602
|
.left-0 {
|
|
600
603
|
left: 0px;
|
|
601
604
|
}
|
|
605
|
+
.left-1 {
|
|
606
|
+
left: 0.25rem;
|
|
607
|
+
}
|
|
602
608
|
.left-1\/2 {
|
|
603
609
|
left: 50%;
|
|
604
610
|
}
|
|
@@ -662,22 +668,60 @@ video {
|
|
|
662
668
|
.z-\[99999\] {
|
|
663
669
|
z-index: 99999;
|
|
664
670
|
}
|
|
671
|
+
.z-\[9999\] {
|
|
672
|
+
z-index: 9999;
|
|
673
|
+
}
|
|
665
674
|
.col-span-2 {
|
|
666
675
|
grid-column: span 2 / span 2;
|
|
667
676
|
}
|
|
677
|
+
.m-0 {
|
|
678
|
+
margin: 0px;
|
|
679
|
+
}
|
|
680
|
+
.m-3 {
|
|
681
|
+
margin: 0.75rem;
|
|
682
|
+
}
|
|
683
|
+
.mx-0\.5 {
|
|
684
|
+
margin-left: 0.125rem;
|
|
685
|
+
margin-right: 0.125rem;
|
|
686
|
+
}
|
|
687
|
+
.mx-1 {
|
|
688
|
+
margin-left: 0.25rem;
|
|
689
|
+
margin-right: 0.25rem;
|
|
690
|
+
}
|
|
691
|
+
.mx-2 {
|
|
692
|
+
margin-left: 0.5rem;
|
|
693
|
+
margin-right: 0.5rem;
|
|
694
|
+
}
|
|
668
695
|
.mx-auto {
|
|
669
696
|
margin-left: auto;
|
|
670
697
|
margin-right: auto;
|
|
671
698
|
}
|
|
699
|
+
.my-1 {
|
|
700
|
+
margin-top: 0.25rem;
|
|
701
|
+
margin-bottom: 0.25rem;
|
|
702
|
+
}
|
|
703
|
+
.my-2 {
|
|
704
|
+
margin-top: 0.5rem;
|
|
705
|
+
margin-bottom: 0.5rem;
|
|
706
|
+
}
|
|
707
|
+
.-ml-1 {
|
|
708
|
+
margin-left: -0.25rem;
|
|
709
|
+
}
|
|
672
710
|
.-mt-1 {
|
|
673
711
|
margin-top: -0.25rem;
|
|
674
712
|
}
|
|
713
|
+
.mb-0\.5 {
|
|
714
|
+
margin-bottom: 0.125rem;
|
|
715
|
+
}
|
|
675
716
|
.mb-1 {
|
|
676
717
|
margin-bottom: 0.25rem;
|
|
677
718
|
}
|
|
678
719
|
.mb-2 {
|
|
679
720
|
margin-bottom: 0.5rem;
|
|
680
721
|
}
|
|
722
|
+
.mb-2\.5 {
|
|
723
|
+
margin-bottom: 0.625rem;
|
|
724
|
+
}
|
|
681
725
|
.mb-3 {
|
|
682
726
|
margin-bottom: 0.75rem;
|
|
683
727
|
}
|
|
@@ -699,6 +743,12 @@ video {
|
|
|
699
743
|
.mb-\[8px\] {
|
|
700
744
|
margin-bottom: 8px;
|
|
701
745
|
}
|
|
746
|
+
.ml-0 {
|
|
747
|
+
margin-left: 0px;
|
|
748
|
+
}
|
|
749
|
+
.ml-0\.5 {
|
|
750
|
+
margin-left: 0.125rem;
|
|
751
|
+
}
|
|
702
752
|
.ml-1 {
|
|
703
753
|
margin-left: 0.25rem;
|
|
704
754
|
}
|
|
@@ -708,12 +758,18 @@ video {
|
|
|
708
758
|
.ml-2 {
|
|
709
759
|
margin-left: 0.5rem;
|
|
710
760
|
}
|
|
761
|
+
.ml-3 {
|
|
762
|
+
margin-left: 0.75rem;
|
|
763
|
+
}
|
|
711
764
|
.ml-4 {
|
|
712
765
|
margin-left: 1rem;
|
|
713
766
|
}
|
|
714
767
|
.ml-\[56px\] {
|
|
715
768
|
margin-left: 56px;
|
|
716
769
|
}
|
|
770
|
+
.ml-auto {
|
|
771
|
+
margin-left: auto;
|
|
772
|
+
}
|
|
717
773
|
.mr-1 {
|
|
718
774
|
margin-right: 0.25rem;
|
|
719
775
|
}
|
|
@@ -738,6 +794,9 @@ video {
|
|
|
738
794
|
.mt-2 {
|
|
739
795
|
margin-top: 0.5rem;
|
|
740
796
|
}
|
|
797
|
+
.mt-2\.5 {
|
|
798
|
+
margin-top: 0.625rem;
|
|
799
|
+
}
|
|
741
800
|
.mt-3 {
|
|
742
801
|
margin-top: 0.75rem;
|
|
743
802
|
}
|
|
@@ -756,6 +815,21 @@ video {
|
|
|
756
815
|
.box-border {
|
|
757
816
|
box-sizing: border-box;
|
|
758
817
|
}
|
|
818
|
+
.line-clamp-2 {
|
|
819
|
+
overflow: hidden;
|
|
820
|
+
display: -webkit-box;
|
|
821
|
+
-webkit-box-orient: vertical;
|
|
822
|
+
-webkit-line-clamp: 2;
|
|
823
|
+
}
|
|
824
|
+
.line-clamp-3 {
|
|
825
|
+
overflow: hidden;
|
|
826
|
+
display: -webkit-box;
|
|
827
|
+
-webkit-box-orient: vertical;
|
|
828
|
+
-webkit-line-clamp: 3;
|
|
829
|
+
}
|
|
830
|
+
.\!block {
|
|
831
|
+
display: block !important;
|
|
832
|
+
}
|
|
759
833
|
.block {
|
|
760
834
|
display: block;
|
|
761
835
|
}
|
|
@@ -823,18 +897,27 @@ video {
|
|
|
823
897
|
.h-0\.5 {
|
|
824
898
|
height: 0.125rem;
|
|
825
899
|
}
|
|
900
|
+
.h-1 {
|
|
901
|
+
height: 0.25rem;
|
|
902
|
+
}
|
|
826
903
|
.h-10 {
|
|
827
904
|
height: 2.5rem;
|
|
828
905
|
}
|
|
829
906
|
.h-12 {
|
|
830
907
|
height: 3rem;
|
|
831
908
|
}
|
|
909
|
+
.h-16 {
|
|
910
|
+
height: 4rem;
|
|
911
|
+
}
|
|
832
912
|
.h-2 {
|
|
833
913
|
height: 0.5rem;
|
|
834
914
|
}
|
|
835
915
|
.h-3 {
|
|
836
916
|
height: 0.75rem;
|
|
837
917
|
}
|
|
918
|
+
.h-3\.5 {
|
|
919
|
+
height: 0.875rem;
|
|
920
|
+
}
|
|
838
921
|
.h-32 {
|
|
839
922
|
height: 8rem;
|
|
840
923
|
}
|
|
@@ -850,6 +933,15 @@ video {
|
|
|
850
933
|
.h-64 {
|
|
851
934
|
height: 16rem;
|
|
852
935
|
}
|
|
936
|
+
.h-7 {
|
|
937
|
+
height: 1.75rem;
|
|
938
|
+
}
|
|
939
|
+
.h-8 {
|
|
940
|
+
height: 2rem;
|
|
941
|
+
}
|
|
942
|
+
.h-9 {
|
|
943
|
+
height: 2.25rem;
|
|
944
|
+
}
|
|
853
945
|
.h-\[12px\] {
|
|
854
946
|
height: 12px;
|
|
855
947
|
}
|
|
@@ -859,9 +951,15 @@ video {
|
|
|
859
951
|
.h-\[16px\] {
|
|
860
952
|
height: 16px;
|
|
861
953
|
}
|
|
954
|
+
.h-\[18px\] {
|
|
955
|
+
height: 18px;
|
|
956
|
+
}
|
|
862
957
|
.h-\[1px\] {
|
|
863
958
|
height: 1px;
|
|
864
959
|
}
|
|
960
|
+
.h-\[22px\] {
|
|
961
|
+
height: 22px;
|
|
962
|
+
}
|
|
865
963
|
.h-\[24px\] {
|
|
866
964
|
height: 24px;
|
|
867
965
|
}
|
|
@@ -874,6 +972,9 @@ video {
|
|
|
874
972
|
.h-\[32px\] {
|
|
875
973
|
height: 32px;
|
|
876
974
|
}
|
|
975
|
+
.h-\[34px\] {
|
|
976
|
+
height: 34px;
|
|
977
|
+
}
|
|
877
978
|
.h-\[40px\] {
|
|
878
979
|
height: 40px;
|
|
879
980
|
}
|
|
@@ -889,6 +990,9 @@ video {
|
|
|
889
990
|
.h-\[4px\] {
|
|
890
991
|
height: 4px;
|
|
891
992
|
}
|
|
993
|
+
.h-\[52px\] {
|
|
994
|
+
height: 52px;
|
|
995
|
+
}
|
|
892
996
|
.h-\[56px\] {
|
|
893
997
|
height: 56px;
|
|
894
998
|
}
|
|
@@ -904,6 +1008,9 @@ video {
|
|
|
904
1008
|
.h-\[calc\(100\%\+40px\)\] {
|
|
905
1009
|
height: calc(100% + 40px);
|
|
906
1010
|
}
|
|
1011
|
+
.h-\[calc\(100\%-24px\)\] {
|
|
1012
|
+
height: calc(100% - 24px);
|
|
1013
|
+
}
|
|
907
1014
|
.h-\[calc\(100\%-64px\)\] {
|
|
908
1015
|
height: calc(100% - 64px);
|
|
909
1016
|
}
|
|
@@ -925,12 +1032,27 @@ video {
|
|
|
925
1032
|
.max-h-80 {
|
|
926
1033
|
max-height: 20rem;
|
|
927
1034
|
}
|
|
1035
|
+
.max-h-\[100px\] {
|
|
1036
|
+
max-height: 100px;
|
|
1037
|
+
}
|
|
1038
|
+
.max-h-\[200px\] {
|
|
1039
|
+
max-height: 200px;
|
|
1040
|
+
}
|
|
928
1041
|
.max-h-\[300px\] {
|
|
929
1042
|
max-height: 300px;
|
|
930
1043
|
}
|
|
931
1044
|
.max-h-\[320px\] {
|
|
932
1045
|
max-height: 320px;
|
|
933
1046
|
}
|
|
1047
|
+
.max-h-\[360px\] {
|
|
1048
|
+
max-height: 360px;
|
|
1049
|
+
}
|
|
1050
|
+
.max-h-\[70vh\] {
|
|
1051
|
+
max-height: 70vh;
|
|
1052
|
+
}
|
|
1053
|
+
.max-h-\[80vh\] {
|
|
1054
|
+
max-height: 80vh;
|
|
1055
|
+
}
|
|
934
1056
|
.max-h-\[calc\(100\%-40px\)\] {
|
|
935
1057
|
max-height: calc(100% - 40px);
|
|
936
1058
|
}
|
|
@@ -940,6 +1062,12 @@ video {
|
|
|
940
1062
|
.min-h-0 {
|
|
941
1063
|
min-height: 0px;
|
|
942
1064
|
}
|
|
1065
|
+
.min-h-\[200px\] {
|
|
1066
|
+
min-height: 200px;
|
|
1067
|
+
}
|
|
1068
|
+
.min-h-\[36px\] {
|
|
1069
|
+
min-height: 36px;
|
|
1070
|
+
}
|
|
943
1071
|
.min-h-\[380px\] {
|
|
944
1072
|
min-height: 380px;
|
|
945
1073
|
}
|
|
@@ -973,6 +1101,9 @@ video {
|
|
|
973
1101
|
.w-3 {
|
|
974
1102
|
width: 0.75rem;
|
|
975
1103
|
}
|
|
1104
|
+
.w-3\.5 {
|
|
1105
|
+
width: 0.875rem;
|
|
1106
|
+
}
|
|
976
1107
|
.w-32 {
|
|
977
1108
|
width: 8rem;
|
|
978
1109
|
}
|
|
@@ -991,6 +1122,18 @@ video {
|
|
|
991
1122
|
.w-64 {
|
|
992
1123
|
width: 16rem;
|
|
993
1124
|
}
|
|
1125
|
+
.w-7 {
|
|
1126
|
+
width: 1.75rem;
|
|
1127
|
+
}
|
|
1128
|
+
.w-8 {
|
|
1129
|
+
width: 2rem;
|
|
1130
|
+
}
|
|
1131
|
+
.w-9 {
|
|
1132
|
+
width: 2.25rem;
|
|
1133
|
+
}
|
|
1134
|
+
.w-\[120px\] {
|
|
1135
|
+
width: 120px;
|
|
1136
|
+
}
|
|
994
1137
|
.w-\[12px\] {
|
|
995
1138
|
width: 12px;
|
|
996
1139
|
}
|
|
@@ -1000,6 +1143,9 @@ video {
|
|
|
1000
1143
|
.w-\[16px\] {
|
|
1001
1144
|
width: 16px;
|
|
1002
1145
|
}
|
|
1146
|
+
.w-\[18px\] {
|
|
1147
|
+
width: 18px;
|
|
1148
|
+
}
|
|
1003
1149
|
.w-\[1px\] {
|
|
1004
1150
|
width: 1px;
|
|
1005
1151
|
}
|
|
@@ -1009,6 +1155,9 @@ video {
|
|
|
1009
1155
|
.w-\[210px\] {
|
|
1010
1156
|
width: 210px;
|
|
1011
1157
|
}
|
|
1158
|
+
.w-\[22px\] {
|
|
1159
|
+
width: 22px;
|
|
1160
|
+
}
|
|
1012
1161
|
.w-\[24px\] {
|
|
1013
1162
|
width: 24px;
|
|
1014
1163
|
}
|
|
@@ -1018,18 +1167,30 @@ video {
|
|
|
1018
1167
|
.w-\[280px\] {
|
|
1019
1168
|
width: 280px;
|
|
1020
1169
|
}
|
|
1170
|
+
.w-\[300px\] {
|
|
1171
|
+
width: 300px;
|
|
1172
|
+
}
|
|
1021
1173
|
.w-\[320px\] {
|
|
1022
1174
|
width: 320px;
|
|
1023
1175
|
}
|
|
1024
1176
|
.w-\[32px\] {
|
|
1025
1177
|
width: 32px;
|
|
1026
1178
|
}
|
|
1179
|
+
.w-\[34px\] {
|
|
1180
|
+
width: 34px;
|
|
1181
|
+
}
|
|
1182
|
+
.w-\[40\%\] {
|
|
1183
|
+
width: 40%;
|
|
1184
|
+
}
|
|
1027
1185
|
.w-\[400px\] {
|
|
1028
1186
|
width: 400px;
|
|
1029
1187
|
}
|
|
1030
1188
|
.w-\[48px\] {
|
|
1031
1189
|
width: 48px;
|
|
1032
1190
|
}
|
|
1191
|
+
.w-\[52px\] {
|
|
1192
|
+
width: 52px;
|
|
1193
|
+
}
|
|
1033
1194
|
.w-\[600px\] {
|
|
1034
1195
|
width: 600px;
|
|
1035
1196
|
}
|
|
@@ -1042,6 +1203,9 @@ video {
|
|
|
1042
1203
|
.w-\[8px\] {
|
|
1043
1204
|
width: 8px;
|
|
1044
1205
|
}
|
|
1206
|
+
.w-\[90\%\] {
|
|
1207
|
+
width: 90%;
|
|
1208
|
+
}
|
|
1045
1209
|
.w-full {
|
|
1046
1210
|
width: 100%;
|
|
1047
1211
|
}
|
|
@@ -1049,12 +1213,27 @@ video {
|
|
|
1049
1213
|
width: -moz-max-content;
|
|
1050
1214
|
width: max-content;
|
|
1051
1215
|
}
|
|
1216
|
+
.w-px {
|
|
1217
|
+
width: 1px;
|
|
1218
|
+
}
|
|
1052
1219
|
.w-screen {
|
|
1053
1220
|
width: 100vw;
|
|
1054
1221
|
}
|
|
1055
1222
|
.min-w-0 {
|
|
1056
1223
|
min-width: 0px;
|
|
1057
1224
|
}
|
|
1225
|
+
.min-w-7 {
|
|
1226
|
+
min-width: 1.75rem;
|
|
1227
|
+
}
|
|
1228
|
+
.min-w-\[150px\] {
|
|
1229
|
+
min-width: 150px;
|
|
1230
|
+
}
|
|
1231
|
+
.min-w-\[180px\] {
|
|
1232
|
+
min-width: 180px;
|
|
1233
|
+
}
|
|
1234
|
+
.min-w-\[18px\] {
|
|
1235
|
+
min-width: 18px;
|
|
1236
|
+
}
|
|
1058
1237
|
.min-w-\[200px\] {
|
|
1059
1238
|
min-width: 200px;
|
|
1060
1239
|
}
|
|
@@ -1064,9 +1243,15 @@ video {
|
|
|
1064
1243
|
.min-w-\[240px\] {
|
|
1065
1244
|
min-width: 240px;
|
|
1066
1245
|
}
|
|
1246
|
+
.min-w-\[280px\] {
|
|
1247
|
+
min-width: 280px;
|
|
1248
|
+
}
|
|
1067
1249
|
.min-w-\[300px\] {
|
|
1068
1250
|
min-width: 300px;
|
|
1069
1251
|
}
|
|
1252
|
+
.min-w-\[340px\] {
|
|
1253
|
+
min-width: 340px;
|
|
1254
|
+
}
|
|
1070
1255
|
.min-w-fit {
|
|
1071
1256
|
min-width: -moz-fit-content;
|
|
1072
1257
|
min-width: fit-content;
|
|
@@ -1083,12 +1268,30 @@ video {
|
|
|
1083
1268
|
.max-w-\[1400px\] {
|
|
1084
1269
|
max-width: 1400px;
|
|
1085
1270
|
}
|
|
1271
|
+
.max-w-\[150px\] {
|
|
1272
|
+
max-width: 150px;
|
|
1273
|
+
}
|
|
1274
|
+
.max-w-\[200px\] {
|
|
1275
|
+
max-width: 200px;
|
|
1276
|
+
}
|
|
1086
1277
|
.max-w-\[352px\] {
|
|
1087
1278
|
max-width: 352px;
|
|
1088
1279
|
}
|
|
1280
|
+
.max-w-\[500px\] {
|
|
1281
|
+
max-width: 500px;
|
|
1282
|
+
}
|
|
1283
|
+
.max-w-\[600px\] {
|
|
1284
|
+
max-width: 600px;
|
|
1285
|
+
}
|
|
1089
1286
|
.max-w-\[80\%\] {
|
|
1090
1287
|
max-width: 80%;
|
|
1091
1288
|
}
|
|
1289
|
+
.max-w-\[85\%\] {
|
|
1290
|
+
max-width: 85%;
|
|
1291
|
+
}
|
|
1292
|
+
.max-w-full {
|
|
1293
|
+
max-width: 100%;
|
|
1294
|
+
}
|
|
1092
1295
|
.max-w-lg {
|
|
1093
1296
|
max-width: 32rem;
|
|
1094
1297
|
}
|
|
@@ -1138,6 +1341,11 @@ video {
|
|
|
1138
1341
|
--tw-rotate: 90deg;
|
|
1139
1342
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
1140
1343
|
}
|
|
1344
|
+
.scale-105 {
|
|
1345
|
+
--tw-scale-x: 1.05;
|
|
1346
|
+
--tw-scale-y: 1.05;
|
|
1347
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
1348
|
+
}
|
|
1141
1349
|
.scale-50 {
|
|
1142
1350
|
--tw-scale-x: .5;
|
|
1143
1351
|
--tw-scale-y: .5;
|
|
@@ -1146,6 +1354,27 @@ video {
|
|
|
1146
1354
|
.transform {
|
|
1147
1355
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
1148
1356
|
}
|
|
1357
|
+
.animate-\[ai-backdrop-in_0\.2s_ease-out\] {
|
|
1358
|
+
animation: ai-backdrop-in 0.2s ease-out;
|
|
1359
|
+
}
|
|
1360
|
+
.animate-\[ai-drawer-slide-up_0\.4s_cubic-bezier\(0\.4\2c 0\2c 0\.2\2c 1\)\] {
|
|
1361
|
+
animation: ai-drawer-slide-up 0.4s cubic-bezier(0.4,0,0.2,1);
|
|
1362
|
+
}
|
|
1363
|
+
.animate-\[ai-loading-slide_1\.5s_ease-in-out_infinite\] {
|
|
1364
|
+
animation: ai-loading-slide 1.5s ease-in-out infinite;
|
|
1365
|
+
}
|
|
1366
|
+
.animate-\[ai-message-in_0\.3s_ease-out\] {
|
|
1367
|
+
animation: ai-message-in 0.3s ease-out;
|
|
1368
|
+
}
|
|
1369
|
+
.animate-\[ai-new-selection-in_0\.3s_ease-out\] {
|
|
1370
|
+
animation: ai-new-selection-in 0.3s ease-out;
|
|
1371
|
+
}
|
|
1372
|
+
.animate-\[ai-panel-slide-in_0\.3s_cubic-bezier\(0\.4\2c 0\2c 0\.2\2c 1\)\] {
|
|
1373
|
+
animation: ai-panel-slide-in 0.3s cubic-bezier(0.4,0,0.2,1);
|
|
1374
|
+
}
|
|
1375
|
+
.animate-\[ai-popup-scale-in_0\.3s_cubic-bezier\(0\.4\2c 0\2c 0\.2\2c 1\)\] {
|
|
1376
|
+
animation: ai-popup-scale-in 0.3s cubic-bezier(0.4,0,0.2,1);
|
|
1377
|
+
}
|
|
1149
1378
|
@keyframes pulse {
|
|
1150
1379
|
|
|
1151
1380
|
50% {
|
|
@@ -1164,6 +1393,12 @@ video {
|
|
|
1164
1393
|
.animate-spin {
|
|
1165
1394
|
animation: spin 1s linear infinite;
|
|
1166
1395
|
}
|
|
1396
|
+
.cursor-default {
|
|
1397
|
+
cursor: default;
|
|
1398
|
+
}
|
|
1399
|
+
.cursor-grab {
|
|
1400
|
+
cursor: grab;
|
|
1401
|
+
}
|
|
1167
1402
|
.cursor-help {
|
|
1168
1403
|
cursor: help;
|
|
1169
1404
|
}
|
|
@@ -1199,6 +1434,9 @@ video {
|
|
|
1199
1434
|
.flex-row {
|
|
1200
1435
|
flex-direction: row;
|
|
1201
1436
|
}
|
|
1437
|
+
.flex-row-reverse {
|
|
1438
|
+
flex-direction: row-reverse;
|
|
1439
|
+
}
|
|
1202
1440
|
.flex-col {
|
|
1203
1441
|
flex-direction: column;
|
|
1204
1442
|
}
|
|
@@ -1235,6 +1473,9 @@ video {
|
|
|
1235
1473
|
.justify-between {
|
|
1236
1474
|
justify-content: space-between;
|
|
1237
1475
|
}
|
|
1476
|
+
.gap-0\.5 {
|
|
1477
|
+
gap: 0.125rem;
|
|
1478
|
+
}
|
|
1238
1479
|
.gap-1 {
|
|
1239
1480
|
gap: 0.25rem;
|
|
1240
1481
|
}
|
|
@@ -1244,6 +1485,9 @@ video {
|
|
|
1244
1485
|
.gap-2 {
|
|
1245
1486
|
gap: 0.5rem;
|
|
1246
1487
|
}
|
|
1488
|
+
.gap-2\.5 {
|
|
1489
|
+
gap: 0.625rem;
|
|
1490
|
+
}
|
|
1247
1491
|
.gap-3 {
|
|
1248
1492
|
gap: 0.75rem;
|
|
1249
1493
|
}
|
|
@@ -1271,6 +1515,11 @@ video {
|
|
|
1271
1515
|
.gap-\[8px\] {
|
|
1272
1516
|
gap: 8px;
|
|
1273
1517
|
}
|
|
1518
|
+
.space-x-1 > :not([hidden]) ~ :not([hidden]) {
|
|
1519
|
+
--tw-space-x-reverse: 0;
|
|
1520
|
+
margin-right: calc(0.25rem * var(--tw-space-x-reverse));
|
|
1521
|
+
margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));
|
|
1522
|
+
}
|
|
1274
1523
|
.space-y-1 > :not([hidden]) ~ :not([hidden]) {
|
|
1275
1524
|
--tw-space-y-reverse: 0;
|
|
1276
1525
|
margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
|
|
@@ -1320,6 +1569,12 @@ video {
|
|
|
1320
1569
|
.overflow-x-hidden {
|
|
1321
1570
|
overflow-x: hidden;
|
|
1322
1571
|
}
|
|
1572
|
+
.overflow-y-hidden {
|
|
1573
|
+
overflow-y: hidden;
|
|
1574
|
+
}
|
|
1575
|
+
.scroll-smooth {
|
|
1576
|
+
scroll-behavior: smooth;
|
|
1577
|
+
}
|
|
1323
1578
|
.truncate {
|
|
1324
1579
|
overflow: hidden;
|
|
1325
1580
|
text-overflow: ellipsis;
|
|
@@ -1346,12 +1601,21 @@ video {
|
|
|
1346
1601
|
.rounded {
|
|
1347
1602
|
border-radius: 0.25rem;
|
|
1348
1603
|
}
|
|
1604
|
+
.rounded-2xl {
|
|
1605
|
+
border-radius: 1rem;
|
|
1606
|
+
}
|
|
1349
1607
|
.rounded-\[10px\] {
|
|
1350
1608
|
border-radius: 10px;
|
|
1351
1609
|
}
|
|
1352
1610
|
.rounded-\[12px\] {
|
|
1353
1611
|
border-radius: 12px;
|
|
1354
1612
|
}
|
|
1613
|
+
.rounded-\[14px\] {
|
|
1614
|
+
border-radius: 14px;
|
|
1615
|
+
}
|
|
1616
|
+
.rounded-\[20px\] {
|
|
1617
|
+
border-radius: 20px;
|
|
1618
|
+
}
|
|
1355
1619
|
.rounded-\[4px\] {
|
|
1356
1620
|
border-radius: 4px;
|
|
1357
1621
|
}
|
|
@@ -1376,6 +1640,30 @@ video {
|
|
|
1376
1640
|
.rounded-md {
|
|
1377
1641
|
border-radius: calc(var(--radius) - 2px);
|
|
1378
1642
|
}
|
|
1643
|
+
.rounded-sm {
|
|
1644
|
+
border-radius: calc(var(--radius) - 4px);
|
|
1645
|
+
}
|
|
1646
|
+
.rounded-xl {
|
|
1647
|
+
border-radius: 0.75rem;
|
|
1648
|
+
}
|
|
1649
|
+
.rounded-b-xl {
|
|
1650
|
+
border-bottom-right-radius: 0.75rem;
|
|
1651
|
+
border-bottom-left-radius: 0.75rem;
|
|
1652
|
+
}
|
|
1653
|
+
.rounded-t-\[24px\] {
|
|
1654
|
+
border-top-left-radius: 24px;
|
|
1655
|
+
border-top-right-radius: 24px;
|
|
1656
|
+
}
|
|
1657
|
+
.rounded-t-xl {
|
|
1658
|
+
border-top-left-radius: 0.75rem;
|
|
1659
|
+
border-top-right-radius: 0.75rem;
|
|
1660
|
+
}
|
|
1661
|
+
.rounded-bl-md {
|
|
1662
|
+
border-bottom-left-radius: calc(var(--radius) - 2px);
|
|
1663
|
+
}
|
|
1664
|
+
.rounded-br-md {
|
|
1665
|
+
border-bottom-right-radius: calc(var(--radius) - 2px);
|
|
1666
|
+
}
|
|
1379
1667
|
.border {
|
|
1380
1668
|
border-width: 1px;
|
|
1381
1669
|
}
|
|
@@ -1385,6 +1673,9 @@ video {
|
|
|
1385
1673
|
.border-2 {
|
|
1386
1674
|
border-width: 2px;
|
|
1387
1675
|
}
|
|
1676
|
+
.border-\[1\.5px\] {
|
|
1677
|
+
border-width: 1.5px;
|
|
1678
|
+
}
|
|
1388
1679
|
.border-b {
|
|
1389
1680
|
border-bottom-width: 1px;
|
|
1390
1681
|
}
|
|
@@ -1397,6 +1688,9 @@ video {
|
|
|
1397
1688
|
.border-l-2 {
|
|
1398
1689
|
border-left-width: 2px;
|
|
1399
1690
|
}
|
|
1691
|
+
.border-l-\[3px\] {
|
|
1692
|
+
border-left-width: 3px;
|
|
1693
|
+
}
|
|
1400
1694
|
.border-l-\[4px\] {
|
|
1401
1695
|
border-left-width: 4px;
|
|
1402
1696
|
}
|
|
@@ -1446,10 +1740,20 @@ video {
|
|
|
1446
1740
|
.border-\[0px_0px_1px\] {
|
|
1447
1741
|
border-color: 0px 0px 1px;
|
|
1448
1742
|
}
|
|
1743
|
+
.border-black\/5 {
|
|
1744
|
+
border-color: rgb(0 0 0 / 0.05);
|
|
1745
|
+
}
|
|
1746
|
+
.border-black\/\[0\.08\] {
|
|
1747
|
+
border-color: rgb(0 0 0 / 0.08);
|
|
1748
|
+
}
|
|
1449
1749
|
.border-blue-200 {
|
|
1450
1750
|
--tw-border-opacity: 1;
|
|
1451
1751
|
border-color: rgb(178 204 255 / var(--tw-border-opacity, 1));
|
|
1452
1752
|
}
|
|
1753
|
+
.border-blue-300 {
|
|
1754
|
+
--tw-border-opacity: 1;
|
|
1755
|
+
border-color: rgb(132 173 255 / var(--tw-border-opacity, 1));
|
|
1756
|
+
}
|
|
1453
1757
|
.border-blue-500 {
|
|
1454
1758
|
--tw-border-opacity: 1;
|
|
1455
1759
|
border-color: rgb(41 112 255 / var(--tw-border-opacity, 1));
|
|
@@ -1471,6 +1775,9 @@ video {
|
|
|
1471
1775
|
.border-gray-300 {
|
|
1472
1776
|
border-color: var(--colors-border-border-primary, #D0D5DD);
|
|
1473
1777
|
}
|
|
1778
|
+
.border-gray-600 {
|
|
1779
|
+
border-color: var(--component-colors-utility-gray-utility-gray-600, #475467);
|
|
1780
|
+
}
|
|
1474
1781
|
.border-gray-700 {
|
|
1475
1782
|
border-color: var(--colors-foreground-fg-secondary-700, #344054);
|
|
1476
1783
|
}
|
|
@@ -1490,9 +1797,31 @@ video {
|
|
|
1490
1797
|
--tw-border-opacity: 1;
|
|
1491
1798
|
border-color: rgb(254 202 202 / var(--tw-border-opacity, 1));
|
|
1492
1799
|
}
|
|
1800
|
+
.border-red-500\/30 {
|
|
1801
|
+
border-color: rgb(239 68 68 / 0.3);
|
|
1802
|
+
}
|
|
1493
1803
|
.border-transparent {
|
|
1494
1804
|
border-color: transparent;
|
|
1495
1805
|
}
|
|
1806
|
+
.border-violet-500 {
|
|
1807
|
+
--tw-border-opacity: 1;
|
|
1808
|
+
border-color: rgb(139 92 246 / var(--tw-border-opacity, 1));
|
|
1809
|
+
}
|
|
1810
|
+
.border-violet-500\/20 {
|
|
1811
|
+
border-color: rgb(139 92 246 / 0.2);
|
|
1812
|
+
}
|
|
1813
|
+
.border-violet-500\/30 {
|
|
1814
|
+
border-color: rgb(139 92 246 / 0.3);
|
|
1815
|
+
}
|
|
1816
|
+
.border-white\/10 {
|
|
1817
|
+
border-color: rgb(255 255 255 / 0.1);
|
|
1818
|
+
}
|
|
1819
|
+
.border-white\/5 {
|
|
1820
|
+
border-color: rgb(255 255 255 / 0.05);
|
|
1821
|
+
}
|
|
1822
|
+
.border-white\/50 {
|
|
1823
|
+
border-color: rgb(255 255 255 / 0.5);
|
|
1824
|
+
}
|
|
1496
1825
|
.border-r-gray-900 {
|
|
1497
1826
|
border-right-color: var(--colors-text-text-primary-900, #101828);
|
|
1498
1827
|
}
|
|
@@ -1537,9 +1866,27 @@ video {
|
|
|
1537
1866
|
--tw-bg-opacity: 1;
|
|
1538
1867
|
background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
|
|
1539
1868
|
}
|
|
1869
|
+
.bg-black\/10 {
|
|
1870
|
+
background-color: rgb(0 0 0 / 0.1);
|
|
1871
|
+
}
|
|
1872
|
+
.bg-black\/20 {
|
|
1873
|
+
background-color: rgb(0 0 0 / 0.2);
|
|
1874
|
+
}
|
|
1875
|
+
.bg-black\/5 {
|
|
1876
|
+
background-color: rgb(0 0 0 / 0.05);
|
|
1877
|
+
}
|
|
1540
1878
|
.bg-black\/60 {
|
|
1541
1879
|
background-color: rgb(0 0 0 / 0.6);
|
|
1542
1880
|
}
|
|
1881
|
+
.bg-black\/\[0\.02\] {
|
|
1882
|
+
background-color: rgb(0 0 0 / 0.02);
|
|
1883
|
+
}
|
|
1884
|
+
.bg-black\/\[0\.03\] {
|
|
1885
|
+
background-color: rgb(0 0 0 / 0.03);
|
|
1886
|
+
}
|
|
1887
|
+
.bg-black\/\[0\.04\] {
|
|
1888
|
+
background-color: rgb(0 0 0 / 0.04);
|
|
1889
|
+
}
|
|
1543
1890
|
.bg-blue-100 {
|
|
1544
1891
|
--tw-bg-opacity: 1;
|
|
1545
1892
|
background-color: rgb(209 224 255 / var(--tw-bg-opacity, 1));
|
|
@@ -1563,6 +1910,10 @@ video {
|
|
|
1563
1910
|
.bg-card {
|
|
1564
1911
|
background-color: var(--colors-background-bg-primary, #FFFFFF);
|
|
1565
1912
|
}
|
|
1913
|
+
.bg-emerald-500 {
|
|
1914
|
+
--tw-bg-opacity: 1;
|
|
1915
|
+
background-color: rgb(16 185 129 / var(--tw-bg-opacity, 1));
|
|
1916
|
+
}
|
|
1566
1917
|
.bg-error-500 {
|
|
1567
1918
|
--tw-bg-opacity: 1;
|
|
1568
1919
|
background-color: rgb(240 68 56 / var(--tw-bg-opacity, 1));
|
|
@@ -1640,13 +1991,44 @@ video {
|
|
|
1640
1991
|
--tw-bg-opacity: 1;
|
|
1641
1992
|
background-color: rgb(239 68 68 / var(--tw-bg-opacity, 1));
|
|
1642
1993
|
}
|
|
1994
|
+
.bg-red-900\/30 {
|
|
1995
|
+
background-color: rgb(127 29 29 / 0.3);
|
|
1996
|
+
}
|
|
1643
1997
|
.bg-transparent {
|
|
1644
1998
|
background-color: transparent;
|
|
1645
1999
|
}
|
|
2000
|
+
.bg-violet-50 {
|
|
2001
|
+
--tw-bg-opacity: 1;
|
|
2002
|
+
background-color: rgb(245 243 255 / var(--tw-bg-opacity, 1));
|
|
2003
|
+
}
|
|
2004
|
+
.bg-violet-500\/10 {
|
|
2005
|
+
background-color: rgb(139 92 246 / 0.1);
|
|
2006
|
+
}
|
|
2007
|
+
.bg-violet-500\/20 {
|
|
2008
|
+
background-color: rgb(139 92 246 / 0.2);
|
|
2009
|
+
}
|
|
1646
2010
|
.bg-white {
|
|
1647
2011
|
--tw-bg-opacity: 1;
|
|
1648
2012
|
background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
|
|
1649
2013
|
}
|
|
2014
|
+
.bg-white\/10 {
|
|
2015
|
+
background-color: rgb(255 255 255 / 0.1);
|
|
2016
|
+
}
|
|
2017
|
+
.bg-white\/15 {
|
|
2018
|
+
background-color: rgb(255 255 255 / 0.15);
|
|
2019
|
+
}
|
|
2020
|
+
.bg-white\/20 {
|
|
2021
|
+
background-color: rgb(255 255 255 / 0.2);
|
|
2022
|
+
}
|
|
2023
|
+
.bg-white\/5 {
|
|
2024
|
+
background-color: rgb(255 255 255 / 0.05);
|
|
2025
|
+
}
|
|
2026
|
+
.bg-white\/60 {
|
|
2027
|
+
background-color: rgb(255 255 255 / 0.6);
|
|
2028
|
+
}
|
|
2029
|
+
.bg-white\/\[0\.02\] {
|
|
2030
|
+
background-color: rgb(255 255 255 / 0.02);
|
|
2031
|
+
}
|
|
1650
2032
|
.bg-yellow-50 {
|
|
1651
2033
|
--tw-bg-opacity: 1;
|
|
1652
2034
|
background-color: rgb(254 252 232 / var(--tw-bg-opacity, 1));
|
|
@@ -1664,29 +2046,122 @@ video {
|
|
|
1664
2046
|
.bg-opacity-90 {
|
|
1665
2047
|
--tw-bg-opacity: 0.9;
|
|
1666
2048
|
}
|
|
2049
|
+
.bg-gradient-to-b {
|
|
2050
|
+
background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
|
|
2051
|
+
}
|
|
2052
|
+
.bg-gradient-to-br {
|
|
2053
|
+
background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
|
|
2054
|
+
}
|
|
1667
2055
|
.bg-gradient-to-r {
|
|
1668
2056
|
background-image: linear-gradient(to right, var(--tw-gradient-stops));
|
|
1669
2057
|
}
|
|
2058
|
+
.from-blue-500 {
|
|
2059
|
+
--tw-gradient-from: #2970FF var(--tw-gradient-from-position);
|
|
2060
|
+
--tw-gradient-to: rgb(41 112 255 / 0) var(--tw-gradient-to-position);
|
|
2061
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
|
2062
|
+
}
|
|
2063
|
+
.from-gray-200 {
|
|
2064
|
+
--tw-gradient-from: var(--colors-background-bg-quaternary, #EAECF0) var(--tw-gradient-from-position);
|
|
2065
|
+
--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);
|
|
2066
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
|
2067
|
+
}
|
|
2068
|
+
.from-gray-50 {
|
|
2069
|
+
--tw-gradient-from: var(--colors-background-bg-active, #F9FAFB) var(--tw-gradient-from-position);
|
|
2070
|
+
--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);
|
|
2071
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
|
2072
|
+
}
|
|
2073
|
+
.from-gray-600 {
|
|
2074
|
+
--tw-gradient-from: var(--component-colors-utility-gray-utility-gray-600, #475467) var(--tw-gradient-from-position);
|
|
2075
|
+
--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);
|
|
2076
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
|
2077
|
+
}
|
|
2078
|
+
.from-gray-900 {
|
|
2079
|
+
--tw-gradient-from: var(--colors-text-text-primary-900, #101828) var(--tw-gradient-from-position);
|
|
2080
|
+
--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);
|
|
2081
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
|
2082
|
+
}
|
|
1670
2083
|
.from-transparent {
|
|
1671
2084
|
--tw-gradient-from: transparent var(--tw-gradient-from-position);
|
|
1672
2085
|
--tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
|
|
1673
2086
|
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
|
1674
2087
|
}
|
|
2088
|
+
.from-violet-500 {
|
|
2089
|
+
--tw-gradient-from: #8b5cf6 var(--tw-gradient-from-position);
|
|
2090
|
+
--tw-gradient-to: rgb(139 92 246 / 0) var(--tw-gradient-to-position);
|
|
2091
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
|
2092
|
+
}
|
|
2093
|
+
.from-violet-500\/10 {
|
|
2094
|
+
--tw-gradient-from: rgb(139 92 246 / 0.1) var(--tw-gradient-from-position);
|
|
2095
|
+
--tw-gradient-to: rgb(139 92 246 / 0) var(--tw-gradient-to-position);
|
|
2096
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
|
2097
|
+
}
|
|
2098
|
+
.from-violet-500\/15 {
|
|
2099
|
+
--tw-gradient-from: rgb(139 92 246 / 0.15) var(--tw-gradient-from-position);
|
|
2100
|
+
--tw-gradient-to: rgb(139 92 246 / 0) var(--tw-gradient-to-position);
|
|
2101
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
|
2102
|
+
}
|
|
1675
2103
|
.via-blue-400 {
|
|
1676
2104
|
--tw-gradient-to: rgb(82 139 255 / 0) var(--tw-gradient-to-position);
|
|
1677
2105
|
--tw-gradient-stops: var(--tw-gradient-from), #528BFF var(--tw-gradient-via-position), var(--tw-gradient-to);
|
|
1678
2106
|
}
|
|
2107
|
+
.via-gray-100 {
|
|
2108
|
+
--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);
|
|
2109
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--colors-background-bg-tertiary, #F2F4F7) var(--tw-gradient-via-position), var(--tw-gradient-to);
|
|
2110
|
+
}
|
|
1679
2111
|
.via-gray-300 {
|
|
1680
2112
|
--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);
|
|
1681
2113
|
--tw-gradient-stops: var(--tw-gradient-from), var(--colors-border-border-primary, #D0D5DD) var(--tw-gradient-via-position), var(--tw-gradient-to);
|
|
1682
2114
|
}
|
|
2115
|
+
.via-indigo-500 {
|
|
2116
|
+
--tw-gradient-to: rgb(99 102 241 / 0) var(--tw-gradient-to-position);
|
|
2117
|
+
--tw-gradient-stops: var(--tw-gradient-from), #6366f1 var(--tw-gradient-via-position), var(--tw-gradient-to);
|
|
2118
|
+
}
|
|
2119
|
+
.to-black\/20 {
|
|
2120
|
+
--tw-gradient-to: rgb(0 0 0 / 0.2) var(--tw-gradient-to-position);
|
|
2121
|
+
}
|
|
2122
|
+
.to-black\/\[0\.02\] {
|
|
2123
|
+
--tw-gradient-to: rgb(0 0 0 / 0.02) var(--tw-gradient-to-position);
|
|
2124
|
+
}
|
|
2125
|
+
.to-blue-500 {
|
|
2126
|
+
--tw-gradient-to: #2970FF var(--tw-gradient-to-position);
|
|
2127
|
+
}
|
|
2128
|
+
.to-blue-600 {
|
|
2129
|
+
--tw-gradient-to: #155EEF var(--tw-gradient-to-position);
|
|
2130
|
+
}
|
|
2131
|
+
.to-gray-200 {
|
|
2132
|
+
--tw-gradient-to: var(--colors-background-bg-quaternary, #EAECF0) var(--tw-gradient-to-position);
|
|
2133
|
+
}
|
|
2134
|
+
.to-gray-600 {
|
|
2135
|
+
--tw-gradient-to: var(--component-colors-utility-gray-utility-gray-600, #475467) var(--tw-gradient-to-position);
|
|
2136
|
+
}
|
|
2137
|
+
.to-gray-800 {
|
|
2138
|
+
--tw-gradient-to: var(--component-colors-utility-gray-utility-gray-800, #182230) var(--tw-gradient-to-position);
|
|
2139
|
+
}
|
|
2140
|
+
.to-indigo-500 {
|
|
2141
|
+
--tw-gradient-to: #6366f1 var(--tw-gradient-to-position);
|
|
2142
|
+
}
|
|
2143
|
+
.to-indigo-500\/10 {
|
|
2144
|
+
--tw-gradient-to: rgb(99 102 241 / 0.1) var(--tw-gradient-to-position);
|
|
2145
|
+
}
|
|
2146
|
+
.to-indigo-500\/15 {
|
|
2147
|
+
--tw-gradient-to: rgb(99 102 241 / 0.15) var(--tw-gradient-to-position);
|
|
2148
|
+
}
|
|
1683
2149
|
.to-transparent {
|
|
1684
2150
|
--tw-gradient-to: transparent var(--tw-gradient-to-position);
|
|
1685
2151
|
}
|
|
2152
|
+
.to-white {
|
|
2153
|
+
--tw-gradient-to: #FFFFFF var(--tw-gradient-to-position);
|
|
2154
|
+
}
|
|
2155
|
+
.bg-\[length\:200\%_100\%\] {
|
|
2156
|
+
background-size: 200% 100%;
|
|
2157
|
+
}
|
|
1686
2158
|
.object-cover {
|
|
1687
2159
|
-o-object-fit: cover;
|
|
1688
2160
|
object-fit: cover;
|
|
1689
2161
|
}
|
|
2162
|
+
.p-0 {
|
|
2163
|
+
padding: 0px;
|
|
2164
|
+
}
|
|
1690
2165
|
.p-1 {
|
|
1691
2166
|
padding: 0.25rem;
|
|
1692
2167
|
}
|
|
@@ -1696,6 +2171,9 @@ video {
|
|
|
1696
2171
|
.p-2 {
|
|
1697
2172
|
padding: 0.5rem;
|
|
1698
2173
|
}
|
|
2174
|
+
.p-2\.5 {
|
|
2175
|
+
padding: 0.625rem;
|
|
2176
|
+
}
|
|
1699
2177
|
.p-3 {
|
|
1700
2178
|
padding: 0.75rem;
|
|
1701
2179
|
}
|
|
@@ -1730,10 +2208,22 @@ video {
|
|
|
1730
2208
|
padding-left: 0px;
|
|
1731
2209
|
padding-right: 0px;
|
|
1732
2210
|
}
|
|
2211
|
+
.px-1 {
|
|
2212
|
+
padding-left: 0.25rem;
|
|
2213
|
+
padding-right: 0.25rem;
|
|
2214
|
+
}
|
|
2215
|
+
.px-1\.5 {
|
|
2216
|
+
padding-left: 0.375rem;
|
|
2217
|
+
padding-right: 0.375rem;
|
|
2218
|
+
}
|
|
1733
2219
|
.px-2 {
|
|
1734
2220
|
padding-left: 0.5rem;
|
|
1735
2221
|
padding-right: 0.5rem;
|
|
1736
2222
|
}
|
|
2223
|
+
.px-2\.5 {
|
|
2224
|
+
padding-left: 0.625rem;
|
|
2225
|
+
padding-right: 0.625rem;
|
|
2226
|
+
}
|
|
1737
2227
|
.px-3 {
|
|
1738
2228
|
padding-left: 0.75rem;
|
|
1739
2229
|
padding-right: 0.75rem;
|
|
@@ -1790,6 +2280,10 @@ video {
|
|
|
1790
2280
|
padding-top: 0.25rem;
|
|
1791
2281
|
padding-bottom: 0.25rem;
|
|
1792
2282
|
}
|
|
2283
|
+
.py-1\.5 {
|
|
2284
|
+
padding-top: 0.375rem;
|
|
2285
|
+
padding-bottom: 0.375rem;
|
|
2286
|
+
}
|
|
1793
2287
|
.py-2 {
|
|
1794
2288
|
padding-top: 0.5rem;
|
|
1795
2289
|
padding-bottom: 0.5rem;
|
|
@@ -1802,6 +2296,18 @@ video {
|
|
|
1802
2296
|
padding-top: 0.75rem;
|
|
1803
2297
|
padding-bottom: 0.75rem;
|
|
1804
2298
|
}
|
|
2299
|
+
.py-3\.5 {
|
|
2300
|
+
padding-top: 0.875rem;
|
|
2301
|
+
padding-bottom: 0.875rem;
|
|
2302
|
+
}
|
|
2303
|
+
.py-4 {
|
|
2304
|
+
padding-top: 1rem;
|
|
2305
|
+
padding-bottom: 1rem;
|
|
2306
|
+
}
|
|
2307
|
+
.py-6 {
|
|
2308
|
+
padding-top: 1.5rem;
|
|
2309
|
+
padding-bottom: 1.5rem;
|
|
2310
|
+
}
|
|
1805
2311
|
.py-8 {
|
|
1806
2312
|
padding-top: 2rem;
|
|
1807
2313
|
padding-bottom: 2rem;
|
|
@@ -1846,6 +2352,13 @@ video {
|
|
|
1846
2352
|
padding-top: 8px;
|
|
1847
2353
|
padding-bottom: 8px;
|
|
1848
2354
|
}
|
|
2355
|
+
.py-px {
|
|
2356
|
+
padding-top: 1px;
|
|
2357
|
+
padding-bottom: 1px;
|
|
2358
|
+
}
|
|
2359
|
+
.pb-1 {
|
|
2360
|
+
padding-bottom: 0.25rem;
|
|
2361
|
+
}
|
|
1849
2362
|
.pb-2 {
|
|
1850
2363
|
padding-bottom: 0.5rem;
|
|
1851
2364
|
}
|
|
@@ -1858,6 +2371,9 @@ video {
|
|
|
1858
2371
|
.pb-\[8px\] {
|
|
1859
2372
|
padding-bottom: 8px;
|
|
1860
2373
|
}
|
|
2374
|
+
.pl-1 {
|
|
2375
|
+
padding-left: 0.25rem;
|
|
2376
|
+
}
|
|
1861
2377
|
.pl-4 {
|
|
1862
2378
|
padding-left: 1rem;
|
|
1863
2379
|
}
|
|
@@ -1888,6 +2404,15 @@ video {
|
|
|
1888
2404
|
.pt-0 {
|
|
1889
2405
|
padding-top: 0px;
|
|
1890
2406
|
}
|
|
2407
|
+
.pt-1 {
|
|
2408
|
+
padding-top: 0.25rem;
|
|
2409
|
+
}
|
|
2410
|
+
.pt-2 {
|
|
2411
|
+
padding-top: 0.5rem;
|
|
2412
|
+
}
|
|
2413
|
+
.pt-2\.5 {
|
|
2414
|
+
padding-top: 0.625rem;
|
|
2415
|
+
}
|
|
1891
2416
|
.pt-\[8px\] {
|
|
1892
2417
|
padding-top: 8px;
|
|
1893
2418
|
}
|
|
@@ -1903,6 +2428,9 @@ video {
|
|
|
1903
2428
|
.text-end {
|
|
1904
2429
|
text-align: end;
|
|
1905
2430
|
}
|
|
2431
|
+
.align-middle {
|
|
2432
|
+
vertical-align: middle;
|
|
2433
|
+
}
|
|
1906
2434
|
.font-mono {
|
|
1907
2435
|
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
1908
2436
|
}
|
|
@@ -1913,6 +2441,9 @@ video {
|
|
|
1913
2441
|
.text-\[10px\] {
|
|
1914
2442
|
font-size: 10px;
|
|
1915
2443
|
}
|
|
2444
|
+
.text-\[11px\] {
|
|
2445
|
+
font-size: 11px;
|
|
2446
|
+
}
|
|
1916
2447
|
.text-\[12px\] {
|
|
1917
2448
|
font-size: 12px;
|
|
1918
2449
|
}
|
|
@@ -1922,12 +2453,18 @@ video {
|
|
|
1922
2453
|
.text-\[14px\] {
|
|
1923
2454
|
font-size: 14px;
|
|
1924
2455
|
}
|
|
2456
|
+
.text-\[15px\] {
|
|
2457
|
+
font-size: 15px;
|
|
2458
|
+
}
|
|
1925
2459
|
.text-\[16px\] {
|
|
1926
2460
|
font-size: 16px;
|
|
1927
2461
|
}
|
|
1928
2462
|
.text-\[18px\] {
|
|
1929
2463
|
font-size: 18px;
|
|
1930
2464
|
}
|
|
2465
|
+
.text-\[9px\] {
|
|
2466
|
+
font-size: 9px;
|
|
2467
|
+
}
|
|
1931
2468
|
.text-base {
|
|
1932
2469
|
font-size: 1rem;
|
|
1933
2470
|
line-height: 1.5rem;
|
|
@@ -1940,6 +2477,10 @@ video {
|
|
|
1940
2477
|
font-size: 0.875rem;
|
|
1941
2478
|
line-height: 1.25rem;
|
|
1942
2479
|
}
|
|
2480
|
+
.text-xl {
|
|
2481
|
+
font-size: 1.25rem;
|
|
2482
|
+
line-height: 1.75rem;
|
|
2483
|
+
}
|
|
1943
2484
|
.text-xs {
|
|
1944
2485
|
font-size: 0.75rem;
|
|
1945
2486
|
line-height: 1rem;
|
|
@@ -1992,9 +2533,18 @@ video {
|
|
|
1992
2533
|
.leading-none {
|
|
1993
2534
|
line-height: 1;
|
|
1994
2535
|
}
|
|
2536
|
+
.leading-relaxed {
|
|
2537
|
+
line-height: 1.625;
|
|
2538
|
+
}
|
|
2539
|
+
.leading-snug {
|
|
2540
|
+
line-height: 1.375;
|
|
2541
|
+
}
|
|
1995
2542
|
.tracking-tight {
|
|
1996
2543
|
letter-spacing: -0.025em;
|
|
1997
2544
|
}
|
|
2545
|
+
.tracking-wide {
|
|
2546
|
+
letter-spacing: 0.025em;
|
|
2547
|
+
}
|
|
1998
2548
|
.tracking-wider {
|
|
1999
2549
|
letter-spacing: 0.05em;
|
|
2000
2550
|
}
|
|
@@ -2056,6 +2606,9 @@ video {
|
|
|
2056
2606
|
.text-gray-100 {
|
|
2057
2607
|
color: var(--colors-background-bg-tertiary, #F2F4F7);
|
|
2058
2608
|
}
|
|
2609
|
+
.text-gray-200 {
|
|
2610
|
+
color: var(--colors-background-bg-quaternary, #EAECF0);
|
|
2611
|
+
}
|
|
2059
2612
|
.text-gray-300 {
|
|
2060
2613
|
color: var(--colors-border-border-primary, #D0D5DD);
|
|
2061
2614
|
}
|
|
@@ -2127,6 +2680,10 @@ video {
|
|
|
2127
2680
|
--tw-text-opacity: 1;
|
|
2128
2681
|
color: rgb(107 33 168 / var(--tw-text-opacity, 1));
|
|
2129
2682
|
}
|
|
2683
|
+
.text-red-200 {
|
|
2684
|
+
--tw-text-opacity: 1;
|
|
2685
|
+
color: rgb(254 202 202 / var(--tw-text-opacity, 1));
|
|
2686
|
+
}
|
|
2130
2687
|
.text-red-500 {
|
|
2131
2688
|
--tw-text-opacity: 1;
|
|
2132
2689
|
color: rgb(239 68 68 / var(--tw-text-opacity, 1));
|
|
@@ -2139,10 +2696,29 @@ video {
|
|
|
2139
2696
|
--tw-text-opacity: 1;
|
|
2140
2697
|
color: rgb(185 28 28 / var(--tw-text-opacity, 1));
|
|
2141
2698
|
}
|
|
2699
|
+
.text-violet-300 {
|
|
2700
|
+
--tw-text-opacity: 1;
|
|
2701
|
+
color: rgb(196 181 253 / var(--tw-text-opacity, 1));
|
|
2702
|
+
}
|
|
2703
|
+
.text-violet-400 {
|
|
2704
|
+
--tw-text-opacity: 1;
|
|
2705
|
+
color: rgb(167 139 250 / var(--tw-text-opacity, 1));
|
|
2706
|
+
}
|
|
2707
|
+
.text-violet-600 {
|
|
2708
|
+
--tw-text-opacity: 1;
|
|
2709
|
+
color: rgb(124 58 237 / var(--tw-text-opacity, 1));
|
|
2710
|
+
}
|
|
2711
|
+
.text-violet-700 {
|
|
2712
|
+
--tw-text-opacity: 1;
|
|
2713
|
+
color: rgb(109 40 217 / var(--tw-text-opacity, 1));
|
|
2714
|
+
}
|
|
2142
2715
|
.text-white {
|
|
2143
2716
|
--tw-text-opacity: 1;
|
|
2144
2717
|
color: rgb(255 255 255 / var(--tw-text-opacity, 1));
|
|
2145
2718
|
}
|
|
2719
|
+
.text-white\/90 {
|
|
2720
|
+
color: rgb(255 255 255 / 0.9);
|
|
2721
|
+
}
|
|
2146
2722
|
.text-yellow-600 {
|
|
2147
2723
|
--tw-text-opacity: 1;
|
|
2148
2724
|
color: rgb(202 138 4 / var(--tw-text-opacity, 1));
|
|
@@ -2165,6 +2741,35 @@ video {
|
|
|
2165
2741
|
.opacity-60 {
|
|
2166
2742
|
opacity: 0.6;
|
|
2167
2743
|
}
|
|
2744
|
+
.opacity-70 {
|
|
2745
|
+
opacity: 0.7;
|
|
2746
|
+
}
|
|
2747
|
+
.opacity-80 {
|
|
2748
|
+
opacity: 0.8;
|
|
2749
|
+
}
|
|
2750
|
+
.opacity-95 {
|
|
2751
|
+
opacity: 0.95;
|
|
2752
|
+
}
|
|
2753
|
+
.shadow-\[-4px_0_32px_rgba\(0\2c 0\2c 0\2c 0\.12\)\] {
|
|
2754
|
+
--tw-shadow: -4px 0 32px rgba(0,0,0,0.12);
|
|
2755
|
+
--tw-shadow-colored: -4px 0 32px var(--tw-shadow-color);
|
|
2756
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
2757
|
+
}
|
|
2758
|
+
.shadow-\[-4px_0_32px_rgba\(0\2c 0\2c 0\2c 0\.4\)\] {
|
|
2759
|
+
--tw-shadow: -4px 0 32px rgba(0,0,0,0.4);
|
|
2760
|
+
--tw-shadow-colored: -4px 0 32px var(--tw-shadow-color);
|
|
2761
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
2762
|
+
}
|
|
2763
|
+
.shadow-\[0_-10px_40px_rgba\(0\2c 0\2c 0\2c 0\.2\)\] {
|
|
2764
|
+
--tw-shadow: 0 -10px 40px rgba(0,0,0,0.2);
|
|
2765
|
+
--tw-shadow-colored: 0 -10px 40px var(--tw-shadow-color);
|
|
2766
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
2767
|
+
}
|
|
2768
|
+
.shadow-\[0_24px_48px_rgba\(0\2c 0\2c 0\2c 0\.2\)\] {
|
|
2769
|
+
--tw-shadow: 0 24px 48px rgba(0,0,0,0.2);
|
|
2770
|
+
--tw-shadow-colored: 0 24px 48px var(--tw-shadow-color);
|
|
2771
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
2772
|
+
}
|
|
2168
2773
|
.shadow-\[0px_1px_2px_0px_rgba\(16\2c 24\2c 40\2c 0\.04\)\] {
|
|
2169
2774
|
--tw-shadow: 0px 1px 2px 0px rgba(16,24,40,0.04);
|
|
2170
2775
|
--tw-shadow-colored: 0px 1px 2px 0px var(--tw-shadow-color);
|
|
@@ -2215,6 +2820,10 @@ video {
|
|
|
2215
2820
|
--tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
|
|
2216
2821
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
2217
2822
|
}
|
|
2823
|
+
.shadow-violet-500\/30 {
|
|
2824
|
+
--tw-shadow-color: rgb(139 92 246 / 0.3);
|
|
2825
|
+
--tw-shadow: var(--tw-shadow-colored);
|
|
2826
|
+
}
|
|
2218
2827
|
.outline-none {
|
|
2219
2828
|
outline: 2px solid transparent;
|
|
2220
2829
|
outline-offset: 2px;
|
|
@@ -2222,6 +2831,15 @@ video {
|
|
|
2222
2831
|
.outline {
|
|
2223
2832
|
outline-style: solid;
|
|
2224
2833
|
}
|
|
2834
|
+
.ring-2 {
|
|
2835
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
2836
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
2837
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
2838
|
+
}
|
|
2839
|
+
.ring-blue-500 {
|
|
2840
|
+
--tw-ring-opacity: 1;
|
|
2841
|
+
--tw-ring-color: rgb(41 112 255 / var(--tw-ring-opacity, 1));
|
|
2842
|
+
}
|
|
2225
2843
|
.blur {
|
|
2226
2844
|
--tw-blur: blur(8px);
|
|
2227
2845
|
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
|
@@ -2229,6 +2847,16 @@ video {
|
|
|
2229
2847
|
.filter {
|
|
2230
2848
|
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
|
2231
2849
|
}
|
|
2850
|
+
.backdrop-blur-sm {
|
|
2851
|
+
--tw-backdrop-blur: blur(4px);
|
|
2852
|
+
-webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
|
|
2853
|
+
backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
|
|
2854
|
+
}
|
|
2855
|
+
.transition-\[flex\] {
|
|
2856
|
+
transition-property: flex;
|
|
2857
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2858
|
+
transition-duration: 150ms;
|
|
2859
|
+
}
|
|
2232
2860
|
.transition-all {
|
|
2233
2861
|
transition-property: all;
|
|
2234
2862
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
@@ -2244,11 +2872,19 @@ video {
|
|
|
2244
2872
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2245
2873
|
transition-duration: 150ms;
|
|
2246
2874
|
}
|
|
2875
|
+
.transition-shadow {
|
|
2876
|
+
transition-property: box-shadow;
|
|
2877
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2878
|
+
transition-duration: 150ms;
|
|
2879
|
+
}
|
|
2247
2880
|
.transition-transform {
|
|
2248
2881
|
transition-property: transform;
|
|
2249
2882
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2250
2883
|
transition-duration: 150ms;
|
|
2251
2884
|
}
|
|
2885
|
+
.duration-100 {
|
|
2886
|
+
transition-duration: 100ms;
|
|
2887
|
+
}
|
|
2252
2888
|
.duration-150 {
|
|
2253
2889
|
transition-duration: 150ms;
|
|
2254
2890
|
}
|
|
@@ -2258,6 +2894,12 @@ video {
|
|
|
2258
2894
|
.duration-300 {
|
|
2259
2895
|
transition-duration: 300ms;
|
|
2260
2896
|
}
|
|
2897
|
+
.duration-\[250ms\] {
|
|
2898
|
+
transition-duration: 250ms;
|
|
2899
|
+
}
|
|
2900
|
+
.ease-\[cubic-bezier\(0\.4\2c 0\2c 0\.2\2c 1\)\] {
|
|
2901
|
+
transition-timing-function: cubic-bezier(0.4,0,0.2,1);
|
|
2902
|
+
}
|
|
2261
2903
|
.ease-in-out {
|
|
2262
2904
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2263
2905
|
}
|
|
@@ -2334,6 +2976,22 @@ video {
|
|
|
2334
2976
|
color: rgb(152 162 179 / var(--tw-text-opacity, 1));
|
|
2335
2977
|
}
|
|
2336
2978
|
|
|
2979
|
+
.placeholder\:text-gray-400::-moz-placeholder {
|
|
2980
|
+
color: var(--colors-foreground-fg-disabled, #98A2B3);
|
|
2981
|
+
}
|
|
2982
|
+
|
|
2983
|
+
.placeholder\:text-gray-400::placeholder {
|
|
2984
|
+
color: var(--colors-foreground-fg-disabled, #98A2B3);
|
|
2985
|
+
}
|
|
2986
|
+
|
|
2987
|
+
.placeholder\:text-gray-500::-moz-placeholder {
|
|
2988
|
+
color: var(--colors-foreground-fg-quarterary-500, #667085);
|
|
2989
|
+
}
|
|
2990
|
+
|
|
2991
|
+
.placeholder\:text-gray-500::placeholder {
|
|
2992
|
+
color: var(--colors-foreground-fg-quarterary-500, #667085);
|
|
2993
|
+
}
|
|
2994
|
+
|
|
2337
2995
|
.empty\:before\:text-gray-400:empty::before {
|
|
2338
2996
|
content: var(--tw-content);
|
|
2339
2997
|
color: var(--colors-foreground-fg-disabled, #98A2B3);
|
|
@@ -2344,8 +3002,31 @@ video {
|
|
|
2344
3002
|
content: var(--tw-content);
|
|
2345
3003
|
}
|
|
2346
3004
|
|
|
2347
|
-
.
|
|
2348
|
-
--tw-border-opacity: 1
|
|
3005
|
+
.focus-within\:border-violet-500:focus-within {
|
|
3006
|
+
--tw-border-opacity: 1;
|
|
3007
|
+
border-color: rgb(139 92 246 / var(--tw-border-opacity, 1));
|
|
3008
|
+
}
|
|
3009
|
+
|
|
3010
|
+
.focus-within\:shadow-\[0_0_0_4px_rgba\(139\2c 92\2c 246\2c 0\.1\)\]:focus-within {
|
|
3011
|
+
--tw-shadow: 0 0 0 4px rgba(139,92,246,0.1);
|
|
3012
|
+
--tw-shadow-colored: 0 0 0 4px var(--tw-shadow-color);
|
|
3013
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
3014
|
+
}
|
|
3015
|
+
|
|
3016
|
+
.focus-within\:shadow-\[0_0_0_4px_rgba\(139\2c 92\2c 246\2c 0\.2\)\]:focus-within {
|
|
3017
|
+
--tw-shadow: 0 0 0 4px rgba(139,92,246,0.2);
|
|
3018
|
+
--tw-shadow-colored: 0 0 0 4px var(--tw-shadow-color);
|
|
3019
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
3020
|
+
}
|
|
3021
|
+
|
|
3022
|
+
.hover\:scale-105:hover {
|
|
3023
|
+
--tw-scale-x: 1.05;
|
|
3024
|
+
--tw-scale-y: 1.05;
|
|
3025
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
3026
|
+
}
|
|
3027
|
+
|
|
3028
|
+
.hover\:\!border-blue-600:hover {
|
|
3029
|
+
--tw-border-opacity: 1 !important;
|
|
2349
3030
|
border-color: rgb(21 94 239 / var(--tw-border-opacity, 1)) !important;
|
|
2350
3031
|
}
|
|
2351
3032
|
|
|
@@ -2359,6 +3040,22 @@ video {
|
|
|
2359
3040
|
background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
|
|
2360
3041
|
}
|
|
2361
3042
|
|
|
3043
|
+
.hover\:bg-black\/10:hover {
|
|
3044
|
+
background-color: rgb(0 0 0 / 0.1);
|
|
3045
|
+
}
|
|
3046
|
+
|
|
3047
|
+
.hover\:bg-black\/5:hover {
|
|
3048
|
+
background-color: rgb(0 0 0 / 0.05);
|
|
3049
|
+
}
|
|
3050
|
+
|
|
3051
|
+
.hover\:bg-black\/\[0\.03\]:hover {
|
|
3052
|
+
background-color: rgb(0 0 0 / 0.03);
|
|
3053
|
+
}
|
|
3054
|
+
|
|
3055
|
+
.hover\:bg-black\/\[0\.08\]:hover {
|
|
3056
|
+
background-color: rgb(0 0 0 / 0.08);
|
|
3057
|
+
}
|
|
3058
|
+
|
|
2362
3059
|
.hover\:bg-blue-100:hover {
|
|
2363
3060
|
--tw-bg-opacity: 1;
|
|
2364
3061
|
background-color: rgb(209 224 255 / var(--tw-bg-opacity, 1));
|
|
@@ -2374,6 +3071,11 @@ video {
|
|
|
2374
3071
|
background-color: rgb(0 78 235 / var(--tw-bg-opacity, 1));
|
|
2375
3072
|
}
|
|
2376
3073
|
|
|
3074
|
+
.hover\:bg-emerald-600:hover {
|
|
3075
|
+
--tw-bg-opacity: 1;
|
|
3076
|
+
background-color: rgb(5 150 105 / var(--tw-bg-opacity, 1));
|
|
3077
|
+
}
|
|
3078
|
+
|
|
2377
3079
|
.hover\:bg-error-600:hover {
|
|
2378
3080
|
--tw-bg-opacity: 1;
|
|
2379
3081
|
background-color: rgb(217 45 32 / var(--tw-bg-opacity, 1));
|
|
@@ -2409,16 +3111,59 @@ video {
|
|
|
2409
3111
|
background-color: rgb(147 51 234 / var(--tw-bg-opacity, 1));
|
|
2410
3112
|
}
|
|
2411
3113
|
|
|
3114
|
+
.hover\:bg-red-50:hover {
|
|
3115
|
+
--tw-bg-opacity: 1;
|
|
3116
|
+
background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1));
|
|
3117
|
+
}
|
|
3118
|
+
|
|
3119
|
+
.hover\:bg-red-500\/20:hover {
|
|
3120
|
+
background-color: rgb(239 68 68 / 0.2);
|
|
3121
|
+
}
|
|
3122
|
+
|
|
3123
|
+
.hover\:bg-red-500\/80:hover {
|
|
3124
|
+
background-color: rgb(239 68 68 / 0.8);
|
|
3125
|
+
}
|
|
3126
|
+
|
|
2412
3127
|
.hover\:bg-red-600:hover {
|
|
2413
3128
|
--tw-bg-opacity: 1;
|
|
2414
3129
|
background-color: rgb(220 38 38 / var(--tw-bg-opacity, 1));
|
|
2415
3130
|
}
|
|
2416
3131
|
|
|
3132
|
+
.hover\:bg-violet-500:hover {
|
|
3133
|
+
--tw-bg-opacity: 1;
|
|
3134
|
+
background-color: rgb(139 92 246 / var(--tw-bg-opacity, 1));
|
|
3135
|
+
}
|
|
3136
|
+
|
|
3137
|
+
.hover\:bg-violet-500\/20:hover {
|
|
3138
|
+
background-color: rgb(139 92 246 / 0.2);
|
|
3139
|
+
}
|
|
3140
|
+
|
|
3141
|
+
.hover\:bg-violet-900:hover {
|
|
3142
|
+
--tw-bg-opacity: 1;
|
|
3143
|
+
background-color: rgb(76 29 149 / var(--tw-bg-opacity, 1));
|
|
3144
|
+
}
|
|
3145
|
+
|
|
2417
3146
|
.hover\:bg-white:hover {
|
|
2418
3147
|
--tw-bg-opacity: 1;
|
|
2419
3148
|
background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
|
|
2420
3149
|
}
|
|
2421
3150
|
|
|
3151
|
+
.hover\:bg-white\/10:hover {
|
|
3152
|
+
background-color: rgb(255 255 255 / 0.1);
|
|
3153
|
+
}
|
|
3154
|
+
|
|
3155
|
+
.hover\:bg-white\/15:hover {
|
|
3156
|
+
background-color: rgb(255 255 255 / 0.15);
|
|
3157
|
+
}
|
|
3158
|
+
|
|
3159
|
+
.hover\:bg-white\/25:hover {
|
|
3160
|
+
background-color: rgb(255 255 255 / 0.25);
|
|
3161
|
+
}
|
|
3162
|
+
|
|
3163
|
+
.hover\:bg-white\/5:hover {
|
|
3164
|
+
background-color: rgb(255 255 255 / 0.05);
|
|
3165
|
+
}
|
|
3166
|
+
|
|
2422
3167
|
.hover\:font-medium:hover {
|
|
2423
3168
|
font-weight: 500;
|
|
2424
3169
|
}
|
|
@@ -2428,6 +3173,11 @@ video {
|
|
|
2428
3173
|
color: rgb(132 173 255 / var(--tw-text-opacity, 1));
|
|
2429
3174
|
}
|
|
2430
3175
|
|
|
3176
|
+
.hover\:text-blue-400:hover {
|
|
3177
|
+
--tw-text-opacity: 1;
|
|
3178
|
+
color: rgb(82 139 255 / var(--tw-text-opacity, 1));
|
|
3179
|
+
}
|
|
3180
|
+
|
|
2431
3181
|
.hover\:text-blue-700:hover {
|
|
2432
3182
|
--tw-text-opacity: 1;
|
|
2433
3183
|
color: rgb(0 78 235 / var(--tw-text-opacity, 1));
|
|
@@ -2443,6 +3193,18 @@ video {
|
|
|
2443
3193
|
color: rgb(0 53 158 / var(--tw-text-opacity, 1));
|
|
2444
3194
|
}
|
|
2445
3195
|
|
|
3196
|
+
.hover\:text-gray-200:hover {
|
|
3197
|
+
color: var(--colors-background-bg-quaternary, #EAECF0);
|
|
3198
|
+
}
|
|
3199
|
+
|
|
3200
|
+
.hover\:text-gray-300:hover {
|
|
3201
|
+
color: var(--colors-border-border-primary, #D0D5DD);
|
|
3202
|
+
}
|
|
3203
|
+
|
|
3204
|
+
.hover\:text-gray-600:hover {
|
|
3205
|
+
color: var(--component-colors-utility-gray-utility-gray-600, #475467);
|
|
3206
|
+
}
|
|
3207
|
+
|
|
2446
3208
|
.hover\:text-gray-700:hover {
|
|
2447
3209
|
color: var(--colors-foreground-fg-secondary-700, #344054);
|
|
2448
3210
|
}
|
|
@@ -2455,6 +3217,30 @@ video {
|
|
|
2455
3217
|
color: var(--colors-text-text-primary-900, #101828);
|
|
2456
3218
|
}
|
|
2457
3219
|
|
|
3220
|
+
.hover\:text-red-400:hover {
|
|
3221
|
+
--tw-text-opacity: 1;
|
|
3222
|
+
color: rgb(248 113 113 / var(--tw-text-opacity, 1));
|
|
3223
|
+
}
|
|
3224
|
+
|
|
3225
|
+
.hover\:text-red-500:hover {
|
|
3226
|
+
--tw-text-opacity: 1;
|
|
3227
|
+
color: rgb(239 68 68 / var(--tw-text-opacity, 1));
|
|
3228
|
+
}
|
|
3229
|
+
|
|
3230
|
+
.hover\:text-red-600:hover {
|
|
3231
|
+
--tw-text-opacity: 1;
|
|
3232
|
+
color: rgb(220 38 38 / var(--tw-text-opacity, 1));
|
|
3233
|
+
}
|
|
3234
|
+
|
|
3235
|
+
.hover\:text-white:hover {
|
|
3236
|
+
--tw-text-opacity: 1;
|
|
3237
|
+
color: rgb(255 255 255 / var(--tw-text-opacity, 1));
|
|
3238
|
+
}
|
|
3239
|
+
|
|
3240
|
+
.hover\:opacity-100:hover {
|
|
3241
|
+
opacity: 1;
|
|
3242
|
+
}
|
|
3243
|
+
|
|
2458
3244
|
.hover\:opacity-70:hover {
|
|
2459
3245
|
opacity: 0.7;
|
|
2460
3246
|
}
|
|
@@ -2465,12 +3251,23 @@ video {
|
|
|
2465
3251
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
|
|
2466
3252
|
}
|
|
2467
3253
|
|
|
3254
|
+
.hover\:shadow-lg:hover {
|
|
3255
|
+
--tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
|
|
3256
|
+
--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
|
|
3257
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
3258
|
+
}
|
|
3259
|
+
|
|
2468
3260
|
.hover\:shadow-tab:hover {
|
|
2469
3261
|
--tw-shadow: 0 1px 3px 0 rgba(16, 24, 40, 0.08), 0 1px 2px 0 rgba(16, 24, 40, 0.08);
|
|
2470
3262
|
--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px 0 var(--tw-shadow-color);
|
|
2471
3263
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
2472
3264
|
}
|
|
2473
3265
|
|
|
3266
|
+
.hover\:shadow-violet-500\/40:hover {
|
|
3267
|
+
--tw-shadow-color: rgb(139 92 246 / 0.4);
|
|
3268
|
+
--tw-shadow: var(--tw-shadow-colored);
|
|
3269
|
+
}
|
|
3270
|
+
|
|
2474
3271
|
.focus\:border-blue-500:focus {
|
|
2475
3272
|
--tw-border-opacity: 1;
|
|
2476
3273
|
border-color: rgb(41 112 255 / var(--tw-border-opacity, 1));
|
|
@@ -2544,6 +3341,16 @@ video {
|
|
|
2544
3341
|
--tw-ring-color: var(--colors-border-border-brand, #84ADFF);
|
|
2545
3342
|
}
|
|
2546
3343
|
|
|
3344
|
+
.active\:scale-95:active {
|
|
3345
|
+
--tw-scale-x: .95;
|
|
3346
|
+
--tw-scale-y: .95;
|
|
3347
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
3348
|
+
}
|
|
3349
|
+
|
|
3350
|
+
.active\:cursor-grabbing:active {
|
|
3351
|
+
cursor: grabbing;
|
|
3352
|
+
}
|
|
3353
|
+
|
|
2547
3354
|
.disabled\:pointer-events-none:disabled {
|
|
2548
3355
|
pointer-events: none;
|
|
2549
3356
|
}
|
|
@@ -2577,6 +3384,11 @@ video {
|
|
|
2577
3384
|
.sm\:flex-row {
|
|
2578
3385
|
flex-direction: row;
|
|
2579
3386
|
}
|
|
3387
|
+
|
|
3388
|
+
.sm\:px-6 {
|
|
3389
|
+
padding-left: 1.5rem;
|
|
3390
|
+
padding-right: 1.5rem;
|
|
3391
|
+
}
|
|
2580
3392
|
}
|
|
2581
3393
|
|
|
2582
3394
|
@media (min-width: 1024px) {
|
|
@@ -2600,4 +3412,621 @@ video {
|
|
|
2600
3412
|
.lg\:grid-cols-12 {
|
|
2601
3413
|
grid-template-columns: repeat(12, minmax(0, 1fr));
|
|
2602
3414
|
}
|
|
2603
|
-
|
|
3415
|
+
|
|
3416
|
+
.lg\:px-8 {
|
|
3417
|
+
padding-left: 2rem;
|
|
3418
|
+
padding-right: 2rem;
|
|
3419
|
+
}
|
|
3420
|
+
}
|
|
3421
|
+
|
|
3422
|
+
@media (prefers-color-scheme: dark) {
|
|
3423
|
+
|
|
3424
|
+
.dark\:from-gray-700 {
|
|
3425
|
+
--tw-gradient-from: var(--colors-foreground-fg-secondary-700, #344054) var(--tw-gradient-from-position);
|
|
3426
|
+
--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);
|
|
3427
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
|
3428
|
+
}
|
|
3429
|
+
|
|
3430
|
+
.dark\:via-gray-600 {
|
|
3431
|
+
--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);
|
|
3432
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--component-colors-utility-gray-utility-gray-600, #475467) var(--tw-gradient-via-position), var(--tw-gradient-to);
|
|
3433
|
+
}
|
|
3434
|
+
|
|
3435
|
+
.dark\:to-gray-700 {
|
|
3436
|
+
--tw-gradient-to: var(--colors-foreground-fg-secondary-700, #344054) var(--tw-gradient-to-position);
|
|
3437
|
+
}
|
|
3438
|
+
} /* K-MD-Editor Styles - Minimal CSS (Tailwind handles most styling) */
|
|
3439
|
+
|
|
3440
|
+
/* ============================================================================
|
|
3441
|
+
Tippy.js / BubbleMenu Overrides (Required for popup positioning)
|
|
3442
|
+
============================================================================ */
|
|
3443
|
+
|
|
3444
|
+
[data-tippy-root] {
|
|
3445
|
+
z-index: 99999 !important;
|
|
3446
|
+
}
|
|
3447
|
+
|
|
3448
|
+
.tippy-box {
|
|
3449
|
+
pointer-events: auto !important;
|
|
3450
|
+
z-index: 99999 !important;
|
|
3451
|
+
}
|
|
3452
|
+
|
|
3453
|
+
.tippy-content {
|
|
3454
|
+
pointer-events: auto !important;
|
|
3455
|
+
}
|
|
3456
|
+
|
|
3457
|
+
/* ============================================================================
|
|
3458
|
+
Theme Variables - Runtime theming support
|
|
3459
|
+
============================================================================ */
|
|
3460
|
+
|
|
3461
|
+
.k-md-editor {
|
|
3462
|
+
--k-md-editor-bg: #ffffff;
|
|
3463
|
+
--k-md-editor-text: #1f2937;
|
|
3464
|
+
--k-md-editor-text-muted: #6b7280;
|
|
3465
|
+
--k-md-editor-border: #e5e7eb;
|
|
3466
|
+
--k-md-editor-border-focus: #3b82f6;
|
|
3467
|
+
--k-md-editor-selection: #dbeafe;
|
|
3468
|
+
--k-md-editor-code-bg: #f3f4f6;
|
|
3469
|
+
--k-md-editor-link: #2563eb;
|
|
3470
|
+
--k-md-editor-placeholder: #9ca3af;
|
|
3471
|
+
|
|
3472
|
+
position: relative;
|
|
3473
|
+
width: 100%;
|
|
3474
|
+
height: 100%;
|
|
3475
|
+
background-color: var(--k-md-editor-bg);
|
|
3476
|
+
color: var(--k-md-editor-text);
|
|
3477
|
+
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
|
3478
|
+
font-size: 15px;
|
|
3479
|
+
line-height: 1.6;
|
|
3480
|
+
display: flex;
|
|
3481
|
+
flex-direction: row;
|
|
3482
|
+
}
|
|
3483
|
+
|
|
3484
|
+
/* Dark Theme */
|
|
3485
|
+
.k-md-editor--dark {
|
|
3486
|
+
--k-md-editor-bg: #111827;
|
|
3487
|
+
--k-md-editor-text: #f3f4f6;
|
|
3488
|
+
--k-md-editor-text-muted: #9ca3af;
|
|
3489
|
+
--k-md-editor-border: #374151;
|
|
3490
|
+
--k-md-editor-border-focus: #60a5fa;
|
|
3491
|
+
--k-md-editor-selection: #1e3a5f;
|
|
3492
|
+
--k-md-editor-code-bg: #1f2937;
|
|
3493
|
+
--k-md-editor-link: #60a5fa;
|
|
3494
|
+
--k-md-editor-placeholder: #6b7280;
|
|
3495
|
+
}
|
|
3496
|
+
|
|
3497
|
+
/* Ocean Light */
|
|
3498
|
+
.k-md-editor--ocean-light {
|
|
3499
|
+
--k-md-editor-bg: #f0f7ff;
|
|
3500
|
+
--k-md-editor-text: #0c4a6e;
|
|
3501
|
+
--k-md-editor-text-muted: #0369a1;
|
|
3502
|
+
--k-md-editor-border: #bae6fd;
|
|
3503
|
+
--k-md-editor-border-focus: #0284c7;
|
|
3504
|
+
--k-md-editor-selection: #e0f2fe;
|
|
3505
|
+
--k-md-editor-code-bg: #e0f2fe;
|
|
3506
|
+
--k-md-editor-link: #0284c7;
|
|
3507
|
+
--k-md-editor-placeholder: #7dd3fc;
|
|
3508
|
+
}
|
|
3509
|
+
|
|
3510
|
+
/* Ocean Dark */
|
|
3511
|
+
.k-md-editor--ocean-dark {
|
|
3512
|
+
--k-md-editor-bg: #0c1929;
|
|
3513
|
+
--k-md-editor-text: #e0f2fe;
|
|
3514
|
+
--k-md-editor-text-muted: #7dd3fc;
|
|
3515
|
+
--k-md-editor-border: #164e63;
|
|
3516
|
+
--k-md-editor-border-focus: #22d3ee;
|
|
3517
|
+
--k-md-editor-selection: #164e63;
|
|
3518
|
+
--k-md-editor-code-bg: #0e2a3d;
|
|
3519
|
+
--k-md-editor-link: #22d3ee;
|
|
3520
|
+
--k-md-editor-placeholder: #0e7490;
|
|
3521
|
+
}
|
|
3522
|
+
|
|
3523
|
+
/* Forest Light */
|
|
3524
|
+
.k-md-editor--forest-light {
|
|
3525
|
+
--k-md-editor-bg: #f0fdf4;
|
|
3526
|
+
--k-md-editor-text: #14532d;
|
|
3527
|
+
--k-md-editor-text-muted: #166534;
|
|
3528
|
+
--k-md-editor-border: #bbf7d0;
|
|
3529
|
+
--k-md-editor-border-focus: #16a34a;
|
|
3530
|
+
--k-md-editor-selection: #dcfce7;
|
|
3531
|
+
--k-md-editor-code-bg: #dcfce7;
|
|
3532
|
+
--k-md-editor-link: #16a34a;
|
|
3533
|
+
--k-md-editor-placeholder: #86efac;
|
|
3534
|
+
}
|
|
3535
|
+
|
|
3536
|
+
/* Forest Dark */
|
|
3537
|
+
.k-md-editor--forest-dark {
|
|
3538
|
+
--k-md-editor-bg: #052e16;
|
|
3539
|
+
--k-md-editor-text: #dcfce7;
|
|
3540
|
+
--k-md-editor-text-muted: #86efac;
|
|
3541
|
+
--k-md-editor-border: #166534;
|
|
3542
|
+
--k-md-editor-border-focus: #4ade80;
|
|
3543
|
+
--k-md-editor-selection: #14532d;
|
|
3544
|
+
--k-md-editor-code-bg: #0a3d1f;
|
|
3545
|
+
--k-md-editor-link: #4ade80;
|
|
3546
|
+
--k-md-editor-placeholder: #166534;
|
|
3547
|
+
}
|
|
3548
|
+
|
|
3549
|
+
/* Sunset Light */
|
|
3550
|
+
.k-md-editor--sunset-light {
|
|
3551
|
+
--k-md-editor-bg: #fffbeb;
|
|
3552
|
+
--k-md-editor-text: #78350f;
|
|
3553
|
+
--k-md-editor-text-muted: #92400e;
|
|
3554
|
+
--k-md-editor-border: #fde68a;
|
|
3555
|
+
--k-md-editor-border-focus: #f59e0b;
|
|
3556
|
+
--k-md-editor-selection: #fef3c7;
|
|
3557
|
+
--k-md-editor-code-bg: #fef3c7;
|
|
3558
|
+
--k-md-editor-link: #d97706;
|
|
3559
|
+
--k-md-editor-placeholder: #fbbf24;
|
|
3560
|
+
}
|
|
3561
|
+
|
|
3562
|
+
/* Sunset Dark */
|
|
3563
|
+
.k-md-editor--sunset-dark {
|
|
3564
|
+
--k-md-editor-bg: #1c1208;
|
|
3565
|
+
--k-md-editor-text: #fef3c7;
|
|
3566
|
+
--k-md-editor-text-muted: #fcd34d;
|
|
3567
|
+
--k-md-editor-border: #78350f;
|
|
3568
|
+
--k-md-editor-border-focus: #fbbf24;
|
|
3569
|
+
--k-md-editor-selection: #451a03;
|
|
3570
|
+
--k-md-editor-code-bg: #292011;
|
|
3571
|
+
--k-md-editor-link: #fbbf24;
|
|
3572
|
+
--k-md-editor-placeholder: #92400e;
|
|
3573
|
+
}
|
|
3574
|
+
|
|
3575
|
+
/* ============================================================================
|
|
3576
|
+
Editor States
|
|
3577
|
+
============================================================================ */
|
|
3578
|
+
|
|
3579
|
+
/* Readonly and loading states now use Tailwind utilities in component */
|
|
3580
|
+
|
|
3581
|
+
/* ============================================================================
|
|
3582
|
+
Editor Layout
|
|
3583
|
+
============================================================================ */
|
|
3584
|
+
|
|
3585
|
+
/* Layout classes now use Tailwind utilities in component */
|
|
3586
|
+
/* k-md-editor__content class kept for ProseMirror and scrollbar styling selectors */
|
|
3587
|
+
|
|
3588
|
+
.k-md-editor--drag-enabled .k-md-editor__content .ProseMirror {
|
|
3589
|
+
padding-left: 52px;
|
|
3590
|
+
}
|
|
3591
|
+
|
|
3592
|
+
/* ============================================================================
|
|
3593
|
+
ProseMirror Content Styling (Required - can't be Tailwind)
|
|
3594
|
+
============================================================================ */
|
|
3595
|
+
|
|
3596
|
+
.k-md-editor__content .ProseMirror {
|
|
3597
|
+
outline: none;
|
|
3598
|
+
padding: 16px 20px;
|
|
3599
|
+
min-height: 100%;
|
|
3600
|
+
}
|
|
3601
|
+
|
|
3602
|
+
.k-md-editor__content .ProseMirror:focus {
|
|
3603
|
+
outline: none;
|
|
3604
|
+
}
|
|
3605
|
+
|
|
3606
|
+
/* Placeholder */
|
|
3607
|
+
.k-md-editor__content .ProseMirror > p.is-empty::before,
|
|
3608
|
+
.k-md-editor__content .ProseMirror li > p.is-empty::before,
|
|
3609
|
+
.k-md-editor__content .ProseMirror blockquote > p.is-empty::before {
|
|
3610
|
+
content: attr(data-placeholder);
|
|
3611
|
+
color: var(--k-md-editor-placeholder);
|
|
3612
|
+
float: left;
|
|
3613
|
+
height: 0;
|
|
3614
|
+
pointer-events: none;
|
|
3615
|
+
}
|
|
3616
|
+
|
|
3617
|
+
.k-md-editor__content .ProseMirror .tableWrapper.is-empty::before,
|
|
3618
|
+
.k-md-editor__content .ProseMirror table .is-empty::before,
|
|
3619
|
+
.k-md-editor__content .ProseMirror td.is-empty::before,
|
|
3620
|
+
.k-md-editor__content .ProseMirror th.is-empty::before {
|
|
3621
|
+
content: none !important;
|
|
3622
|
+
display: none !important;
|
|
3623
|
+
}
|
|
3624
|
+
|
|
3625
|
+
/* Selection */
|
|
3626
|
+
.k-md-editor__content .ProseMirror ::-moz-selection {
|
|
3627
|
+
background-color: var(--k-md-editor-selection);
|
|
3628
|
+
}
|
|
3629
|
+
.k-md-editor__content .ProseMirror ::selection {
|
|
3630
|
+
background-color: var(--k-md-editor-selection);
|
|
3631
|
+
}
|
|
3632
|
+
|
|
3633
|
+
/* Typography */
|
|
3634
|
+
.k-md-editor__content .ProseMirror h1,
|
|
3635
|
+
.k-md-editor__content .ProseMirror h2,
|
|
3636
|
+
.k-md-editor__content .ProseMirror h3 {
|
|
3637
|
+
font-weight: 600;
|
|
3638
|
+
line-height: 1.3;
|
|
3639
|
+
margin: 1.5em 0 0.5em;
|
|
3640
|
+
}
|
|
3641
|
+
|
|
3642
|
+
.k-md-editor__content .ProseMirror h1:first-child,
|
|
3643
|
+
.k-md-editor__content .ProseMirror h2:first-child,
|
|
3644
|
+
.k-md-editor__content .ProseMirror h3:first-child {
|
|
3645
|
+
margin-top: 0;
|
|
3646
|
+
}
|
|
3647
|
+
|
|
3648
|
+
.k-md-editor__content .ProseMirror h1 { font-size: 1.875rem; }
|
|
3649
|
+
.k-md-editor__content .ProseMirror h2 { font-size: 1.5rem; }
|
|
3650
|
+
.k-md-editor__content .ProseMirror h3 { font-size: 1.25rem; }
|
|
3651
|
+
|
|
3652
|
+
.k-md-editor__content .ProseMirror p {
|
|
3653
|
+
margin: 0 0 0.75em;
|
|
3654
|
+
}
|
|
3655
|
+
|
|
3656
|
+
.k-md-editor__content .ProseMirror p:last-child {
|
|
3657
|
+
margin-bottom: 0;
|
|
3658
|
+
}
|
|
3659
|
+
|
|
3660
|
+
/* Lists */
|
|
3661
|
+
.k-md-editor__content .ProseMirror ul,
|
|
3662
|
+
.k-md-editor__content .ProseMirror ol {
|
|
3663
|
+
margin: 0.75em 0;
|
|
3664
|
+
padding-left: 1.5em;
|
|
3665
|
+
}
|
|
3666
|
+
|
|
3667
|
+
.k-md-editor__content .ProseMirror ul { list-style-type: disc; }
|
|
3668
|
+
.k-md-editor__content .ProseMirror ol { list-style-type: decimal; }
|
|
3669
|
+
.k-md-editor__content .ProseMirror ul ul { list-style-type: circle; }
|
|
3670
|
+
.k-md-editor__content .ProseMirror ul ul ul { list-style-type: square; }
|
|
3671
|
+
|
|
3672
|
+
.k-md-editor__content .ProseMirror li {
|
|
3673
|
+
margin: 0.25em 0;
|
|
3674
|
+
display: list-item;
|
|
3675
|
+
}
|
|
3676
|
+
|
|
3677
|
+
.k-md-editor__content .ProseMirror li > p {
|
|
3678
|
+
margin: 0;
|
|
3679
|
+
}
|
|
3680
|
+
|
|
3681
|
+
/* Code */
|
|
3682
|
+
.k-md-editor__content .ProseMirror code {
|
|
3683
|
+
font-family: 'SF Mono', 'Fira Code', monospace;
|
|
3684
|
+
font-size: 0.9em;
|
|
3685
|
+
background-color: var(--k-md-editor-code-bg);
|
|
3686
|
+
padding: 0.2em 0.4em;
|
|
3687
|
+
border-radius: 4px;
|
|
3688
|
+
}
|
|
3689
|
+
|
|
3690
|
+
.k-md-editor__content .ProseMirror pre {
|
|
3691
|
+
background-color: var(--k-md-editor-code-bg);
|
|
3692
|
+
padding: 12px 16px;
|
|
3693
|
+
border-radius: 8px;
|
|
3694
|
+
overflow-x: auto;
|
|
3695
|
+
margin: 0.75em 0;
|
|
3696
|
+
}
|
|
3697
|
+
|
|
3698
|
+
.k-md-editor__content .ProseMirror pre code {
|
|
3699
|
+
background: none;
|
|
3700
|
+
padding: 0;
|
|
3701
|
+
font-size: 0.875rem;
|
|
3702
|
+
}
|
|
3703
|
+
|
|
3704
|
+
/* Blockquote */
|
|
3705
|
+
.k-md-editor__content .ProseMirror blockquote {
|
|
3706
|
+
border-left: 3px solid var(--k-md-editor-border);
|
|
3707
|
+
margin: 0.75em 0;
|
|
3708
|
+
padding-left: 1em;
|
|
3709
|
+
color: var(--k-md-editor-text-muted);
|
|
3710
|
+
}
|
|
3711
|
+
|
|
3712
|
+
.k-md-editor__content .ProseMirror blockquote p {
|
|
3713
|
+
margin: 0;
|
|
3714
|
+
}
|
|
3715
|
+
|
|
3716
|
+
/* Links */
|
|
3717
|
+
.k-md-editor__content .ProseMirror a {
|
|
3718
|
+
color: var(--k-md-editor-link);
|
|
3719
|
+
text-decoration: none;
|
|
3720
|
+
cursor: pointer;
|
|
3721
|
+
}
|
|
3722
|
+
|
|
3723
|
+
.k-md-editor__content .ProseMirror a:hover {
|
|
3724
|
+
text-decoration: underline;
|
|
3725
|
+
}
|
|
3726
|
+
|
|
3727
|
+
/* Horizontal Rule */
|
|
3728
|
+
.k-md-editor__content .ProseMirror hr {
|
|
3729
|
+
border: none;
|
|
3730
|
+
border-top: 1px solid var(--k-md-editor-border);
|
|
3731
|
+
margin: 1.5em 0;
|
|
3732
|
+
}
|
|
3733
|
+
|
|
3734
|
+
/* Table */
|
|
3735
|
+
.k-md-editor__content .ProseMirror table {
|
|
3736
|
+
border-collapse: collapse;
|
|
3737
|
+
width: 100%;
|
|
3738
|
+
margin: 1em 0;
|
|
3739
|
+
table-layout: fixed;
|
|
3740
|
+
}
|
|
3741
|
+
|
|
3742
|
+
.k-md-editor__content .ProseMirror table td,
|
|
3743
|
+
.k-md-editor__content .ProseMirror table th {
|
|
3744
|
+
border: 1px solid var(--k-md-editor-border);
|
|
3745
|
+
padding: 10px 12px;
|
|
3746
|
+
position: relative;
|
|
3747
|
+
text-align: left;
|
|
3748
|
+
vertical-align: top;
|
|
3749
|
+
min-width: 100px;
|
|
3750
|
+
}
|
|
3751
|
+
|
|
3752
|
+
.k-md-editor__content .ProseMirror table th {
|
|
3753
|
+
background-color: var(--k-md-editor-code-bg);
|
|
3754
|
+
font-weight: 600;
|
|
3755
|
+
}
|
|
3756
|
+
|
|
3757
|
+
.k-md-editor__content .ProseMirror table .selectedCell::after {
|
|
3758
|
+
content: '';
|
|
3759
|
+
position: absolute;
|
|
3760
|
+
inset: 0;
|
|
3761
|
+
background-color: var(--k-md-editor-selection);
|
|
3762
|
+
pointer-events: none;
|
|
3763
|
+
z-index: 1;
|
|
3764
|
+
}
|
|
3765
|
+
|
|
3766
|
+
.k-md-editor__content .ProseMirror .column-resize-handle {
|
|
3767
|
+
position: absolute;
|
|
3768
|
+
right: -2px;
|
|
3769
|
+
top: 0;
|
|
3770
|
+
bottom: 0;
|
|
3771
|
+
width: 4px;
|
|
3772
|
+
cursor: col-resize;
|
|
3773
|
+
background-color: var(--k-md-editor-border-focus);
|
|
3774
|
+
z-index: 10;
|
|
3775
|
+
}
|
|
3776
|
+
|
|
3777
|
+
.k-md-editor__content .ProseMirror .tableWrapper {
|
|
3778
|
+
overflow-x: auto;
|
|
3779
|
+
margin: 1em 0;
|
|
3780
|
+
}
|
|
3781
|
+
|
|
3782
|
+
/* ============================================================================
|
|
3783
|
+
Drag Handle - Only CSS needed for pseudo-elements and JS-added states
|
|
3784
|
+
============================================================================ */
|
|
3785
|
+
|
|
3786
|
+
/* Drop Indicator - needs CSS for ::before/::after pseudo-elements */
|
|
3787
|
+
.k-md-editor-drop-indicator {
|
|
3788
|
+
position: absolute;
|
|
3789
|
+
left: 52px;
|
|
3790
|
+
right: 16px;
|
|
3791
|
+
height: 3px;
|
|
3792
|
+
background: linear-gradient(90deg, #3b82f6, #60a5fa);
|
|
3793
|
+
border-radius: 2px;
|
|
3794
|
+
z-index: 20;
|
|
3795
|
+
pointer-events: none;
|
|
3796
|
+
box-shadow: 0 0 8px rgba(59, 130, 246, 0.4);
|
|
3797
|
+
}
|
|
3798
|
+
|
|
3799
|
+
.k-md-editor-drop-indicator::before,
|
|
3800
|
+
.k-md-editor-drop-indicator::after {
|
|
3801
|
+
content: '';
|
|
3802
|
+
position: absolute;
|
|
3803
|
+
top: -4px;
|
|
3804
|
+
width: 10px;
|
|
3805
|
+
height: 10px;
|
|
3806
|
+
background-color: #3b82f6;
|
|
3807
|
+
border-radius: 50%;
|
|
3808
|
+
border: 2px solid white;
|
|
3809
|
+
}
|
|
3810
|
+
|
|
3811
|
+
.k-md-editor-drop-indicator::before { left: -5px; }
|
|
3812
|
+
.k-md-editor-drop-indicator::after { right: -5px; }
|
|
3813
|
+
|
|
3814
|
+
/* Dragging States - added via JavaScript */
|
|
3815
|
+
.k-md-editor--dragging {
|
|
3816
|
+
cursor: grabbing !important;
|
|
3817
|
+
}
|
|
3818
|
+
|
|
3819
|
+
.k-md-editor--dragging * {
|
|
3820
|
+
cursor: grabbing !important;
|
|
3821
|
+
}
|
|
3822
|
+
|
|
3823
|
+
.k-md-editor--dragging .ProseMirror {
|
|
3824
|
+
-webkit-user-select: none;
|
|
3825
|
+
-moz-user-select: none;
|
|
3826
|
+
user-select: none;
|
|
3827
|
+
}
|
|
3828
|
+
|
|
3829
|
+
.k-md-editor-block--dragging {
|
|
3830
|
+
opacity: 0.4;
|
|
3831
|
+
background-color: rgba(59, 130, 246, 0.05);
|
|
3832
|
+
border-radius: 4px;
|
|
3833
|
+
}
|
|
3834
|
+
|
|
3835
|
+
/* ============================================================================
|
|
3836
|
+
Animations (Referenced by Tailwind arbitrary values)
|
|
3837
|
+
============================================================================ */
|
|
3838
|
+
|
|
3839
|
+
@keyframes ai-message-in {
|
|
3840
|
+
from { opacity: 0; transform: translateY(10px); }
|
|
3841
|
+
to { opacity: 1; transform: translateY(0); }
|
|
3842
|
+
}
|
|
3843
|
+
|
|
3844
|
+
@keyframes ai-new-selection-in {
|
|
3845
|
+
from { opacity: 0; transform: translateY(-8px) scale(0.98); }
|
|
3846
|
+
to { opacity: 1; transform: translateY(0) scale(1); }
|
|
3847
|
+
}
|
|
3848
|
+
|
|
3849
|
+
@keyframes ai-loading-slide {
|
|
3850
|
+
0% { transform: translateX(-100%); }
|
|
3851
|
+
100% { transform: translateX(350%); }
|
|
3852
|
+
}
|
|
3853
|
+
|
|
3854
|
+
@keyframes ai-panel-slide-in {
|
|
3855
|
+
from { width: 0; min-width: 0; opacity: 0; }
|
|
3856
|
+
to { width: 400px; min-width: 340px; opacity: 1; }
|
|
3857
|
+
}
|
|
3858
|
+
|
|
3859
|
+
@keyframes ai-backdrop-in {
|
|
3860
|
+
from { opacity: 0; }
|
|
3861
|
+
to { opacity: 1; }
|
|
3862
|
+
}
|
|
3863
|
+
|
|
3864
|
+
@keyframes ai-popup-scale-in {
|
|
3865
|
+
from { transform: scale(0.9) translateY(20px); opacity: 0; }
|
|
3866
|
+
to { transform: scale(1) translateY(0); opacity: 1; }
|
|
3867
|
+
}
|
|
3868
|
+
|
|
3869
|
+
@keyframes ai-drawer-slide-up {
|
|
3870
|
+
from { transform: translateY(100%); }
|
|
3871
|
+
to { transform: translateY(0); }
|
|
3872
|
+
}
|
|
3873
|
+
|
|
3874
|
+
/* ============================================================================
|
|
3875
|
+
Scrollbar Styles - Subtle, appears on hover
|
|
3876
|
+
============================================================================ */
|
|
3877
|
+
|
|
3878
|
+
/* Main editor scrollbar */
|
|
3879
|
+
.k-md-editor__content::-webkit-scrollbar {
|
|
3880
|
+
width: 6px;
|
|
3881
|
+
height: 6px;
|
|
3882
|
+
}
|
|
3883
|
+
|
|
3884
|
+
.k-md-editor__content::-webkit-scrollbar-track {
|
|
3885
|
+
background: transparent;
|
|
3886
|
+
}
|
|
3887
|
+
|
|
3888
|
+
.k-md-editor__content::-webkit-scrollbar-thumb {
|
|
3889
|
+
background-color: transparent;
|
|
3890
|
+
border-radius: 3px;
|
|
3891
|
+
-webkit-transition: background-color 0.2s;
|
|
3892
|
+
transition: background-color 0.2s;
|
|
3893
|
+
}
|
|
3894
|
+
|
|
3895
|
+
.k-md-editor__content:hover::-webkit-scrollbar-thumb {
|
|
3896
|
+
background-color: rgba(0, 0, 0, 0.15);
|
|
3897
|
+
}
|
|
3898
|
+
|
|
3899
|
+
.k-md-editor--dark .k-md-editor__content:hover::-webkit-scrollbar-thumb {
|
|
3900
|
+
background-color: rgba(255, 255, 255, 0.15);
|
|
3901
|
+
}
|
|
3902
|
+
|
|
3903
|
+
.k-md-editor__content::-webkit-scrollbar-thumb:hover {
|
|
3904
|
+
background-color: rgba(0, 0, 0, 0.25);
|
|
3905
|
+
}
|
|
3906
|
+
|
|
3907
|
+
.k-md-editor--dark .k-md-editor__content::-webkit-scrollbar-thumb:hover {
|
|
3908
|
+
background-color: rgba(255, 255, 255, 0.25);
|
|
3909
|
+
}
|
|
3910
|
+
|
|
3911
|
+
/* AI Panel scrollbar - extra subtle */
|
|
3912
|
+
.k-md-editor [class*="overflow-y-auto"]::-webkit-scrollbar {
|
|
3913
|
+
width: 4px;
|
|
3914
|
+
}
|
|
3915
|
+
|
|
3916
|
+
.k-md-editor [class*="overflow-y-auto"]::-webkit-scrollbar-track {
|
|
3917
|
+
background: transparent;
|
|
3918
|
+
}
|
|
3919
|
+
|
|
3920
|
+
.k-md-editor [class*="overflow-y-auto"]::-webkit-scrollbar-thumb {
|
|
3921
|
+
background-color: transparent;
|
|
3922
|
+
border-radius: 2px;
|
|
3923
|
+
}
|
|
3924
|
+
|
|
3925
|
+
.k-md-editor [class*="overflow-y-auto"]:hover::-webkit-scrollbar-thumb {
|
|
3926
|
+
background-color: rgba(0, 0, 0, 0.1);
|
|
3927
|
+
}
|
|
3928
|
+
|
|
3929
|
+
.k-md-editor--dark [class*="overflow-y-auto"]:hover::-webkit-scrollbar-thumb,
|
|
3930
|
+
.k-md-editor [class*="overflow-y-auto"][class*="from-gray-900"]:hover::-webkit-scrollbar-thumb {
|
|
3931
|
+
background-color: rgba(255, 255, 255, 0.1);
|
|
3932
|
+
}
|
|
3933
|
+
|
|
3934
|
+
/* ============================================================================
|
|
3935
|
+
AI Selection Box - Snake Border Animation
|
|
3936
|
+
============================================================================ */
|
|
3937
|
+
|
|
3938
|
+
.k-md-editor-snake-border {
|
|
3939
|
+
position: relative;
|
|
3940
|
+
border-color: transparent !important;
|
|
3941
|
+
background:
|
|
3942
|
+
linear-gradient(var(--snake-bg, #fafafa), var(--snake-bg, #fafafa)) padding-box,
|
|
3943
|
+
conic-gradient(
|
|
3944
|
+
from var(--snake-angle, 0deg),
|
|
3945
|
+
transparent 0deg,
|
|
3946
|
+
transparent 60deg,
|
|
3947
|
+
#8b5cf6 80deg,
|
|
3948
|
+
#c4b5fd 90deg,
|
|
3949
|
+
#8b5cf6 100deg,
|
|
3950
|
+
transparent 120deg,
|
|
3951
|
+
transparent 360deg
|
|
3952
|
+
) border-box;
|
|
3953
|
+
border: 2px solid transparent;
|
|
3954
|
+
animation: snake-spin 1.2s linear infinite;
|
|
3955
|
+
}
|
|
3956
|
+
|
|
3957
|
+
/* Light theme background */
|
|
3958
|
+
.k-md-editor-snake-border {
|
|
3959
|
+
--snake-bg: #f9fafb;
|
|
3960
|
+
}
|
|
3961
|
+
|
|
3962
|
+
/* Dark theme background */
|
|
3963
|
+
.k-md-editor--dark .k-md-editor-snake-border,
|
|
3964
|
+
[data-theme*="dark"] .k-md-editor-snake-border {
|
|
3965
|
+
--snake-bg: #1f2937;
|
|
3966
|
+
}
|
|
3967
|
+
|
|
3968
|
+
/* Use @property for smooth angle animation (Chrome/Edge) */
|
|
3969
|
+
@supports (background: conic-gradient(from 0deg, red, blue)) {
|
|
3970
|
+
@property --snake-angle {
|
|
3971
|
+
syntax: '<angle>';
|
|
3972
|
+
initial-value: 0deg;
|
|
3973
|
+
inherits: false;
|
|
3974
|
+
}
|
|
3975
|
+
|
|
3976
|
+
@keyframes snake-spin {
|
|
3977
|
+
to {
|
|
3978
|
+
--snake-angle: 360deg;
|
|
3979
|
+
}
|
|
3980
|
+
}
|
|
3981
|
+
}
|
|
3982
|
+
|
|
3983
|
+
/* Fallback for Firefox/Safari - use pseudo-element rotation */
|
|
3984
|
+
@supports not (background: paint(something)) {
|
|
3985
|
+
.k-md-editor-snake-border::before {
|
|
3986
|
+
content: '';
|
|
3987
|
+
position: absolute;
|
|
3988
|
+
inset: -2px;
|
|
3989
|
+
border-radius: inherit;
|
|
3990
|
+
background: conic-gradient(
|
|
3991
|
+
from 0deg,
|
|
3992
|
+
transparent 0deg,
|
|
3993
|
+
transparent 60deg,
|
|
3994
|
+
#8b5cf6 80deg,
|
|
3995
|
+
#c4b5fd 90deg,
|
|
3996
|
+
#8b5cf6 100deg,
|
|
3997
|
+
transparent 120deg,
|
|
3998
|
+
transparent 360deg
|
|
3999
|
+
);
|
|
4000
|
+
animation: snake-rotate 1.2s linear infinite;
|
|
4001
|
+
z-index: -1;
|
|
4002
|
+
}
|
|
4003
|
+
|
|
4004
|
+
.k-md-editor-snake-border::after {
|
|
4005
|
+
content: '';
|
|
4006
|
+
position: absolute;
|
|
4007
|
+
inset: 0;
|
|
4008
|
+
border-radius: calc(0.5rem - 2px);
|
|
4009
|
+
background: var(--snake-bg, #f9fafb);
|
|
4010
|
+
z-index: -1;
|
|
4011
|
+
}
|
|
4012
|
+
|
|
4013
|
+
@keyframes snake-rotate {
|
|
4014
|
+
from { transform: rotate(0deg); }
|
|
4015
|
+
to { transform: rotate(360deg); }
|
|
4016
|
+
}
|
|
4017
|
+
}
|
|
4018
|
+
|
|
4019
|
+
/* ============================================================================
|
|
4020
|
+
Print Styles
|
|
4021
|
+
============================================================================ */
|
|
4022
|
+
|
|
4023
|
+
@media print {
|
|
4024
|
+
.k-md-editor {
|
|
4025
|
+
background: white;
|
|
4026
|
+
color: black;
|
|
4027
|
+
}
|
|
4028
|
+
|
|
4029
|
+
.k-md-editor-drag-handle-container {
|
|
4030
|
+
display: none;
|
|
4031
|
+
}
|
|
4032
|
+
}
|