agentic-ui-libs 1.0.0-beta.3 → 1.0.0-beta.5
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 +1556 -1
- 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 +16 -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/MentionCommand.d.ts +10 -0
- package/dist/features/md-editor/extensions/MentionCommand.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 +5 -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 +352 -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 +33130 -1307
- package/dist/ui-libs.umd.js +34025 -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
|
}
|
|
@@ -617,6 +623,9 @@ video {
|
|
|
617
623
|
.right-0 {
|
|
618
624
|
right: 0px;
|
|
619
625
|
}
|
|
626
|
+
.right-2 {
|
|
627
|
+
right: 0.5rem;
|
|
628
|
+
}
|
|
620
629
|
.right-full {
|
|
621
630
|
right: 100%;
|
|
622
631
|
}
|
|
@@ -626,6 +635,9 @@ video {
|
|
|
626
635
|
.top-1\/2 {
|
|
627
636
|
top: 50%;
|
|
628
637
|
}
|
|
638
|
+
.top-2 {
|
|
639
|
+
top: 0.5rem;
|
|
640
|
+
}
|
|
629
641
|
.top-\[-40px\] {
|
|
630
642
|
top: -40px;
|
|
631
643
|
}
|
|
@@ -662,13 +674,45 @@ video {
|
|
|
662
674
|
.z-\[99999\] {
|
|
663
675
|
z-index: 99999;
|
|
664
676
|
}
|
|
677
|
+
.z-\[9999\] {
|
|
678
|
+
z-index: 9999;
|
|
679
|
+
}
|
|
665
680
|
.col-span-2 {
|
|
666
681
|
grid-column: span 2 / span 2;
|
|
667
682
|
}
|
|
683
|
+
.m-0 {
|
|
684
|
+
margin: 0px;
|
|
685
|
+
}
|
|
686
|
+
.m-3 {
|
|
687
|
+
margin: 0.75rem;
|
|
688
|
+
}
|
|
689
|
+
.mx-0\.5 {
|
|
690
|
+
margin-left: 0.125rem;
|
|
691
|
+
margin-right: 0.125rem;
|
|
692
|
+
}
|
|
693
|
+
.mx-1 {
|
|
694
|
+
margin-left: 0.25rem;
|
|
695
|
+
margin-right: 0.25rem;
|
|
696
|
+
}
|
|
697
|
+
.mx-2 {
|
|
698
|
+
margin-left: 0.5rem;
|
|
699
|
+
margin-right: 0.5rem;
|
|
700
|
+
}
|
|
668
701
|
.mx-auto {
|
|
669
702
|
margin-left: auto;
|
|
670
703
|
margin-right: auto;
|
|
671
704
|
}
|
|
705
|
+
.my-1 {
|
|
706
|
+
margin-top: 0.25rem;
|
|
707
|
+
margin-bottom: 0.25rem;
|
|
708
|
+
}
|
|
709
|
+
.my-2 {
|
|
710
|
+
margin-top: 0.5rem;
|
|
711
|
+
margin-bottom: 0.5rem;
|
|
712
|
+
}
|
|
713
|
+
.-ml-1 {
|
|
714
|
+
margin-left: -0.25rem;
|
|
715
|
+
}
|
|
672
716
|
.-mt-1 {
|
|
673
717
|
margin-top: -0.25rem;
|
|
674
718
|
}
|
|
@@ -678,6 +722,9 @@ video {
|
|
|
678
722
|
.mb-2 {
|
|
679
723
|
margin-bottom: 0.5rem;
|
|
680
724
|
}
|
|
725
|
+
.mb-2\.5 {
|
|
726
|
+
margin-bottom: 0.625rem;
|
|
727
|
+
}
|
|
681
728
|
.mb-3 {
|
|
682
729
|
margin-bottom: 0.75rem;
|
|
683
730
|
}
|
|
@@ -699,6 +746,12 @@ video {
|
|
|
699
746
|
.mb-\[8px\] {
|
|
700
747
|
margin-bottom: 8px;
|
|
701
748
|
}
|
|
749
|
+
.ml-0 {
|
|
750
|
+
margin-left: 0px;
|
|
751
|
+
}
|
|
752
|
+
.ml-0\.5 {
|
|
753
|
+
margin-left: 0.125rem;
|
|
754
|
+
}
|
|
702
755
|
.ml-1 {
|
|
703
756
|
margin-left: 0.25rem;
|
|
704
757
|
}
|
|
@@ -708,12 +761,18 @@ video {
|
|
|
708
761
|
.ml-2 {
|
|
709
762
|
margin-left: 0.5rem;
|
|
710
763
|
}
|
|
764
|
+
.ml-3 {
|
|
765
|
+
margin-left: 0.75rem;
|
|
766
|
+
}
|
|
711
767
|
.ml-4 {
|
|
712
768
|
margin-left: 1rem;
|
|
713
769
|
}
|
|
714
770
|
.ml-\[56px\] {
|
|
715
771
|
margin-left: 56px;
|
|
716
772
|
}
|
|
773
|
+
.ml-auto {
|
|
774
|
+
margin-left: auto;
|
|
775
|
+
}
|
|
717
776
|
.mr-1 {
|
|
718
777
|
margin-right: 0.25rem;
|
|
719
778
|
}
|
|
@@ -738,6 +797,9 @@ video {
|
|
|
738
797
|
.mt-2 {
|
|
739
798
|
margin-top: 0.5rem;
|
|
740
799
|
}
|
|
800
|
+
.mt-2\.5 {
|
|
801
|
+
margin-top: 0.625rem;
|
|
802
|
+
}
|
|
741
803
|
.mt-3 {
|
|
742
804
|
margin-top: 0.75rem;
|
|
743
805
|
}
|
|
@@ -756,6 +818,21 @@ video {
|
|
|
756
818
|
.box-border {
|
|
757
819
|
box-sizing: border-box;
|
|
758
820
|
}
|
|
821
|
+
.line-clamp-3 {
|
|
822
|
+
overflow: hidden;
|
|
823
|
+
display: -webkit-box;
|
|
824
|
+
-webkit-box-orient: vertical;
|
|
825
|
+
-webkit-line-clamp: 3;
|
|
826
|
+
}
|
|
827
|
+
.line-clamp-4 {
|
|
828
|
+
overflow: hidden;
|
|
829
|
+
display: -webkit-box;
|
|
830
|
+
-webkit-box-orient: vertical;
|
|
831
|
+
-webkit-line-clamp: 4;
|
|
832
|
+
}
|
|
833
|
+
.\!block {
|
|
834
|
+
display: block !important;
|
|
835
|
+
}
|
|
759
836
|
.block {
|
|
760
837
|
display: block;
|
|
761
838
|
}
|
|
@@ -823,18 +900,27 @@ video {
|
|
|
823
900
|
.h-0\.5 {
|
|
824
901
|
height: 0.125rem;
|
|
825
902
|
}
|
|
903
|
+
.h-1 {
|
|
904
|
+
height: 0.25rem;
|
|
905
|
+
}
|
|
826
906
|
.h-10 {
|
|
827
907
|
height: 2.5rem;
|
|
828
908
|
}
|
|
829
909
|
.h-12 {
|
|
830
910
|
height: 3rem;
|
|
831
911
|
}
|
|
912
|
+
.h-16 {
|
|
913
|
+
height: 4rem;
|
|
914
|
+
}
|
|
832
915
|
.h-2 {
|
|
833
916
|
height: 0.5rem;
|
|
834
917
|
}
|
|
835
918
|
.h-3 {
|
|
836
919
|
height: 0.75rem;
|
|
837
920
|
}
|
|
921
|
+
.h-3\.5 {
|
|
922
|
+
height: 0.875rem;
|
|
923
|
+
}
|
|
838
924
|
.h-32 {
|
|
839
925
|
height: 8rem;
|
|
840
926
|
}
|
|
@@ -850,6 +936,15 @@ video {
|
|
|
850
936
|
.h-64 {
|
|
851
937
|
height: 16rem;
|
|
852
938
|
}
|
|
939
|
+
.h-7 {
|
|
940
|
+
height: 1.75rem;
|
|
941
|
+
}
|
|
942
|
+
.h-8 {
|
|
943
|
+
height: 2rem;
|
|
944
|
+
}
|
|
945
|
+
.h-9 {
|
|
946
|
+
height: 2.25rem;
|
|
947
|
+
}
|
|
853
948
|
.h-\[12px\] {
|
|
854
949
|
height: 12px;
|
|
855
950
|
}
|
|
@@ -859,9 +954,15 @@ video {
|
|
|
859
954
|
.h-\[16px\] {
|
|
860
955
|
height: 16px;
|
|
861
956
|
}
|
|
957
|
+
.h-\[18px\] {
|
|
958
|
+
height: 18px;
|
|
959
|
+
}
|
|
862
960
|
.h-\[1px\] {
|
|
863
961
|
height: 1px;
|
|
864
962
|
}
|
|
963
|
+
.h-\[22px\] {
|
|
964
|
+
height: 22px;
|
|
965
|
+
}
|
|
865
966
|
.h-\[24px\] {
|
|
866
967
|
height: 24px;
|
|
867
968
|
}
|
|
@@ -874,6 +975,9 @@ video {
|
|
|
874
975
|
.h-\[32px\] {
|
|
875
976
|
height: 32px;
|
|
876
977
|
}
|
|
978
|
+
.h-\[34px\] {
|
|
979
|
+
height: 34px;
|
|
980
|
+
}
|
|
877
981
|
.h-\[40px\] {
|
|
878
982
|
height: 40px;
|
|
879
983
|
}
|
|
@@ -889,6 +993,9 @@ video {
|
|
|
889
993
|
.h-\[4px\] {
|
|
890
994
|
height: 4px;
|
|
891
995
|
}
|
|
996
|
+
.h-\[52px\] {
|
|
997
|
+
height: 52px;
|
|
998
|
+
}
|
|
892
999
|
.h-\[56px\] {
|
|
893
1000
|
height: 56px;
|
|
894
1001
|
}
|
|
@@ -904,6 +1011,9 @@ video {
|
|
|
904
1011
|
.h-\[calc\(100\%\+40px\)\] {
|
|
905
1012
|
height: calc(100% + 40px);
|
|
906
1013
|
}
|
|
1014
|
+
.h-\[calc\(100\%-24px\)\] {
|
|
1015
|
+
height: calc(100% - 24px);
|
|
1016
|
+
}
|
|
907
1017
|
.h-\[calc\(100\%-64px\)\] {
|
|
908
1018
|
height: calc(100% - 64px);
|
|
909
1019
|
}
|
|
@@ -916,6 +1026,9 @@ video {
|
|
|
916
1026
|
.h-screen {
|
|
917
1027
|
height: 100vh;
|
|
918
1028
|
}
|
|
1029
|
+
.max-h-0 {
|
|
1030
|
+
max-height: 0px;
|
|
1031
|
+
}
|
|
919
1032
|
.max-h-48 {
|
|
920
1033
|
max-height: 12rem;
|
|
921
1034
|
}
|
|
@@ -925,12 +1038,30 @@ video {
|
|
|
925
1038
|
.max-h-80 {
|
|
926
1039
|
max-height: 20rem;
|
|
927
1040
|
}
|
|
1041
|
+
.max-h-\[100px\] {
|
|
1042
|
+
max-height: 100px;
|
|
1043
|
+
}
|
|
1044
|
+
.max-h-\[180px\] {
|
|
1045
|
+
max-height: 180px;
|
|
1046
|
+
}
|
|
1047
|
+
.max-h-\[280px\] {
|
|
1048
|
+
max-height: 280px;
|
|
1049
|
+
}
|
|
928
1050
|
.max-h-\[300px\] {
|
|
929
1051
|
max-height: 300px;
|
|
930
1052
|
}
|
|
931
1053
|
.max-h-\[320px\] {
|
|
932
1054
|
max-height: 320px;
|
|
933
1055
|
}
|
|
1056
|
+
.max-h-\[360px\] {
|
|
1057
|
+
max-height: 360px;
|
|
1058
|
+
}
|
|
1059
|
+
.max-h-\[70vh\] {
|
|
1060
|
+
max-height: 70vh;
|
|
1061
|
+
}
|
|
1062
|
+
.max-h-\[80vh\] {
|
|
1063
|
+
max-height: 80vh;
|
|
1064
|
+
}
|
|
934
1065
|
.max-h-\[calc\(100\%-40px\)\] {
|
|
935
1066
|
max-height: calc(100% - 40px);
|
|
936
1067
|
}
|
|
@@ -940,6 +1071,12 @@ video {
|
|
|
940
1071
|
.min-h-0 {
|
|
941
1072
|
min-height: 0px;
|
|
942
1073
|
}
|
|
1074
|
+
.min-h-\[200px\] {
|
|
1075
|
+
min-height: 200px;
|
|
1076
|
+
}
|
|
1077
|
+
.min-h-\[36px\] {
|
|
1078
|
+
min-height: 36px;
|
|
1079
|
+
}
|
|
943
1080
|
.min-h-\[380px\] {
|
|
944
1081
|
min-height: 380px;
|
|
945
1082
|
}
|
|
@@ -973,6 +1110,9 @@ video {
|
|
|
973
1110
|
.w-3 {
|
|
974
1111
|
width: 0.75rem;
|
|
975
1112
|
}
|
|
1113
|
+
.w-3\.5 {
|
|
1114
|
+
width: 0.875rem;
|
|
1115
|
+
}
|
|
976
1116
|
.w-32 {
|
|
977
1117
|
width: 8rem;
|
|
978
1118
|
}
|
|
@@ -991,6 +1131,18 @@ video {
|
|
|
991
1131
|
.w-64 {
|
|
992
1132
|
width: 16rem;
|
|
993
1133
|
}
|
|
1134
|
+
.w-7 {
|
|
1135
|
+
width: 1.75rem;
|
|
1136
|
+
}
|
|
1137
|
+
.w-8 {
|
|
1138
|
+
width: 2rem;
|
|
1139
|
+
}
|
|
1140
|
+
.w-9 {
|
|
1141
|
+
width: 2.25rem;
|
|
1142
|
+
}
|
|
1143
|
+
.w-\[120px\] {
|
|
1144
|
+
width: 120px;
|
|
1145
|
+
}
|
|
994
1146
|
.w-\[12px\] {
|
|
995
1147
|
width: 12px;
|
|
996
1148
|
}
|
|
@@ -1000,6 +1152,9 @@ video {
|
|
|
1000
1152
|
.w-\[16px\] {
|
|
1001
1153
|
width: 16px;
|
|
1002
1154
|
}
|
|
1155
|
+
.w-\[18px\] {
|
|
1156
|
+
width: 18px;
|
|
1157
|
+
}
|
|
1003
1158
|
.w-\[1px\] {
|
|
1004
1159
|
width: 1px;
|
|
1005
1160
|
}
|
|
@@ -1009,6 +1164,9 @@ video {
|
|
|
1009
1164
|
.w-\[210px\] {
|
|
1010
1165
|
width: 210px;
|
|
1011
1166
|
}
|
|
1167
|
+
.w-\[22px\] {
|
|
1168
|
+
width: 22px;
|
|
1169
|
+
}
|
|
1012
1170
|
.w-\[24px\] {
|
|
1013
1171
|
width: 24px;
|
|
1014
1172
|
}
|
|
@@ -1018,18 +1176,30 @@ video {
|
|
|
1018
1176
|
.w-\[280px\] {
|
|
1019
1177
|
width: 280px;
|
|
1020
1178
|
}
|
|
1179
|
+
.w-\[300px\] {
|
|
1180
|
+
width: 300px;
|
|
1181
|
+
}
|
|
1021
1182
|
.w-\[320px\] {
|
|
1022
1183
|
width: 320px;
|
|
1023
1184
|
}
|
|
1024
1185
|
.w-\[32px\] {
|
|
1025
1186
|
width: 32px;
|
|
1026
1187
|
}
|
|
1188
|
+
.w-\[34px\] {
|
|
1189
|
+
width: 34px;
|
|
1190
|
+
}
|
|
1191
|
+
.w-\[40\%\] {
|
|
1192
|
+
width: 40%;
|
|
1193
|
+
}
|
|
1027
1194
|
.w-\[400px\] {
|
|
1028
1195
|
width: 400px;
|
|
1029
1196
|
}
|
|
1030
1197
|
.w-\[48px\] {
|
|
1031
1198
|
width: 48px;
|
|
1032
1199
|
}
|
|
1200
|
+
.w-\[52px\] {
|
|
1201
|
+
width: 52px;
|
|
1202
|
+
}
|
|
1033
1203
|
.w-\[600px\] {
|
|
1034
1204
|
width: 600px;
|
|
1035
1205
|
}
|
|
@@ -1042,6 +1212,9 @@ video {
|
|
|
1042
1212
|
.w-\[8px\] {
|
|
1043
1213
|
width: 8px;
|
|
1044
1214
|
}
|
|
1215
|
+
.w-\[90\%\] {
|
|
1216
|
+
width: 90%;
|
|
1217
|
+
}
|
|
1045
1218
|
.w-full {
|
|
1046
1219
|
width: 100%;
|
|
1047
1220
|
}
|
|
@@ -1049,12 +1222,27 @@ video {
|
|
|
1049
1222
|
width: -moz-max-content;
|
|
1050
1223
|
width: max-content;
|
|
1051
1224
|
}
|
|
1225
|
+
.w-px {
|
|
1226
|
+
width: 1px;
|
|
1227
|
+
}
|
|
1052
1228
|
.w-screen {
|
|
1053
1229
|
width: 100vw;
|
|
1054
1230
|
}
|
|
1055
1231
|
.min-w-0 {
|
|
1056
1232
|
min-width: 0px;
|
|
1057
1233
|
}
|
|
1234
|
+
.min-w-7 {
|
|
1235
|
+
min-width: 1.75rem;
|
|
1236
|
+
}
|
|
1237
|
+
.min-w-\[150px\] {
|
|
1238
|
+
min-width: 150px;
|
|
1239
|
+
}
|
|
1240
|
+
.min-w-\[16px\] {
|
|
1241
|
+
min-width: 16px;
|
|
1242
|
+
}
|
|
1243
|
+
.min-w-\[180px\] {
|
|
1244
|
+
min-width: 180px;
|
|
1245
|
+
}
|
|
1058
1246
|
.min-w-\[200px\] {
|
|
1059
1247
|
min-width: 200px;
|
|
1060
1248
|
}
|
|
@@ -1064,9 +1252,15 @@ video {
|
|
|
1064
1252
|
.min-w-\[240px\] {
|
|
1065
1253
|
min-width: 240px;
|
|
1066
1254
|
}
|
|
1255
|
+
.min-w-\[280px\] {
|
|
1256
|
+
min-width: 280px;
|
|
1257
|
+
}
|
|
1067
1258
|
.min-w-\[300px\] {
|
|
1068
1259
|
min-width: 300px;
|
|
1069
1260
|
}
|
|
1261
|
+
.min-w-\[340px\] {
|
|
1262
|
+
min-width: 340px;
|
|
1263
|
+
}
|
|
1070
1264
|
.min-w-fit {
|
|
1071
1265
|
min-width: -moz-fit-content;
|
|
1072
1266
|
min-width: fit-content;
|
|
@@ -1083,12 +1277,30 @@ video {
|
|
|
1083
1277
|
.max-w-\[1400px\] {
|
|
1084
1278
|
max-width: 1400px;
|
|
1085
1279
|
}
|
|
1280
|
+
.max-w-\[150px\] {
|
|
1281
|
+
max-width: 150px;
|
|
1282
|
+
}
|
|
1283
|
+
.max-w-\[200px\] {
|
|
1284
|
+
max-width: 200px;
|
|
1285
|
+
}
|
|
1086
1286
|
.max-w-\[352px\] {
|
|
1087
1287
|
max-width: 352px;
|
|
1088
1288
|
}
|
|
1289
|
+
.max-w-\[500px\] {
|
|
1290
|
+
max-width: 500px;
|
|
1291
|
+
}
|
|
1292
|
+
.max-w-\[600px\] {
|
|
1293
|
+
max-width: 600px;
|
|
1294
|
+
}
|
|
1089
1295
|
.max-w-\[80\%\] {
|
|
1090
1296
|
max-width: 80%;
|
|
1091
1297
|
}
|
|
1298
|
+
.max-w-\[85\%\] {
|
|
1299
|
+
max-width: 85%;
|
|
1300
|
+
}
|
|
1301
|
+
.max-w-full {
|
|
1302
|
+
max-width: 100%;
|
|
1303
|
+
}
|
|
1092
1304
|
.max-w-lg {
|
|
1093
1305
|
max-width: 32rem;
|
|
1094
1306
|
}
|
|
@@ -1138,6 +1350,11 @@ video {
|
|
|
1138
1350
|
--tw-rotate: 90deg;
|
|
1139
1351
|
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
1352
|
}
|
|
1353
|
+
.scale-105 {
|
|
1354
|
+
--tw-scale-x: 1.05;
|
|
1355
|
+
--tw-scale-y: 1.05;
|
|
1356
|
+
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));
|
|
1357
|
+
}
|
|
1141
1358
|
.scale-50 {
|
|
1142
1359
|
--tw-scale-x: .5;
|
|
1143
1360
|
--tw-scale-y: .5;
|
|
@@ -1146,6 +1363,27 @@ video {
|
|
|
1146
1363
|
.transform {
|
|
1147
1364
|
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
1365
|
}
|
|
1366
|
+
.animate-\[ai-backdrop-in_0\.2s_ease-out\] {
|
|
1367
|
+
animation: ai-backdrop-in 0.2s ease-out;
|
|
1368
|
+
}
|
|
1369
|
+
.animate-\[ai-drawer-slide-up_0\.4s_cubic-bezier\(0\.4\2c 0\2c 0\.2\2c 1\)\] {
|
|
1370
|
+
animation: ai-drawer-slide-up 0.4s cubic-bezier(0.4,0,0.2,1);
|
|
1371
|
+
}
|
|
1372
|
+
.animate-\[ai-loading-slide_1\.5s_ease-in-out_infinite\] {
|
|
1373
|
+
animation: ai-loading-slide 1.5s ease-in-out infinite;
|
|
1374
|
+
}
|
|
1375
|
+
.animate-\[ai-message-in_0\.3s_ease-out\] {
|
|
1376
|
+
animation: ai-message-in 0.3s ease-out;
|
|
1377
|
+
}
|
|
1378
|
+
.animate-\[ai-new-selection-in_0\.3s_ease-out\] {
|
|
1379
|
+
animation: ai-new-selection-in 0.3s ease-out;
|
|
1380
|
+
}
|
|
1381
|
+
.animate-\[ai-panel-slide-in_0\.3s_cubic-bezier\(0\.4\2c 0\2c 0\.2\2c 1\)\] {
|
|
1382
|
+
animation: ai-panel-slide-in 0.3s cubic-bezier(0.4,0,0.2,1);
|
|
1383
|
+
}
|
|
1384
|
+
.animate-\[ai-popup-scale-in_0\.3s_cubic-bezier\(0\.4\2c 0\2c 0\.2\2c 1\)\] {
|
|
1385
|
+
animation: ai-popup-scale-in 0.3s cubic-bezier(0.4,0,0.2,1);
|
|
1386
|
+
}
|
|
1149
1387
|
@keyframes pulse {
|
|
1150
1388
|
|
|
1151
1389
|
50% {
|
|
@@ -1164,6 +1402,12 @@ video {
|
|
|
1164
1402
|
.animate-spin {
|
|
1165
1403
|
animation: spin 1s linear infinite;
|
|
1166
1404
|
}
|
|
1405
|
+
.cursor-default {
|
|
1406
|
+
cursor: default;
|
|
1407
|
+
}
|
|
1408
|
+
.cursor-grab {
|
|
1409
|
+
cursor: grab;
|
|
1410
|
+
}
|
|
1167
1411
|
.cursor-help {
|
|
1168
1412
|
cursor: help;
|
|
1169
1413
|
}
|
|
@@ -1199,6 +1443,9 @@ video {
|
|
|
1199
1443
|
.flex-row {
|
|
1200
1444
|
flex-direction: row;
|
|
1201
1445
|
}
|
|
1446
|
+
.flex-row-reverse {
|
|
1447
|
+
flex-direction: row-reverse;
|
|
1448
|
+
}
|
|
1202
1449
|
.flex-col {
|
|
1203
1450
|
flex-direction: column;
|
|
1204
1451
|
}
|
|
@@ -1235,6 +1482,9 @@ video {
|
|
|
1235
1482
|
.justify-between {
|
|
1236
1483
|
justify-content: space-between;
|
|
1237
1484
|
}
|
|
1485
|
+
.gap-0\.5 {
|
|
1486
|
+
gap: 0.125rem;
|
|
1487
|
+
}
|
|
1238
1488
|
.gap-1 {
|
|
1239
1489
|
gap: 0.25rem;
|
|
1240
1490
|
}
|
|
@@ -1244,6 +1494,9 @@ video {
|
|
|
1244
1494
|
.gap-2 {
|
|
1245
1495
|
gap: 0.5rem;
|
|
1246
1496
|
}
|
|
1497
|
+
.gap-2\.5 {
|
|
1498
|
+
gap: 0.625rem;
|
|
1499
|
+
}
|
|
1247
1500
|
.gap-3 {
|
|
1248
1501
|
gap: 0.75rem;
|
|
1249
1502
|
}
|
|
@@ -1271,6 +1524,11 @@ video {
|
|
|
1271
1524
|
.gap-\[8px\] {
|
|
1272
1525
|
gap: 8px;
|
|
1273
1526
|
}
|
|
1527
|
+
.space-x-1 > :not([hidden]) ~ :not([hidden]) {
|
|
1528
|
+
--tw-space-x-reverse: 0;
|
|
1529
|
+
margin-right: calc(0.25rem * var(--tw-space-x-reverse));
|
|
1530
|
+
margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));
|
|
1531
|
+
}
|
|
1274
1532
|
.space-y-1 > :not([hidden]) ~ :not([hidden]) {
|
|
1275
1533
|
--tw-space-y-reverse: 0;
|
|
1276
1534
|
margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
|
|
@@ -1320,6 +1578,12 @@ video {
|
|
|
1320
1578
|
.overflow-x-hidden {
|
|
1321
1579
|
overflow-x: hidden;
|
|
1322
1580
|
}
|
|
1581
|
+
.overflow-y-hidden {
|
|
1582
|
+
overflow-y: hidden;
|
|
1583
|
+
}
|
|
1584
|
+
.scroll-smooth {
|
|
1585
|
+
scroll-behavior: smooth;
|
|
1586
|
+
}
|
|
1323
1587
|
.truncate {
|
|
1324
1588
|
overflow: hidden;
|
|
1325
1589
|
text-overflow: ellipsis;
|
|
@@ -1346,12 +1610,21 @@ video {
|
|
|
1346
1610
|
.rounded {
|
|
1347
1611
|
border-radius: 0.25rem;
|
|
1348
1612
|
}
|
|
1613
|
+
.rounded-2xl {
|
|
1614
|
+
border-radius: 1rem;
|
|
1615
|
+
}
|
|
1349
1616
|
.rounded-\[10px\] {
|
|
1350
1617
|
border-radius: 10px;
|
|
1351
1618
|
}
|
|
1352
1619
|
.rounded-\[12px\] {
|
|
1353
1620
|
border-radius: 12px;
|
|
1354
1621
|
}
|
|
1622
|
+
.rounded-\[14px\] {
|
|
1623
|
+
border-radius: 14px;
|
|
1624
|
+
}
|
|
1625
|
+
.rounded-\[20px\] {
|
|
1626
|
+
border-radius: 20px;
|
|
1627
|
+
}
|
|
1355
1628
|
.rounded-\[4px\] {
|
|
1356
1629
|
border-radius: 4px;
|
|
1357
1630
|
}
|
|
@@ -1376,6 +1649,30 @@ video {
|
|
|
1376
1649
|
.rounded-md {
|
|
1377
1650
|
border-radius: calc(var(--radius) - 2px);
|
|
1378
1651
|
}
|
|
1652
|
+
.rounded-sm {
|
|
1653
|
+
border-radius: calc(var(--radius) - 4px);
|
|
1654
|
+
}
|
|
1655
|
+
.rounded-xl {
|
|
1656
|
+
border-radius: 0.75rem;
|
|
1657
|
+
}
|
|
1658
|
+
.rounded-b-xl {
|
|
1659
|
+
border-bottom-right-radius: 0.75rem;
|
|
1660
|
+
border-bottom-left-radius: 0.75rem;
|
|
1661
|
+
}
|
|
1662
|
+
.rounded-t-\[24px\] {
|
|
1663
|
+
border-top-left-radius: 24px;
|
|
1664
|
+
border-top-right-radius: 24px;
|
|
1665
|
+
}
|
|
1666
|
+
.rounded-t-xl {
|
|
1667
|
+
border-top-left-radius: 0.75rem;
|
|
1668
|
+
border-top-right-radius: 0.75rem;
|
|
1669
|
+
}
|
|
1670
|
+
.rounded-bl-md {
|
|
1671
|
+
border-bottom-left-radius: calc(var(--radius) - 2px);
|
|
1672
|
+
}
|
|
1673
|
+
.rounded-br-md {
|
|
1674
|
+
border-bottom-right-radius: calc(var(--radius) - 2px);
|
|
1675
|
+
}
|
|
1379
1676
|
.border {
|
|
1380
1677
|
border-width: 1px;
|
|
1381
1678
|
}
|
|
@@ -1385,6 +1682,9 @@ video {
|
|
|
1385
1682
|
.border-2 {
|
|
1386
1683
|
border-width: 2px;
|
|
1387
1684
|
}
|
|
1685
|
+
.border-\[1\.5px\] {
|
|
1686
|
+
border-width: 1.5px;
|
|
1687
|
+
}
|
|
1388
1688
|
.border-b {
|
|
1389
1689
|
border-bottom-width: 1px;
|
|
1390
1690
|
}
|
|
@@ -1397,6 +1697,9 @@ video {
|
|
|
1397
1697
|
.border-l-2 {
|
|
1398
1698
|
border-left-width: 2px;
|
|
1399
1699
|
}
|
|
1700
|
+
.border-l-\[3px\] {
|
|
1701
|
+
border-left-width: 3px;
|
|
1702
|
+
}
|
|
1400
1703
|
.border-l-\[4px\] {
|
|
1401
1704
|
border-left-width: 4px;
|
|
1402
1705
|
}
|
|
@@ -1446,10 +1749,20 @@ video {
|
|
|
1446
1749
|
.border-\[0px_0px_1px\] {
|
|
1447
1750
|
border-color: 0px 0px 1px;
|
|
1448
1751
|
}
|
|
1752
|
+
.border-black\/5 {
|
|
1753
|
+
border-color: rgb(0 0 0 / 0.05);
|
|
1754
|
+
}
|
|
1755
|
+
.border-black\/\[0\.08\] {
|
|
1756
|
+
border-color: rgb(0 0 0 / 0.08);
|
|
1757
|
+
}
|
|
1449
1758
|
.border-blue-200 {
|
|
1450
1759
|
--tw-border-opacity: 1;
|
|
1451
1760
|
border-color: rgb(178 204 255 / var(--tw-border-opacity, 1));
|
|
1452
1761
|
}
|
|
1762
|
+
.border-blue-300 {
|
|
1763
|
+
--tw-border-opacity: 1;
|
|
1764
|
+
border-color: rgb(132 173 255 / var(--tw-border-opacity, 1));
|
|
1765
|
+
}
|
|
1453
1766
|
.border-blue-500 {
|
|
1454
1767
|
--tw-border-opacity: 1;
|
|
1455
1768
|
border-color: rgb(41 112 255 / var(--tw-border-opacity, 1));
|
|
@@ -1471,6 +1784,9 @@ video {
|
|
|
1471
1784
|
.border-gray-300 {
|
|
1472
1785
|
border-color: var(--colors-border-border-primary, #D0D5DD);
|
|
1473
1786
|
}
|
|
1787
|
+
.border-gray-600 {
|
|
1788
|
+
border-color: var(--component-colors-utility-gray-utility-gray-600, #475467);
|
|
1789
|
+
}
|
|
1474
1790
|
.border-gray-700 {
|
|
1475
1791
|
border-color: var(--colors-foreground-fg-secondary-700, #344054);
|
|
1476
1792
|
}
|
|
@@ -1490,9 +1806,21 @@ video {
|
|
|
1490
1806
|
--tw-border-opacity: 1;
|
|
1491
1807
|
border-color: rgb(254 202 202 / var(--tw-border-opacity, 1));
|
|
1492
1808
|
}
|
|
1809
|
+
.border-red-500\/30 {
|
|
1810
|
+
border-color: rgb(239 68 68 / 0.3);
|
|
1811
|
+
}
|
|
1493
1812
|
.border-transparent {
|
|
1494
1813
|
border-color: transparent;
|
|
1495
1814
|
}
|
|
1815
|
+
.border-white\/10 {
|
|
1816
|
+
border-color: rgb(255 255 255 / 0.1);
|
|
1817
|
+
}
|
|
1818
|
+
.border-white\/5 {
|
|
1819
|
+
border-color: rgb(255 255 255 / 0.05);
|
|
1820
|
+
}
|
|
1821
|
+
.border-white\/60 {
|
|
1822
|
+
border-color: rgb(255 255 255 / 0.6);
|
|
1823
|
+
}
|
|
1496
1824
|
.border-r-gray-900 {
|
|
1497
1825
|
border-right-color: var(--colors-text-text-primary-900, #101828);
|
|
1498
1826
|
}
|
|
@@ -1530,6 +1858,12 @@ video {
|
|
|
1530
1858
|
--tw-bg-opacity: 1;
|
|
1531
1859
|
background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
|
|
1532
1860
|
}
|
|
1861
|
+
.bg-amber-500\/15 {
|
|
1862
|
+
background-color: rgb(245 158 11 / 0.15);
|
|
1863
|
+
}
|
|
1864
|
+
.bg-amber-500\/20 {
|
|
1865
|
+
background-color: rgb(245 158 11 / 0.2);
|
|
1866
|
+
}
|
|
1533
1867
|
.bg-background {
|
|
1534
1868
|
background-color: var(--colors-background-bg-primary, #FFFFFF);
|
|
1535
1869
|
}
|
|
@@ -1537,9 +1871,24 @@ video {
|
|
|
1537
1871
|
--tw-bg-opacity: 1;
|
|
1538
1872
|
background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
|
|
1539
1873
|
}
|
|
1874
|
+
.bg-black\/10 {
|
|
1875
|
+
background-color: rgb(0 0 0 / 0.1);
|
|
1876
|
+
}
|
|
1877
|
+
.bg-black\/20 {
|
|
1878
|
+
background-color: rgb(0 0 0 / 0.2);
|
|
1879
|
+
}
|
|
1880
|
+
.bg-black\/5 {
|
|
1881
|
+
background-color: rgb(0 0 0 / 0.05);
|
|
1882
|
+
}
|
|
1540
1883
|
.bg-black\/60 {
|
|
1541
1884
|
background-color: rgb(0 0 0 / 0.6);
|
|
1542
1885
|
}
|
|
1886
|
+
.bg-black\/\[0\.03\] {
|
|
1887
|
+
background-color: rgb(0 0 0 / 0.03);
|
|
1888
|
+
}
|
|
1889
|
+
.bg-black\/\[0\.04\] {
|
|
1890
|
+
background-color: rgb(0 0 0 / 0.04);
|
|
1891
|
+
}
|
|
1543
1892
|
.bg-blue-100 {
|
|
1544
1893
|
--tw-bg-opacity: 1;
|
|
1545
1894
|
background-color: rgb(209 224 255 / var(--tw-bg-opacity, 1));
|
|
@@ -1563,6 +1912,10 @@ video {
|
|
|
1563
1912
|
.bg-card {
|
|
1564
1913
|
background-color: var(--colors-background-bg-primary, #FFFFFF);
|
|
1565
1914
|
}
|
|
1915
|
+
.bg-emerald-500 {
|
|
1916
|
+
--tw-bg-opacity: 1;
|
|
1917
|
+
background-color: rgb(16 185 129 / var(--tw-bg-opacity, 1));
|
|
1918
|
+
}
|
|
1566
1919
|
.bg-error-500 {
|
|
1567
1920
|
--tw-bg-opacity: 1;
|
|
1568
1921
|
background-color: rgb(240 68 56 / var(--tw-bg-opacity, 1));
|
|
@@ -1640,13 +1993,44 @@ video {
|
|
|
1640
1993
|
--tw-bg-opacity: 1;
|
|
1641
1994
|
background-color: rgb(239 68 68 / var(--tw-bg-opacity, 1));
|
|
1642
1995
|
}
|
|
1996
|
+
.bg-red-900\/30 {
|
|
1997
|
+
background-color: rgb(127 29 29 / 0.3);
|
|
1998
|
+
}
|
|
1643
1999
|
.bg-transparent {
|
|
1644
2000
|
background-color: transparent;
|
|
1645
2001
|
}
|
|
2002
|
+
.bg-violet-50 {
|
|
2003
|
+
--tw-bg-opacity: 1;
|
|
2004
|
+
background-color: rgb(245 243 255 / var(--tw-bg-opacity, 1));
|
|
2005
|
+
}
|
|
2006
|
+
.bg-violet-500\/10 {
|
|
2007
|
+
background-color: rgb(139 92 246 / 0.1);
|
|
2008
|
+
}
|
|
2009
|
+
.bg-violet-500\/20 {
|
|
2010
|
+
background-color: rgb(139 92 246 / 0.2);
|
|
2011
|
+
}
|
|
1646
2012
|
.bg-white {
|
|
1647
2013
|
--tw-bg-opacity: 1;
|
|
1648
2014
|
background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
|
|
1649
2015
|
}
|
|
2016
|
+
.bg-white\/10 {
|
|
2017
|
+
background-color: rgb(255 255 255 / 0.1);
|
|
2018
|
+
}
|
|
2019
|
+
.bg-white\/15 {
|
|
2020
|
+
background-color: rgb(255 255 255 / 0.15);
|
|
2021
|
+
}
|
|
2022
|
+
.bg-white\/20 {
|
|
2023
|
+
background-color: rgb(255 255 255 / 0.2);
|
|
2024
|
+
}
|
|
2025
|
+
.bg-white\/5 {
|
|
2026
|
+
background-color: rgb(255 255 255 / 0.05);
|
|
2027
|
+
}
|
|
2028
|
+
.bg-white\/80 {
|
|
2029
|
+
background-color: rgb(255 255 255 / 0.8);
|
|
2030
|
+
}
|
|
2031
|
+
.bg-white\/90 {
|
|
2032
|
+
background-color: rgb(255 255 255 / 0.9);
|
|
2033
|
+
}
|
|
1650
2034
|
.bg-yellow-50 {
|
|
1651
2035
|
--tw-bg-opacity: 1;
|
|
1652
2036
|
background-color: rgb(254 252 232 / var(--tw-bg-opacity, 1));
|
|
@@ -1664,29 +2048,106 @@ video {
|
|
|
1664
2048
|
.bg-opacity-90 {
|
|
1665
2049
|
--tw-bg-opacity: 0.9;
|
|
1666
2050
|
}
|
|
2051
|
+
.bg-gradient-to-b {
|
|
2052
|
+
background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
|
|
2053
|
+
}
|
|
2054
|
+
.bg-gradient-to-br {
|
|
2055
|
+
background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
|
|
2056
|
+
}
|
|
1667
2057
|
.bg-gradient-to-r {
|
|
1668
2058
|
background-image: linear-gradient(to right, var(--tw-gradient-stops));
|
|
1669
2059
|
}
|
|
2060
|
+
.from-blue-500 {
|
|
2061
|
+
--tw-gradient-from: #2970FF var(--tw-gradient-from-position);
|
|
2062
|
+
--tw-gradient-to: rgb(41 112 255 / 0) var(--tw-gradient-to-position);
|
|
2063
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
|
2064
|
+
}
|
|
2065
|
+
.from-gray-200 {
|
|
2066
|
+
--tw-gradient-from: var(--colors-background-bg-quaternary, #EAECF0) var(--tw-gradient-from-position);
|
|
2067
|
+
--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);
|
|
2068
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
|
2069
|
+
}
|
|
2070
|
+
.from-gray-50 {
|
|
2071
|
+
--tw-gradient-from: var(--colors-background-bg-active, #F9FAFB) var(--tw-gradient-from-position);
|
|
2072
|
+
--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);
|
|
2073
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
|
2074
|
+
}
|
|
2075
|
+
.from-gray-600 {
|
|
2076
|
+
--tw-gradient-from: var(--component-colors-utility-gray-utility-gray-600, #475467) var(--tw-gradient-from-position);
|
|
2077
|
+
--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);
|
|
2078
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
|
2079
|
+
}
|
|
2080
|
+
.from-gray-900 {
|
|
2081
|
+
--tw-gradient-from: var(--colors-text-text-primary-900, #101828) var(--tw-gradient-from-position);
|
|
2082
|
+
--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);
|
|
2083
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
|
2084
|
+
}
|
|
1670
2085
|
.from-transparent {
|
|
1671
2086
|
--tw-gradient-from: transparent var(--tw-gradient-from-position);
|
|
1672
2087
|
--tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
|
|
1673
2088
|
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
|
1674
2089
|
}
|
|
2090
|
+
.from-violet-500 {
|
|
2091
|
+
--tw-gradient-from: #8b5cf6 var(--tw-gradient-from-position);
|
|
2092
|
+
--tw-gradient-to: rgb(139 92 246 / 0) var(--tw-gradient-to-position);
|
|
2093
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
|
2094
|
+
}
|
|
1675
2095
|
.via-blue-400 {
|
|
1676
2096
|
--tw-gradient-to: rgb(82 139 255 / 0) var(--tw-gradient-to-position);
|
|
1677
2097
|
--tw-gradient-stops: var(--tw-gradient-from), #528BFF var(--tw-gradient-via-position), var(--tw-gradient-to);
|
|
1678
2098
|
}
|
|
2099
|
+
.via-gray-100 {
|
|
2100
|
+
--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);
|
|
2101
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--colors-background-bg-tertiary, #F2F4F7) var(--tw-gradient-via-position), var(--tw-gradient-to);
|
|
2102
|
+
}
|
|
1679
2103
|
.via-gray-300 {
|
|
1680
2104
|
--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);
|
|
1681
2105
|
--tw-gradient-stops: var(--tw-gradient-from), var(--colors-border-border-primary, #D0D5DD) var(--tw-gradient-via-position), var(--tw-gradient-to);
|
|
1682
2106
|
}
|
|
2107
|
+
.via-indigo-500 {
|
|
2108
|
+
--tw-gradient-to: rgb(99 102 241 / 0) var(--tw-gradient-to-position);
|
|
2109
|
+
--tw-gradient-stops: var(--tw-gradient-from), #6366f1 var(--tw-gradient-via-position), var(--tw-gradient-to);
|
|
2110
|
+
}
|
|
2111
|
+
.to-black\/20 {
|
|
2112
|
+
--tw-gradient-to: rgb(0 0 0 / 0.2) var(--tw-gradient-to-position);
|
|
2113
|
+
}
|
|
2114
|
+
.to-black\/\[0\.02\] {
|
|
2115
|
+
--tw-gradient-to: rgb(0 0 0 / 0.02) var(--tw-gradient-to-position);
|
|
2116
|
+
}
|
|
2117
|
+
.to-blue-500 {
|
|
2118
|
+
--tw-gradient-to: #2970FF var(--tw-gradient-to-position);
|
|
2119
|
+
}
|
|
2120
|
+
.to-blue-600 {
|
|
2121
|
+
--tw-gradient-to: #155EEF var(--tw-gradient-to-position);
|
|
2122
|
+
}
|
|
2123
|
+
.to-gray-200 {
|
|
2124
|
+
--tw-gradient-to: var(--colors-background-bg-quaternary, #EAECF0) var(--tw-gradient-to-position);
|
|
2125
|
+
}
|
|
2126
|
+
.to-gray-600 {
|
|
2127
|
+
--tw-gradient-to: var(--component-colors-utility-gray-utility-gray-600, #475467) var(--tw-gradient-to-position);
|
|
2128
|
+
}
|
|
2129
|
+
.to-gray-800 {
|
|
2130
|
+
--tw-gradient-to: var(--component-colors-utility-gray-utility-gray-800, #182230) var(--tw-gradient-to-position);
|
|
2131
|
+
}
|
|
2132
|
+
.to-indigo-500 {
|
|
2133
|
+
--tw-gradient-to: #6366f1 var(--tw-gradient-to-position);
|
|
2134
|
+
}
|
|
1683
2135
|
.to-transparent {
|
|
1684
2136
|
--tw-gradient-to: transparent var(--tw-gradient-to-position);
|
|
1685
2137
|
}
|
|
2138
|
+
.to-white {
|
|
2139
|
+
--tw-gradient-to: #FFFFFF var(--tw-gradient-to-position);
|
|
2140
|
+
}
|
|
2141
|
+
.bg-\[length\:200\%_100\%\] {
|
|
2142
|
+
background-size: 200% 100%;
|
|
2143
|
+
}
|
|
1686
2144
|
.object-cover {
|
|
1687
2145
|
-o-object-fit: cover;
|
|
1688
2146
|
object-fit: cover;
|
|
1689
2147
|
}
|
|
2148
|
+
.p-0 {
|
|
2149
|
+
padding: 0px;
|
|
2150
|
+
}
|
|
1690
2151
|
.p-1 {
|
|
1691
2152
|
padding: 0.25rem;
|
|
1692
2153
|
}
|
|
@@ -1696,6 +2157,9 @@ video {
|
|
|
1696
2157
|
.p-2 {
|
|
1697
2158
|
padding: 0.5rem;
|
|
1698
2159
|
}
|
|
2160
|
+
.p-2\.5 {
|
|
2161
|
+
padding: 0.625rem;
|
|
2162
|
+
}
|
|
1699
2163
|
.p-3 {
|
|
1700
2164
|
padding: 0.75rem;
|
|
1701
2165
|
}
|
|
@@ -1730,10 +2194,22 @@ video {
|
|
|
1730
2194
|
padding-left: 0px;
|
|
1731
2195
|
padding-right: 0px;
|
|
1732
2196
|
}
|
|
2197
|
+
.px-1 {
|
|
2198
|
+
padding-left: 0.25rem;
|
|
2199
|
+
padding-right: 0.25rem;
|
|
2200
|
+
}
|
|
2201
|
+
.px-1\.5 {
|
|
2202
|
+
padding-left: 0.375rem;
|
|
2203
|
+
padding-right: 0.375rem;
|
|
2204
|
+
}
|
|
1733
2205
|
.px-2 {
|
|
1734
2206
|
padding-left: 0.5rem;
|
|
1735
2207
|
padding-right: 0.5rem;
|
|
1736
2208
|
}
|
|
2209
|
+
.px-2\.5 {
|
|
2210
|
+
padding-left: 0.625rem;
|
|
2211
|
+
padding-right: 0.625rem;
|
|
2212
|
+
}
|
|
1737
2213
|
.px-3 {
|
|
1738
2214
|
padding-left: 0.75rem;
|
|
1739
2215
|
padding-right: 0.75rem;
|
|
@@ -1790,6 +2266,10 @@ video {
|
|
|
1790
2266
|
padding-top: 0.25rem;
|
|
1791
2267
|
padding-bottom: 0.25rem;
|
|
1792
2268
|
}
|
|
2269
|
+
.py-1\.5 {
|
|
2270
|
+
padding-top: 0.375rem;
|
|
2271
|
+
padding-bottom: 0.375rem;
|
|
2272
|
+
}
|
|
1793
2273
|
.py-2 {
|
|
1794
2274
|
padding-top: 0.5rem;
|
|
1795
2275
|
padding-bottom: 0.5rem;
|
|
@@ -1802,6 +2282,14 @@ video {
|
|
|
1802
2282
|
padding-top: 0.75rem;
|
|
1803
2283
|
padding-bottom: 0.75rem;
|
|
1804
2284
|
}
|
|
2285
|
+
.py-4 {
|
|
2286
|
+
padding-top: 1rem;
|
|
2287
|
+
padding-bottom: 1rem;
|
|
2288
|
+
}
|
|
2289
|
+
.py-6 {
|
|
2290
|
+
padding-top: 1.5rem;
|
|
2291
|
+
padding-bottom: 1.5rem;
|
|
2292
|
+
}
|
|
1805
2293
|
.py-8 {
|
|
1806
2294
|
padding-top: 2rem;
|
|
1807
2295
|
padding-bottom: 2rem;
|
|
@@ -1846,9 +2334,22 @@ video {
|
|
|
1846
2334
|
padding-top: 8px;
|
|
1847
2335
|
padding-bottom: 8px;
|
|
1848
2336
|
}
|
|
2337
|
+
.py-px {
|
|
2338
|
+
padding-top: 1px;
|
|
2339
|
+
padding-bottom: 1px;
|
|
2340
|
+
}
|
|
2341
|
+
.pb-1 {
|
|
2342
|
+
padding-bottom: 0.25rem;
|
|
2343
|
+
}
|
|
1849
2344
|
.pb-2 {
|
|
1850
2345
|
padding-bottom: 0.5rem;
|
|
1851
2346
|
}
|
|
2347
|
+
.pb-2\.5 {
|
|
2348
|
+
padding-bottom: 0.625rem;
|
|
2349
|
+
}
|
|
2350
|
+
.pb-4 {
|
|
2351
|
+
padding-bottom: 1rem;
|
|
2352
|
+
}
|
|
1852
2353
|
.pb-\[12px\] {
|
|
1853
2354
|
padding-bottom: 12px;
|
|
1854
2355
|
}
|
|
@@ -1858,6 +2359,9 @@ video {
|
|
|
1858
2359
|
.pb-\[8px\] {
|
|
1859
2360
|
padding-bottom: 8px;
|
|
1860
2361
|
}
|
|
2362
|
+
.pl-1 {
|
|
2363
|
+
padding-left: 0.25rem;
|
|
2364
|
+
}
|
|
1861
2365
|
.pl-4 {
|
|
1862
2366
|
padding-left: 1rem;
|
|
1863
2367
|
}
|
|
@@ -1876,6 +2380,9 @@ video {
|
|
|
1876
2380
|
.pl-\[8px\] {
|
|
1877
2381
|
padding-left: 8px;
|
|
1878
2382
|
}
|
|
2383
|
+
.pr-12 {
|
|
2384
|
+
padding-right: 3rem;
|
|
2385
|
+
}
|
|
1879
2386
|
.pr-3 {
|
|
1880
2387
|
padding-right: 0.75rem;
|
|
1881
2388
|
}
|
|
@@ -1888,6 +2395,18 @@ video {
|
|
|
1888
2395
|
.pt-0 {
|
|
1889
2396
|
padding-top: 0px;
|
|
1890
2397
|
}
|
|
2398
|
+
.pt-0\.5 {
|
|
2399
|
+
padding-top: 0.125rem;
|
|
2400
|
+
}
|
|
2401
|
+
.pt-1 {
|
|
2402
|
+
padding-top: 0.25rem;
|
|
2403
|
+
}
|
|
2404
|
+
.pt-2 {
|
|
2405
|
+
padding-top: 0.5rem;
|
|
2406
|
+
}
|
|
2407
|
+
.pt-2\.5 {
|
|
2408
|
+
padding-top: 0.625rem;
|
|
2409
|
+
}
|
|
1891
2410
|
.pt-\[8px\] {
|
|
1892
2411
|
padding-top: 8px;
|
|
1893
2412
|
}
|
|
@@ -1903,6 +2422,9 @@ video {
|
|
|
1903
2422
|
.text-end {
|
|
1904
2423
|
text-align: end;
|
|
1905
2424
|
}
|
|
2425
|
+
.align-middle {
|
|
2426
|
+
vertical-align: middle;
|
|
2427
|
+
}
|
|
1906
2428
|
.font-mono {
|
|
1907
2429
|
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
1908
2430
|
}
|
|
@@ -1913,6 +2435,9 @@ video {
|
|
|
1913
2435
|
.text-\[10px\] {
|
|
1914
2436
|
font-size: 10px;
|
|
1915
2437
|
}
|
|
2438
|
+
.text-\[11px\] {
|
|
2439
|
+
font-size: 11px;
|
|
2440
|
+
}
|
|
1916
2441
|
.text-\[12px\] {
|
|
1917
2442
|
font-size: 12px;
|
|
1918
2443
|
}
|
|
@@ -1922,12 +2447,18 @@ video {
|
|
|
1922
2447
|
.text-\[14px\] {
|
|
1923
2448
|
font-size: 14px;
|
|
1924
2449
|
}
|
|
2450
|
+
.text-\[15px\] {
|
|
2451
|
+
font-size: 15px;
|
|
2452
|
+
}
|
|
1925
2453
|
.text-\[16px\] {
|
|
1926
2454
|
font-size: 16px;
|
|
1927
2455
|
}
|
|
1928
2456
|
.text-\[18px\] {
|
|
1929
2457
|
font-size: 18px;
|
|
1930
2458
|
}
|
|
2459
|
+
.text-\[9px\] {
|
|
2460
|
+
font-size: 9px;
|
|
2461
|
+
}
|
|
1931
2462
|
.text-base {
|
|
1932
2463
|
font-size: 1rem;
|
|
1933
2464
|
line-height: 1.5rem;
|
|
@@ -1940,6 +2471,10 @@ video {
|
|
|
1940
2471
|
font-size: 0.875rem;
|
|
1941
2472
|
line-height: 1.25rem;
|
|
1942
2473
|
}
|
|
2474
|
+
.text-xl {
|
|
2475
|
+
font-size: 1.25rem;
|
|
2476
|
+
line-height: 1.75rem;
|
|
2477
|
+
}
|
|
1943
2478
|
.text-xs {
|
|
1944
2479
|
font-size: 0.75rem;
|
|
1945
2480
|
line-height: 1rem;
|
|
@@ -1992,9 +2527,18 @@ video {
|
|
|
1992
2527
|
.leading-none {
|
|
1993
2528
|
line-height: 1;
|
|
1994
2529
|
}
|
|
2530
|
+
.leading-relaxed {
|
|
2531
|
+
line-height: 1.625;
|
|
2532
|
+
}
|
|
2533
|
+
.leading-snug {
|
|
2534
|
+
line-height: 1.375;
|
|
2535
|
+
}
|
|
1995
2536
|
.tracking-tight {
|
|
1996
2537
|
letter-spacing: -0.025em;
|
|
1997
2538
|
}
|
|
2539
|
+
.tracking-wide {
|
|
2540
|
+
letter-spacing: 0.025em;
|
|
2541
|
+
}
|
|
1998
2542
|
.tracking-wider {
|
|
1999
2543
|
letter-spacing: 0.05em;
|
|
2000
2544
|
}
|
|
@@ -2026,6 +2570,14 @@ video {
|
|
|
2026
2570
|
--tw-text-opacity: 1;
|
|
2027
2571
|
color: rgb(152 162 179 / var(--tw-text-opacity, 1));
|
|
2028
2572
|
}
|
|
2573
|
+
.text-amber-400 {
|
|
2574
|
+
--tw-text-opacity: 1;
|
|
2575
|
+
color: rgb(251 191 36 / var(--tw-text-opacity, 1));
|
|
2576
|
+
}
|
|
2577
|
+
.text-amber-600 {
|
|
2578
|
+
--tw-text-opacity: 1;
|
|
2579
|
+
color: rgb(217 119 6 / var(--tw-text-opacity, 1));
|
|
2580
|
+
}
|
|
2029
2581
|
.text-blue-400 {
|
|
2030
2582
|
--tw-text-opacity: 1;
|
|
2031
2583
|
color: rgb(82 139 255 / var(--tw-text-opacity, 1));
|
|
@@ -2056,6 +2608,9 @@ video {
|
|
|
2056
2608
|
.text-gray-100 {
|
|
2057
2609
|
color: var(--colors-background-bg-tertiary, #F2F4F7);
|
|
2058
2610
|
}
|
|
2611
|
+
.text-gray-200 {
|
|
2612
|
+
color: var(--colors-background-bg-quaternary, #EAECF0);
|
|
2613
|
+
}
|
|
2059
2614
|
.text-gray-300 {
|
|
2060
2615
|
color: var(--colors-border-border-primary, #D0D5DD);
|
|
2061
2616
|
}
|
|
@@ -2127,6 +2682,10 @@ video {
|
|
|
2127
2682
|
--tw-text-opacity: 1;
|
|
2128
2683
|
color: rgb(107 33 168 / var(--tw-text-opacity, 1));
|
|
2129
2684
|
}
|
|
2685
|
+
.text-red-200 {
|
|
2686
|
+
--tw-text-opacity: 1;
|
|
2687
|
+
color: rgb(254 202 202 / var(--tw-text-opacity, 1));
|
|
2688
|
+
}
|
|
2130
2689
|
.text-red-500 {
|
|
2131
2690
|
--tw-text-opacity: 1;
|
|
2132
2691
|
color: rgb(239 68 68 / var(--tw-text-opacity, 1));
|
|
@@ -2139,10 +2698,29 @@ video {
|
|
|
2139
2698
|
--tw-text-opacity: 1;
|
|
2140
2699
|
color: rgb(185 28 28 / var(--tw-text-opacity, 1));
|
|
2141
2700
|
}
|
|
2701
|
+
.text-violet-300 {
|
|
2702
|
+
--tw-text-opacity: 1;
|
|
2703
|
+
color: rgb(196 181 253 / var(--tw-text-opacity, 1));
|
|
2704
|
+
}
|
|
2705
|
+
.text-violet-400 {
|
|
2706
|
+
--tw-text-opacity: 1;
|
|
2707
|
+
color: rgb(167 139 250 / var(--tw-text-opacity, 1));
|
|
2708
|
+
}
|
|
2709
|
+
.text-violet-600 {
|
|
2710
|
+
--tw-text-opacity: 1;
|
|
2711
|
+
color: rgb(124 58 237 / var(--tw-text-opacity, 1));
|
|
2712
|
+
}
|
|
2713
|
+
.text-violet-700 {
|
|
2714
|
+
--tw-text-opacity: 1;
|
|
2715
|
+
color: rgb(109 40 217 / var(--tw-text-opacity, 1));
|
|
2716
|
+
}
|
|
2142
2717
|
.text-white {
|
|
2143
2718
|
--tw-text-opacity: 1;
|
|
2144
2719
|
color: rgb(255 255 255 / var(--tw-text-opacity, 1));
|
|
2145
2720
|
}
|
|
2721
|
+
.text-white\/90 {
|
|
2722
|
+
color: rgb(255 255 255 / 0.9);
|
|
2723
|
+
}
|
|
2146
2724
|
.text-yellow-600 {
|
|
2147
2725
|
--tw-text-opacity: 1;
|
|
2148
2726
|
color: rgb(202 138 4 / var(--tw-text-opacity, 1));
|
|
@@ -2165,6 +2743,32 @@ video {
|
|
|
2165
2743
|
.opacity-60 {
|
|
2166
2744
|
opacity: 0.6;
|
|
2167
2745
|
}
|
|
2746
|
+
.opacity-70 {
|
|
2747
|
+
opacity: 0.7;
|
|
2748
|
+
}
|
|
2749
|
+
.opacity-80 {
|
|
2750
|
+
opacity: 0.8;
|
|
2751
|
+
}
|
|
2752
|
+
.shadow-\[-4px_0_32px_rgba\(0\2c 0\2c 0\2c 0\.12\)\] {
|
|
2753
|
+
--tw-shadow: -4px 0 32px rgba(0,0,0,0.12);
|
|
2754
|
+
--tw-shadow-colored: -4px 0 32px var(--tw-shadow-color);
|
|
2755
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
2756
|
+
}
|
|
2757
|
+
.shadow-\[-4px_0_32px_rgba\(0\2c 0\2c 0\2c 0\.4\)\] {
|
|
2758
|
+
--tw-shadow: -4px 0 32px rgba(0,0,0,0.4);
|
|
2759
|
+
--tw-shadow-colored: -4px 0 32px var(--tw-shadow-color);
|
|
2760
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
2761
|
+
}
|
|
2762
|
+
.shadow-\[0_-10px_40px_rgba\(0\2c 0\2c 0\2c 0\.2\)\] {
|
|
2763
|
+
--tw-shadow: 0 -10px 40px rgba(0,0,0,0.2);
|
|
2764
|
+
--tw-shadow-colored: 0 -10px 40px var(--tw-shadow-color);
|
|
2765
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
2766
|
+
}
|
|
2767
|
+
.shadow-\[0_24px_48px_rgba\(0\2c 0\2c 0\2c 0\.2\)\] {
|
|
2768
|
+
--tw-shadow: 0 24px 48px rgba(0,0,0,0.2);
|
|
2769
|
+
--tw-shadow-colored: 0 24px 48px var(--tw-shadow-color);
|
|
2770
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
2771
|
+
}
|
|
2168
2772
|
.shadow-\[0px_1px_2px_0px_rgba\(16\2c 24\2c 40\2c 0\.04\)\] {
|
|
2169
2773
|
--tw-shadow: 0px 1px 2px 0px rgba(16,24,40,0.04);
|
|
2170
2774
|
--tw-shadow-colored: 0px 1px 2px 0px var(--tw-shadow-color);
|
|
@@ -2215,6 +2819,10 @@ video {
|
|
|
2215
2819
|
--tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
|
|
2216
2820
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
2217
2821
|
}
|
|
2822
|
+
.shadow-violet-500\/30 {
|
|
2823
|
+
--tw-shadow-color: rgb(139 92 246 / 0.3);
|
|
2824
|
+
--tw-shadow: var(--tw-shadow-colored);
|
|
2825
|
+
}
|
|
2218
2826
|
.outline-none {
|
|
2219
2827
|
outline: 2px solid transparent;
|
|
2220
2828
|
outline-offset: 2px;
|
|
@@ -2222,6 +2830,15 @@ video {
|
|
|
2222
2830
|
.outline {
|
|
2223
2831
|
outline-style: solid;
|
|
2224
2832
|
}
|
|
2833
|
+
.ring-2 {
|
|
2834
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
2835
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
2836
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
2837
|
+
}
|
|
2838
|
+
.ring-blue-500 {
|
|
2839
|
+
--tw-ring-opacity: 1;
|
|
2840
|
+
--tw-ring-color: rgb(41 112 255 / var(--tw-ring-opacity, 1));
|
|
2841
|
+
}
|
|
2225
2842
|
.blur {
|
|
2226
2843
|
--tw-blur: blur(8px);
|
|
2227
2844
|
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 +2846,16 @@ video {
|
|
|
2229
2846
|
.filter {
|
|
2230
2847
|
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
2848
|
}
|
|
2849
|
+
.backdrop-blur-sm {
|
|
2850
|
+
--tw-backdrop-blur: blur(4px);
|
|
2851
|
+
-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);
|
|
2852
|
+
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
|
+
}
|
|
2854
|
+
.transition-\[flex\] {
|
|
2855
|
+
transition-property: flex;
|
|
2856
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2857
|
+
transition-duration: 150ms;
|
|
2858
|
+
}
|
|
2232
2859
|
.transition-all {
|
|
2233
2860
|
transition-property: all;
|
|
2234
2861
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
@@ -2244,11 +2871,19 @@ video {
|
|
|
2244
2871
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2245
2872
|
transition-duration: 150ms;
|
|
2246
2873
|
}
|
|
2874
|
+
.transition-shadow {
|
|
2875
|
+
transition-property: box-shadow;
|
|
2876
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2877
|
+
transition-duration: 150ms;
|
|
2878
|
+
}
|
|
2247
2879
|
.transition-transform {
|
|
2248
2880
|
transition-property: transform;
|
|
2249
2881
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2250
2882
|
transition-duration: 150ms;
|
|
2251
2883
|
}
|
|
2884
|
+
.duration-100 {
|
|
2885
|
+
transition-duration: 100ms;
|
|
2886
|
+
}
|
|
2252
2887
|
.duration-150 {
|
|
2253
2888
|
transition-duration: 150ms;
|
|
2254
2889
|
}
|
|
@@ -2258,6 +2893,12 @@ video {
|
|
|
2258
2893
|
.duration-300 {
|
|
2259
2894
|
transition-duration: 300ms;
|
|
2260
2895
|
}
|
|
2896
|
+
.duration-\[250ms\] {
|
|
2897
|
+
transition-duration: 250ms;
|
|
2898
|
+
}
|
|
2899
|
+
.ease-\[cubic-bezier\(0\.4\2c 0\2c 0\.2\2c 1\)\] {
|
|
2900
|
+
transition-timing-function: cubic-bezier(0.4,0,0.2,1);
|
|
2901
|
+
}
|
|
2261
2902
|
.ease-in-out {
|
|
2262
2903
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2263
2904
|
}
|
|
@@ -2334,6 +2975,22 @@ video {
|
|
|
2334
2975
|
color: rgb(152 162 179 / var(--tw-text-opacity, 1));
|
|
2335
2976
|
}
|
|
2336
2977
|
|
|
2978
|
+
.placeholder\:text-gray-400::-moz-placeholder {
|
|
2979
|
+
color: var(--colors-foreground-fg-disabled, #98A2B3);
|
|
2980
|
+
}
|
|
2981
|
+
|
|
2982
|
+
.placeholder\:text-gray-400::placeholder {
|
|
2983
|
+
color: var(--colors-foreground-fg-disabled, #98A2B3);
|
|
2984
|
+
}
|
|
2985
|
+
|
|
2986
|
+
.placeholder\:text-gray-500::-moz-placeholder {
|
|
2987
|
+
color: var(--colors-foreground-fg-quarterary-500, #667085);
|
|
2988
|
+
}
|
|
2989
|
+
|
|
2990
|
+
.placeholder\:text-gray-500::placeholder {
|
|
2991
|
+
color: var(--colors-foreground-fg-quarterary-500, #667085);
|
|
2992
|
+
}
|
|
2993
|
+
|
|
2337
2994
|
.empty\:before\:text-gray-400:empty::before {
|
|
2338
2995
|
content: var(--tw-content);
|
|
2339
2996
|
color: var(--colors-foreground-fg-disabled, #98A2B3);
|
|
@@ -2344,6 +3001,29 @@ video {
|
|
|
2344
3001
|
content: var(--tw-content);
|
|
2345
3002
|
}
|
|
2346
3003
|
|
|
3004
|
+
.focus-within\:border-violet-500:focus-within {
|
|
3005
|
+
--tw-border-opacity: 1;
|
|
3006
|
+
border-color: rgb(139 92 246 / var(--tw-border-opacity, 1));
|
|
3007
|
+
}
|
|
3008
|
+
|
|
3009
|
+
.focus-within\:shadow-\[0_0_0_4px_rgba\(139\2c 92\2c 246\2c 0\.1\)\]:focus-within {
|
|
3010
|
+
--tw-shadow: 0 0 0 4px rgba(139,92,246,0.1);
|
|
3011
|
+
--tw-shadow-colored: 0 0 0 4px var(--tw-shadow-color);
|
|
3012
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
3013
|
+
}
|
|
3014
|
+
|
|
3015
|
+
.focus-within\:shadow-\[0_0_0_4px_rgba\(139\2c 92\2c 246\2c 0\.2\)\]:focus-within {
|
|
3016
|
+
--tw-shadow: 0 0 0 4px rgba(139,92,246,0.2);
|
|
3017
|
+
--tw-shadow-colored: 0 0 0 4px var(--tw-shadow-color);
|
|
3018
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
3019
|
+
}
|
|
3020
|
+
|
|
3021
|
+
.hover\:scale-105:hover {
|
|
3022
|
+
--tw-scale-x: 1.05;
|
|
3023
|
+
--tw-scale-y: 1.05;
|
|
3024
|
+
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));
|
|
3025
|
+
}
|
|
3026
|
+
|
|
2347
3027
|
.hover\:\!border-blue-600:hover {
|
|
2348
3028
|
--tw-border-opacity: 1 !important;
|
|
2349
3029
|
border-color: rgb(21 94 239 / var(--tw-border-opacity, 1)) !important;
|
|
@@ -2354,11 +3034,35 @@ video {
|
|
|
2354
3034
|
border-color: rgb(217 45 32 / var(--tw-border-opacity, 1));
|
|
2355
3035
|
}
|
|
2356
3036
|
|
|
3037
|
+
.hover\:border-gray-300:hover {
|
|
3038
|
+
border-color: var(--colors-border-border-primary, #D0D5DD);
|
|
3039
|
+
}
|
|
3040
|
+
|
|
2357
3041
|
.hover\:bg-\[\#f9fafb\]:hover {
|
|
2358
3042
|
--tw-bg-opacity: 1;
|
|
2359
3043
|
background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
|
|
2360
3044
|
}
|
|
2361
3045
|
|
|
3046
|
+
.hover\:bg-black\/10:hover {
|
|
3047
|
+
background-color: rgb(0 0 0 / 0.1);
|
|
3048
|
+
}
|
|
3049
|
+
|
|
3050
|
+
.hover\:bg-black\/5:hover {
|
|
3051
|
+
background-color: rgb(0 0 0 / 0.05);
|
|
3052
|
+
}
|
|
3053
|
+
|
|
3054
|
+
.hover\:bg-black\/\[0\.02\]:hover {
|
|
3055
|
+
background-color: rgb(0 0 0 / 0.02);
|
|
3056
|
+
}
|
|
3057
|
+
|
|
3058
|
+
.hover\:bg-black\/\[0\.03\]:hover {
|
|
3059
|
+
background-color: rgb(0 0 0 / 0.03);
|
|
3060
|
+
}
|
|
3061
|
+
|
|
3062
|
+
.hover\:bg-black\/\[0\.08\]:hover {
|
|
3063
|
+
background-color: rgb(0 0 0 / 0.08);
|
|
3064
|
+
}
|
|
3065
|
+
|
|
2362
3066
|
.hover\:bg-blue-100:hover {
|
|
2363
3067
|
--tw-bg-opacity: 1;
|
|
2364
3068
|
background-color: rgb(209 224 255 / var(--tw-bg-opacity, 1));
|
|
@@ -2374,6 +3078,11 @@ video {
|
|
|
2374
3078
|
background-color: rgb(0 78 235 / var(--tw-bg-opacity, 1));
|
|
2375
3079
|
}
|
|
2376
3080
|
|
|
3081
|
+
.hover\:bg-emerald-600:hover {
|
|
3082
|
+
--tw-bg-opacity: 1;
|
|
3083
|
+
background-color: rgb(5 150 105 / var(--tw-bg-opacity, 1));
|
|
3084
|
+
}
|
|
3085
|
+
|
|
2377
3086
|
.hover\:bg-error-600:hover {
|
|
2378
3087
|
--tw-bg-opacity: 1;
|
|
2379
3088
|
background-color: rgb(217 45 32 / var(--tw-bg-opacity, 1));
|
|
@@ -2409,16 +3118,59 @@ video {
|
|
|
2409
3118
|
background-color: rgb(147 51 234 / var(--tw-bg-opacity, 1));
|
|
2410
3119
|
}
|
|
2411
3120
|
|
|
3121
|
+
.hover\:bg-red-50:hover {
|
|
3122
|
+
--tw-bg-opacity: 1;
|
|
3123
|
+
background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1));
|
|
3124
|
+
}
|
|
3125
|
+
|
|
3126
|
+
.hover\:bg-red-500\/20:hover {
|
|
3127
|
+
background-color: rgb(239 68 68 / 0.2);
|
|
3128
|
+
}
|
|
3129
|
+
|
|
3130
|
+
.hover\:bg-red-500\/80:hover {
|
|
3131
|
+
background-color: rgb(239 68 68 / 0.8);
|
|
3132
|
+
}
|
|
3133
|
+
|
|
2412
3134
|
.hover\:bg-red-600:hover {
|
|
2413
3135
|
--tw-bg-opacity: 1;
|
|
2414
3136
|
background-color: rgb(220 38 38 / var(--tw-bg-opacity, 1));
|
|
2415
3137
|
}
|
|
2416
3138
|
|
|
3139
|
+
.hover\:bg-violet-500:hover {
|
|
3140
|
+
--tw-bg-opacity: 1;
|
|
3141
|
+
background-color: rgb(139 92 246 / var(--tw-bg-opacity, 1));
|
|
3142
|
+
}
|
|
3143
|
+
|
|
3144
|
+
.hover\:bg-violet-500\/20:hover {
|
|
3145
|
+
background-color: rgb(139 92 246 / 0.2);
|
|
3146
|
+
}
|
|
3147
|
+
|
|
3148
|
+
.hover\:bg-violet-900:hover {
|
|
3149
|
+
--tw-bg-opacity: 1;
|
|
3150
|
+
background-color: rgb(76 29 149 / var(--tw-bg-opacity, 1));
|
|
3151
|
+
}
|
|
3152
|
+
|
|
2417
3153
|
.hover\:bg-white:hover {
|
|
2418
3154
|
--tw-bg-opacity: 1;
|
|
2419
3155
|
background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
|
|
2420
3156
|
}
|
|
2421
3157
|
|
|
3158
|
+
.hover\:bg-white\/10:hover {
|
|
3159
|
+
background-color: rgb(255 255 255 / 0.1);
|
|
3160
|
+
}
|
|
3161
|
+
|
|
3162
|
+
.hover\:bg-white\/15:hover {
|
|
3163
|
+
background-color: rgb(255 255 255 / 0.15);
|
|
3164
|
+
}
|
|
3165
|
+
|
|
3166
|
+
.hover\:bg-white\/25:hover {
|
|
3167
|
+
background-color: rgb(255 255 255 / 0.25);
|
|
3168
|
+
}
|
|
3169
|
+
|
|
3170
|
+
.hover\:bg-white\/5:hover {
|
|
3171
|
+
background-color: rgb(255 255 255 / 0.05);
|
|
3172
|
+
}
|
|
3173
|
+
|
|
2422
3174
|
.hover\:font-medium:hover {
|
|
2423
3175
|
font-weight: 500;
|
|
2424
3176
|
}
|
|
@@ -2428,6 +3180,11 @@ video {
|
|
|
2428
3180
|
color: rgb(132 173 255 / var(--tw-text-opacity, 1));
|
|
2429
3181
|
}
|
|
2430
3182
|
|
|
3183
|
+
.hover\:text-blue-400:hover {
|
|
3184
|
+
--tw-text-opacity: 1;
|
|
3185
|
+
color: rgb(82 139 255 / var(--tw-text-opacity, 1));
|
|
3186
|
+
}
|
|
3187
|
+
|
|
2431
3188
|
.hover\:text-blue-700:hover {
|
|
2432
3189
|
--tw-text-opacity: 1;
|
|
2433
3190
|
color: rgb(0 78 235 / var(--tw-text-opacity, 1));
|
|
@@ -2443,6 +3200,18 @@ video {
|
|
|
2443
3200
|
color: rgb(0 53 158 / var(--tw-text-opacity, 1));
|
|
2444
3201
|
}
|
|
2445
3202
|
|
|
3203
|
+
.hover\:text-gray-200:hover {
|
|
3204
|
+
color: var(--colors-background-bg-quaternary, #EAECF0);
|
|
3205
|
+
}
|
|
3206
|
+
|
|
3207
|
+
.hover\:text-gray-300:hover {
|
|
3208
|
+
color: var(--colors-border-border-primary, #D0D5DD);
|
|
3209
|
+
}
|
|
3210
|
+
|
|
3211
|
+
.hover\:text-gray-600:hover {
|
|
3212
|
+
color: var(--component-colors-utility-gray-utility-gray-600, #475467);
|
|
3213
|
+
}
|
|
3214
|
+
|
|
2446
3215
|
.hover\:text-gray-700:hover {
|
|
2447
3216
|
color: var(--colors-foreground-fg-secondary-700, #344054);
|
|
2448
3217
|
}
|
|
@@ -2455,6 +3224,30 @@ video {
|
|
|
2455
3224
|
color: var(--colors-text-text-primary-900, #101828);
|
|
2456
3225
|
}
|
|
2457
3226
|
|
|
3227
|
+
.hover\:text-red-400:hover {
|
|
3228
|
+
--tw-text-opacity: 1;
|
|
3229
|
+
color: rgb(248 113 113 / var(--tw-text-opacity, 1));
|
|
3230
|
+
}
|
|
3231
|
+
|
|
3232
|
+
.hover\:text-red-500:hover {
|
|
3233
|
+
--tw-text-opacity: 1;
|
|
3234
|
+
color: rgb(239 68 68 / var(--tw-text-opacity, 1));
|
|
3235
|
+
}
|
|
3236
|
+
|
|
3237
|
+
.hover\:text-red-600:hover {
|
|
3238
|
+
--tw-text-opacity: 1;
|
|
3239
|
+
color: rgb(220 38 38 / var(--tw-text-opacity, 1));
|
|
3240
|
+
}
|
|
3241
|
+
|
|
3242
|
+
.hover\:text-white:hover {
|
|
3243
|
+
--tw-text-opacity: 1;
|
|
3244
|
+
color: rgb(255 255 255 / var(--tw-text-opacity, 1));
|
|
3245
|
+
}
|
|
3246
|
+
|
|
3247
|
+
.hover\:opacity-100:hover {
|
|
3248
|
+
opacity: 1;
|
|
3249
|
+
}
|
|
3250
|
+
|
|
2458
3251
|
.hover\:opacity-70:hover {
|
|
2459
3252
|
opacity: 0.7;
|
|
2460
3253
|
}
|
|
@@ -2465,12 +3258,29 @@ video {
|
|
|
2465
3258
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
|
|
2466
3259
|
}
|
|
2467
3260
|
|
|
3261
|
+
.hover\:shadow:hover {
|
|
3262
|
+
--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
|
|
3263
|
+
--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
|
|
3264
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
3265
|
+
}
|
|
3266
|
+
|
|
3267
|
+
.hover\:shadow-lg:hover {
|
|
3268
|
+
--tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
|
|
3269
|
+
--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
|
|
3270
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
3271
|
+
}
|
|
3272
|
+
|
|
2468
3273
|
.hover\:shadow-tab:hover {
|
|
2469
3274
|
--tw-shadow: 0 1px 3px 0 rgba(16, 24, 40, 0.08), 0 1px 2px 0 rgba(16, 24, 40, 0.08);
|
|
2470
3275
|
--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px 0 var(--tw-shadow-color);
|
|
2471
3276
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
2472
3277
|
}
|
|
2473
3278
|
|
|
3279
|
+
.hover\:shadow-violet-500\/40:hover {
|
|
3280
|
+
--tw-shadow-color: rgb(139 92 246 / 0.4);
|
|
3281
|
+
--tw-shadow: var(--tw-shadow-colored);
|
|
3282
|
+
}
|
|
3283
|
+
|
|
2474
3284
|
.focus\:border-blue-500:focus {
|
|
2475
3285
|
--tw-border-opacity: 1;
|
|
2476
3286
|
border-color: rgb(41 112 255 / var(--tw-border-opacity, 1));
|
|
@@ -2504,6 +3314,12 @@ video {
|
|
|
2504
3314
|
outline-offset: 2px;
|
|
2505
3315
|
}
|
|
2506
3316
|
|
|
3317
|
+
.focus\:ring-0:focus {
|
|
3318
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
3319
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
3320
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
3321
|
+
}
|
|
3322
|
+
|
|
2507
3323
|
.focus\:ring-1:focus {
|
|
2508
3324
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
2509
3325
|
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
@@ -2544,6 +3360,16 @@ video {
|
|
|
2544
3360
|
--tw-ring-color: var(--colors-border-border-brand, #84ADFF);
|
|
2545
3361
|
}
|
|
2546
3362
|
|
|
3363
|
+
.active\:scale-95:active {
|
|
3364
|
+
--tw-scale-x: .95;
|
|
3365
|
+
--tw-scale-y: .95;
|
|
3366
|
+
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));
|
|
3367
|
+
}
|
|
3368
|
+
|
|
3369
|
+
.active\:cursor-grabbing:active {
|
|
3370
|
+
cursor: grabbing;
|
|
3371
|
+
}
|
|
3372
|
+
|
|
2547
3373
|
.disabled\:pointer-events-none:disabled {
|
|
2548
3374
|
pointer-events: none;
|
|
2549
3375
|
}
|
|
@@ -2577,6 +3403,11 @@ video {
|
|
|
2577
3403
|
.sm\:flex-row {
|
|
2578
3404
|
flex-direction: row;
|
|
2579
3405
|
}
|
|
3406
|
+
|
|
3407
|
+
.sm\:px-6 {
|
|
3408
|
+
padding-left: 1.5rem;
|
|
3409
|
+
padding-right: 1.5rem;
|
|
3410
|
+
}
|
|
2580
3411
|
}
|
|
2581
3412
|
|
|
2582
3413
|
@media (min-width: 1024px) {
|
|
@@ -2600,4 +3431,728 @@ video {
|
|
|
2600
3431
|
.lg\:grid-cols-12 {
|
|
2601
3432
|
grid-template-columns: repeat(12, minmax(0, 1fr));
|
|
2602
3433
|
}
|
|
2603
|
-
|
|
3434
|
+
|
|
3435
|
+
.lg\:px-8 {
|
|
3436
|
+
padding-left: 2rem;
|
|
3437
|
+
padding-right: 2rem;
|
|
3438
|
+
}
|
|
3439
|
+
}
|
|
3440
|
+
|
|
3441
|
+
@media (prefers-color-scheme: dark) {
|
|
3442
|
+
|
|
3443
|
+
.dark\:border-gray-700 {
|
|
3444
|
+
border-color: var(--colors-foreground-fg-secondary-700, #344054);
|
|
3445
|
+
}
|
|
3446
|
+
|
|
3447
|
+
.dark\:bg-gray-900 {
|
|
3448
|
+
background-color: var(--colors-text-text-primary-900, #101828);
|
|
3449
|
+
}
|
|
3450
|
+
|
|
3451
|
+
.dark\:from-gray-700 {
|
|
3452
|
+
--tw-gradient-from: var(--colors-foreground-fg-secondary-700, #344054) var(--tw-gradient-from-position);
|
|
3453
|
+
--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);
|
|
3454
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
|
3455
|
+
}
|
|
3456
|
+
|
|
3457
|
+
.dark\:via-gray-600 {
|
|
3458
|
+
--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);
|
|
3459
|
+
--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);
|
|
3460
|
+
}
|
|
3461
|
+
|
|
3462
|
+
.dark\:to-gray-700 {
|
|
3463
|
+
--tw-gradient-to: var(--colors-foreground-fg-secondary-700, #344054) var(--tw-gradient-to-position);
|
|
3464
|
+
}
|
|
3465
|
+
|
|
3466
|
+
.dark\:text-gray-100 {
|
|
3467
|
+
color: var(--colors-background-bg-tertiary, #F2F4F7);
|
|
3468
|
+
}
|
|
3469
|
+
|
|
3470
|
+
.dark\:text-gray-400 {
|
|
3471
|
+
color: var(--colors-foreground-fg-disabled, #98A2B3);
|
|
3472
|
+
}
|
|
3473
|
+
|
|
3474
|
+
.dark\:placeholder\:text-gray-600::-moz-placeholder {
|
|
3475
|
+
color: var(--component-colors-utility-gray-utility-gray-600, #475467);
|
|
3476
|
+
}
|
|
3477
|
+
|
|
3478
|
+
.dark\:placeholder\:text-gray-600::placeholder {
|
|
3479
|
+
color: var(--component-colors-utility-gray-utility-gray-600, #475467);
|
|
3480
|
+
}
|
|
3481
|
+
|
|
3482
|
+
.dark\:hover\:border-gray-600:hover {
|
|
3483
|
+
border-color: var(--component-colors-utility-gray-utility-gray-600, #475467);
|
|
3484
|
+
}
|
|
3485
|
+
|
|
3486
|
+
.dark\:hover\:bg-gray-700:hover {
|
|
3487
|
+
background-color: var(--colors-foreground-fg-secondary-700, #344054);
|
|
3488
|
+
}
|
|
3489
|
+
|
|
3490
|
+
.dark\:hover\:text-gray-100:hover {
|
|
3491
|
+
color: var(--colors-background-bg-tertiary, #F2F4F7);
|
|
3492
|
+
}
|
|
3493
|
+
} /* K-MD-Editor Styles - Minimal CSS (Tailwind handles most styling) */
|
|
3494
|
+
|
|
3495
|
+
/* ============================================================================
|
|
3496
|
+
Tippy.js / BubbleMenu Overrides (Required for popup positioning)
|
|
3497
|
+
============================================================================ */
|
|
3498
|
+
|
|
3499
|
+
[data-tippy-root] {
|
|
3500
|
+
z-index: 99999 !important;
|
|
3501
|
+
}
|
|
3502
|
+
|
|
3503
|
+
.tippy-box {
|
|
3504
|
+
pointer-events: auto !important;
|
|
3505
|
+
z-index: 99999 !important;
|
|
3506
|
+
}
|
|
3507
|
+
|
|
3508
|
+
.tippy-content {
|
|
3509
|
+
pointer-events: auto !important;
|
|
3510
|
+
}
|
|
3511
|
+
|
|
3512
|
+
/* ============================================================================
|
|
3513
|
+
Theme Variables - Runtime theming support
|
|
3514
|
+
============================================================================ */
|
|
3515
|
+
|
|
3516
|
+
.k-md-editor {
|
|
3517
|
+
--k-md-editor-bg: #ffffff;
|
|
3518
|
+
--k-md-editor-text: #1f2937;
|
|
3519
|
+
--k-md-editor-text-muted: #6b7280;
|
|
3520
|
+
--k-md-editor-border: #e5e7eb;
|
|
3521
|
+
--k-md-editor-border-focus: #3b82f6;
|
|
3522
|
+
--k-md-editor-selection: #dbeafe;
|
|
3523
|
+
--k-md-editor-code-bg: #f3f4f6;
|
|
3524
|
+
--k-md-editor-link: #2563eb;
|
|
3525
|
+
--k-md-editor-placeholder: #9ca3af;
|
|
3526
|
+
|
|
3527
|
+
position: relative;
|
|
3528
|
+
width: 100%;
|
|
3529
|
+
height: 100%;
|
|
3530
|
+
background-color: var(--k-md-editor-bg);
|
|
3531
|
+
color: var(--k-md-editor-text);
|
|
3532
|
+
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
|
3533
|
+
font-size: 15px;
|
|
3534
|
+
line-height: 1.6;
|
|
3535
|
+
display: flex;
|
|
3536
|
+
flex-direction: row;
|
|
3537
|
+
}
|
|
3538
|
+
|
|
3539
|
+
/* Dark Theme */
|
|
3540
|
+
.k-md-editor--dark {
|
|
3541
|
+
--k-md-editor-bg: #111827;
|
|
3542
|
+
--k-md-editor-text: #f3f4f6;
|
|
3543
|
+
--k-md-editor-text-muted: #9ca3af;
|
|
3544
|
+
--k-md-editor-border: #374151;
|
|
3545
|
+
--k-md-editor-border-focus: #60a5fa;
|
|
3546
|
+
--k-md-editor-selection: #1e3a5f;
|
|
3547
|
+
--k-md-editor-code-bg: #1f2937;
|
|
3548
|
+
--k-md-editor-link: #60a5fa;
|
|
3549
|
+
--k-md-editor-placeholder: #6b7280;
|
|
3550
|
+
}
|
|
3551
|
+
|
|
3552
|
+
/* Ocean Light */
|
|
3553
|
+
.k-md-editor--ocean-light {
|
|
3554
|
+
--k-md-editor-bg: #f0f7ff;
|
|
3555
|
+
--k-md-editor-text: #0c4a6e;
|
|
3556
|
+
--k-md-editor-text-muted: #0369a1;
|
|
3557
|
+
--k-md-editor-border: #bae6fd;
|
|
3558
|
+
--k-md-editor-border-focus: #0284c7;
|
|
3559
|
+
--k-md-editor-selection: #e0f2fe;
|
|
3560
|
+
--k-md-editor-code-bg: #e0f2fe;
|
|
3561
|
+
--k-md-editor-link: #0284c7;
|
|
3562
|
+
--k-md-editor-placeholder: #7dd3fc;
|
|
3563
|
+
}
|
|
3564
|
+
|
|
3565
|
+
/* Ocean Dark */
|
|
3566
|
+
.k-md-editor--ocean-dark {
|
|
3567
|
+
--k-md-editor-bg: #0c1929;
|
|
3568
|
+
--k-md-editor-text: #e0f2fe;
|
|
3569
|
+
--k-md-editor-text-muted: #7dd3fc;
|
|
3570
|
+
--k-md-editor-border: #164e63;
|
|
3571
|
+
--k-md-editor-border-focus: #22d3ee;
|
|
3572
|
+
--k-md-editor-selection: #164e63;
|
|
3573
|
+
--k-md-editor-code-bg: #0e2a3d;
|
|
3574
|
+
--k-md-editor-link: #22d3ee;
|
|
3575
|
+
--k-md-editor-placeholder: #0e7490;
|
|
3576
|
+
}
|
|
3577
|
+
|
|
3578
|
+
/* Forest Light */
|
|
3579
|
+
.k-md-editor--forest-light {
|
|
3580
|
+
--k-md-editor-bg: #f0fdf4;
|
|
3581
|
+
--k-md-editor-text: #14532d;
|
|
3582
|
+
--k-md-editor-text-muted: #166534;
|
|
3583
|
+
--k-md-editor-border: #bbf7d0;
|
|
3584
|
+
--k-md-editor-border-focus: #16a34a;
|
|
3585
|
+
--k-md-editor-selection: #dcfce7;
|
|
3586
|
+
--k-md-editor-code-bg: #dcfce7;
|
|
3587
|
+
--k-md-editor-link: #16a34a;
|
|
3588
|
+
--k-md-editor-placeholder: #86efac;
|
|
3589
|
+
}
|
|
3590
|
+
|
|
3591
|
+
/* Forest Dark */
|
|
3592
|
+
.k-md-editor--forest-dark {
|
|
3593
|
+
--k-md-editor-bg: #052e16;
|
|
3594
|
+
--k-md-editor-text: #dcfce7;
|
|
3595
|
+
--k-md-editor-text-muted: #86efac;
|
|
3596
|
+
--k-md-editor-border: #166534;
|
|
3597
|
+
--k-md-editor-border-focus: #4ade80;
|
|
3598
|
+
--k-md-editor-selection: #14532d;
|
|
3599
|
+
--k-md-editor-code-bg: #0a3d1f;
|
|
3600
|
+
--k-md-editor-link: #4ade80;
|
|
3601
|
+
--k-md-editor-placeholder: #166534;
|
|
3602
|
+
}
|
|
3603
|
+
|
|
3604
|
+
/* Sunset Light */
|
|
3605
|
+
.k-md-editor--sunset-light {
|
|
3606
|
+
--k-md-editor-bg: #fffbeb;
|
|
3607
|
+
--k-md-editor-text: #78350f;
|
|
3608
|
+
--k-md-editor-text-muted: #92400e;
|
|
3609
|
+
--k-md-editor-border: #fde68a;
|
|
3610
|
+
--k-md-editor-border-focus: #f59e0b;
|
|
3611
|
+
--k-md-editor-selection: #fef3c7;
|
|
3612
|
+
--k-md-editor-code-bg: #fef3c7;
|
|
3613
|
+
--k-md-editor-link: #d97706;
|
|
3614
|
+
--k-md-editor-placeholder: #fbbf24;
|
|
3615
|
+
}
|
|
3616
|
+
|
|
3617
|
+
/* Sunset Dark */
|
|
3618
|
+
.k-md-editor--sunset-dark {
|
|
3619
|
+
--k-md-editor-bg: #1c1208;
|
|
3620
|
+
--k-md-editor-text: #fef3c7;
|
|
3621
|
+
--k-md-editor-text-muted: #fcd34d;
|
|
3622
|
+
--k-md-editor-border: #78350f;
|
|
3623
|
+
--k-md-editor-border-focus: #fbbf24;
|
|
3624
|
+
--k-md-editor-selection: #451a03;
|
|
3625
|
+
--k-md-editor-code-bg: #292011;
|
|
3626
|
+
--k-md-editor-link: #fbbf24;
|
|
3627
|
+
--k-md-editor-placeholder: #92400e;
|
|
3628
|
+
}
|
|
3629
|
+
|
|
3630
|
+
/* ============================================================================
|
|
3631
|
+
Editor States
|
|
3632
|
+
============================================================================ */
|
|
3633
|
+
|
|
3634
|
+
/* Readonly and loading states now use Tailwind utilities in component */
|
|
3635
|
+
|
|
3636
|
+
/* ============================================================================
|
|
3637
|
+
Editor Layout
|
|
3638
|
+
============================================================================ */
|
|
3639
|
+
|
|
3640
|
+
/* Layout classes now use Tailwind utilities in component */
|
|
3641
|
+
/* k-md-editor__content class kept for ProseMirror and scrollbar styling selectors */
|
|
3642
|
+
|
|
3643
|
+
.k-md-editor--drag-enabled .k-md-editor__content .ProseMirror {
|
|
3644
|
+
padding-left: 52px;
|
|
3645
|
+
}
|
|
3646
|
+
|
|
3647
|
+
/* ============================================================================
|
|
3648
|
+
ProseMirror Content Styling (Required - can't be Tailwind)
|
|
3649
|
+
============================================================================ */
|
|
3650
|
+
|
|
3651
|
+
.k-md-editor__content .ProseMirror {
|
|
3652
|
+
outline: none;
|
|
3653
|
+
padding: 16px 20px;
|
|
3654
|
+
min-height: 100%;
|
|
3655
|
+
}
|
|
3656
|
+
|
|
3657
|
+
.k-md-editor__content .ProseMirror:focus {
|
|
3658
|
+
outline: none;
|
|
3659
|
+
}
|
|
3660
|
+
|
|
3661
|
+
/* Placeholder */
|
|
3662
|
+
.k-md-editor__content .ProseMirror > p.is-empty::before,
|
|
3663
|
+
.k-md-editor__content .ProseMirror li > p.is-empty::before,
|
|
3664
|
+
.k-md-editor__content .ProseMirror blockquote > p.is-empty::before {
|
|
3665
|
+
content: attr(data-placeholder);
|
|
3666
|
+
color: var(--k-md-editor-placeholder);
|
|
3667
|
+
float: left;
|
|
3668
|
+
height: 0;
|
|
3669
|
+
pointer-events: none;
|
|
3670
|
+
}
|
|
3671
|
+
|
|
3672
|
+
.k-md-editor__content .ProseMirror .tableWrapper.is-empty::before,
|
|
3673
|
+
.k-md-editor__content .ProseMirror table .is-empty::before,
|
|
3674
|
+
.k-md-editor__content .ProseMirror td.is-empty::before,
|
|
3675
|
+
.k-md-editor__content .ProseMirror th.is-empty::before {
|
|
3676
|
+
content: none !important;
|
|
3677
|
+
display: none !important;
|
|
3678
|
+
}
|
|
3679
|
+
|
|
3680
|
+
/* Selection */
|
|
3681
|
+
.k-md-editor__content .ProseMirror ::-moz-selection {
|
|
3682
|
+
background-color: var(--k-md-editor-selection);
|
|
3683
|
+
}
|
|
3684
|
+
.k-md-editor__content .ProseMirror ::selection {
|
|
3685
|
+
background-color: var(--k-md-editor-selection);
|
|
3686
|
+
}
|
|
3687
|
+
|
|
3688
|
+
/* Typography */
|
|
3689
|
+
.k-md-editor__content .ProseMirror h1,
|
|
3690
|
+
.k-md-editor__content .ProseMirror h2,
|
|
3691
|
+
.k-md-editor__content .ProseMirror h3 {
|
|
3692
|
+
font-weight: 600;
|
|
3693
|
+
line-height: 1.3;
|
|
3694
|
+
margin: 1.5em 0 0.5em;
|
|
3695
|
+
}
|
|
3696
|
+
|
|
3697
|
+
.k-md-editor__content .ProseMirror h1:first-child,
|
|
3698
|
+
.k-md-editor__content .ProseMirror h2:first-child,
|
|
3699
|
+
.k-md-editor__content .ProseMirror h3:first-child {
|
|
3700
|
+
margin-top: 0;
|
|
3701
|
+
}
|
|
3702
|
+
|
|
3703
|
+
.k-md-editor__content .ProseMirror h1 { font-size: 1.875rem; }
|
|
3704
|
+
.k-md-editor__content .ProseMirror h2 { font-size: 1.5rem; }
|
|
3705
|
+
.k-md-editor__content .ProseMirror h3 { font-size: 1.25rem; }
|
|
3706
|
+
|
|
3707
|
+
.k-md-editor__content .ProseMirror p {
|
|
3708
|
+
margin: 0 0 0.75em;
|
|
3709
|
+
}
|
|
3710
|
+
|
|
3711
|
+
.k-md-editor__content .ProseMirror p:last-child {
|
|
3712
|
+
margin-bottom: 0;
|
|
3713
|
+
}
|
|
3714
|
+
|
|
3715
|
+
/* Lists */
|
|
3716
|
+
.k-md-editor__content .ProseMirror ul,
|
|
3717
|
+
.k-md-editor__content .ProseMirror ol {
|
|
3718
|
+
margin: 0.75em 0;
|
|
3719
|
+
padding-left: 1.5em;
|
|
3720
|
+
}
|
|
3721
|
+
|
|
3722
|
+
.k-md-editor__content .ProseMirror ul { list-style-type: disc; }
|
|
3723
|
+
.k-md-editor__content .ProseMirror ol { list-style-type: decimal; }
|
|
3724
|
+
.k-md-editor__content .ProseMirror ul ul { list-style-type: circle; }
|
|
3725
|
+
.k-md-editor__content .ProseMirror ul ul ul { list-style-type: square; }
|
|
3726
|
+
|
|
3727
|
+
.k-md-editor__content .ProseMirror li {
|
|
3728
|
+
margin: 0.25em 0;
|
|
3729
|
+
display: list-item;
|
|
3730
|
+
}
|
|
3731
|
+
|
|
3732
|
+
.k-md-editor__content .ProseMirror li > p {
|
|
3733
|
+
margin: 0;
|
|
3734
|
+
}
|
|
3735
|
+
|
|
3736
|
+
/* Code */
|
|
3737
|
+
.k-md-editor__content .ProseMirror code {
|
|
3738
|
+
font-family: 'SF Mono', 'Fira Code', monospace;
|
|
3739
|
+
font-size: 0.9em;
|
|
3740
|
+
background-color: var(--k-md-editor-code-bg);
|
|
3741
|
+
padding: 0.2em 0.4em;
|
|
3742
|
+
border-radius: 4px;
|
|
3743
|
+
}
|
|
3744
|
+
|
|
3745
|
+
.k-md-editor__content .ProseMirror pre {
|
|
3746
|
+
background-color: var(--k-md-editor-code-bg);
|
|
3747
|
+
padding: 12px 16px;
|
|
3748
|
+
border-radius: 8px;
|
|
3749
|
+
overflow-x: auto;
|
|
3750
|
+
margin: 0.75em 0;
|
|
3751
|
+
}
|
|
3752
|
+
|
|
3753
|
+
.k-md-editor__content .ProseMirror pre code {
|
|
3754
|
+
background: none;
|
|
3755
|
+
padding: 0;
|
|
3756
|
+
font-size: 0.875rem;
|
|
3757
|
+
}
|
|
3758
|
+
|
|
3759
|
+
/* Blockquote */
|
|
3760
|
+
.k-md-editor__content .ProseMirror blockquote {
|
|
3761
|
+
border-left: 3px solid var(--k-md-editor-border);
|
|
3762
|
+
margin: 0.75em 0;
|
|
3763
|
+
padding-left: 1em;
|
|
3764
|
+
color: var(--k-md-editor-text-muted);
|
|
3765
|
+
}
|
|
3766
|
+
|
|
3767
|
+
.k-md-editor__content .ProseMirror blockquote p {
|
|
3768
|
+
margin: 0;
|
|
3769
|
+
}
|
|
3770
|
+
|
|
3771
|
+
/* Links */
|
|
3772
|
+
.k-md-editor__content .ProseMirror a {
|
|
3773
|
+
color: var(--k-md-editor-link);
|
|
3774
|
+
text-decoration: none;
|
|
3775
|
+
cursor: pointer;
|
|
3776
|
+
}
|
|
3777
|
+
|
|
3778
|
+
.k-md-editor__content .ProseMirror a:hover {
|
|
3779
|
+
text-decoration: underline;
|
|
3780
|
+
}
|
|
3781
|
+
|
|
3782
|
+
/* Horizontal Rule */
|
|
3783
|
+
.k-md-editor__content .ProseMirror hr {
|
|
3784
|
+
border: none;
|
|
3785
|
+
border-top: 1px solid var(--k-md-editor-border);
|
|
3786
|
+
margin: 1.5em 0;
|
|
3787
|
+
}
|
|
3788
|
+
|
|
3789
|
+
/* Table */
|
|
3790
|
+
.k-md-editor__content .ProseMirror table {
|
|
3791
|
+
border-collapse: collapse;
|
|
3792
|
+
width: 100%;
|
|
3793
|
+
margin: 1em 0;
|
|
3794
|
+
table-layout: fixed;
|
|
3795
|
+
}
|
|
3796
|
+
|
|
3797
|
+
.k-md-editor__content .ProseMirror table td,
|
|
3798
|
+
.k-md-editor__content .ProseMirror table th {
|
|
3799
|
+
border: 1px solid var(--k-md-editor-border);
|
|
3800
|
+
padding: 10px 12px;
|
|
3801
|
+
position: relative;
|
|
3802
|
+
text-align: left;
|
|
3803
|
+
vertical-align: top;
|
|
3804
|
+
min-width: 100px;
|
|
3805
|
+
}
|
|
3806
|
+
|
|
3807
|
+
.k-md-editor__content .ProseMirror table th {
|
|
3808
|
+
background-color: var(--k-md-editor-code-bg);
|
|
3809
|
+
font-weight: 600;
|
|
3810
|
+
}
|
|
3811
|
+
|
|
3812
|
+
.k-md-editor__content .ProseMirror table .selectedCell::after {
|
|
3813
|
+
content: '';
|
|
3814
|
+
position: absolute;
|
|
3815
|
+
inset: 0;
|
|
3816
|
+
background-color: var(--k-md-editor-selection);
|
|
3817
|
+
pointer-events: none;
|
|
3818
|
+
z-index: 1;
|
|
3819
|
+
}
|
|
3820
|
+
|
|
3821
|
+
.k-md-editor__content .ProseMirror .column-resize-handle {
|
|
3822
|
+
position: absolute;
|
|
3823
|
+
right: -2px;
|
|
3824
|
+
top: 0;
|
|
3825
|
+
bottom: 0;
|
|
3826
|
+
width: 4px;
|
|
3827
|
+
cursor: col-resize;
|
|
3828
|
+
background-color: var(--k-md-editor-border-focus);
|
|
3829
|
+
z-index: 10;
|
|
3830
|
+
}
|
|
3831
|
+
|
|
3832
|
+
.k-md-editor__content .ProseMirror .tableWrapper {
|
|
3833
|
+
overflow-x: auto;
|
|
3834
|
+
margin: 1em 0;
|
|
3835
|
+
}
|
|
3836
|
+
|
|
3837
|
+
/* ============================================================================
|
|
3838
|
+
Drag Handle - Only CSS needed for pseudo-elements and JS-added states
|
|
3839
|
+
============================================================================ */
|
|
3840
|
+
|
|
3841
|
+
/* Drop Indicator - needs CSS for ::before/::after pseudo-elements */
|
|
3842
|
+
.k-md-editor-drop-indicator {
|
|
3843
|
+
position: absolute;
|
|
3844
|
+
left: 52px;
|
|
3845
|
+
right: 16px;
|
|
3846
|
+
height: 3px;
|
|
3847
|
+
background: linear-gradient(90deg, #3b82f6, #60a5fa);
|
|
3848
|
+
border-radius: 2px;
|
|
3849
|
+
z-index: 20;
|
|
3850
|
+
pointer-events: none;
|
|
3851
|
+
box-shadow: 0 0 8px rgba(59, 130, 246, 0.4);
|
|
3852
|
+
}
|
|
3853
|
+
|
|
3854
|
+
.k-md-editor-drop-indicator::before,
|
|
3855
|
+
.k-md-editor-drop-indicator::after {
|
|
3856
|
+
content: '';
|
|
3857
|
+
position: absolute;
|
|
3858
|
+
top: -4px;
|
|
3859
|
+
width: 10px;
|
|
3860
|
+
height: 10px;
|
|
3861
|
+
background-color: #3b82f6;
|
|
3862
|
+
border-radius: 50%;
|
|
3863
|
+
border: 2px solid white;
|
|
3864
|
+
}
|
|
3865
|
+
|
|
3866
|
+
.k-md-editor-drop-indicator::before { left: -5px; }
|
|
3867
|
+
.k-md-editor-drop-indicator::after { right: -5px; }
|
|
3868
|
+
|
|
3869
|
+
/* Dragging States - added via JavaScript */
|
|
3870
|
+
.k-md-editor--dragging {
|
|
3871
|
+
cursor: grabbing !important;
|
|
3872
|
+
}
|
|
3873
|
+
|
|
3874
|
+
.k-md-editor--dragging * {
|
|
3875
|
+
cursor: grabbing !important;
|
|
3876
|
+
}
|
|
3877
|
+
|
|
3878
|
+
.k-md-editor--dragging .ProseMirror {
|
|
3879
|
+
-webkit-user-select: none;
|
|
3880
|
+
-moz-user-select: none;
|
|
3881
|
+
user-select: none;
|
|
3882
|
+
}
|
|
3883
|
+
|
|
3884
|
+
.k-md-editor-block--dragging {
|
|
3885
|
+
opacity: 0.4;
|
|
3886
|
+
background-color: rgba(59, 130, 246, 0.05);
|
|
3887
|
+
border-radius: 4px;
|
|
3888
|
+
}
|
|
3889
|
+
|
|
3890
|
+
/* ============================================================================
|
|
3891
|
+
Animations (Referenced by Tailwind arbitrary values)
|
|
3892
|
+
============================================================================ */
|
|
3893
|
+
|
|
3894
|
+
@keyframes ai-message-in {
|
|
3895
|
+
from { opacity: 0; transform: translateY(10px); }
|
|
3896
|
+
to { opacity: 1; transform: translateY(0); }
|
|
3897
|
+
}
|
|
3898
|
+
|
|
3899
|
+
@keyframes ai-new-selection-in {
|
|
3900
|
+
from { opacity: 0; transform: translateY(-8px) scale(0.98); }
|
|
3901
|
+
to { opacity: 1; transform: translateY(0) scale(1); }
|
|
3902
|
+
}
|
|
3903
|
+
|
|
3904
|
+
@keyframes ai-loading-slide {
|
|
3905
|
+
0% { transform: translateX(-100%); }
|
|
3906
|
+
100% { transform: translateX(350%); }
|
|
3907
|
+
}
|
|
3908
|
+
|
|
3909
|
+
@keyframes ai-panel-slide-in {
|
|
3910
|
+
from { width: 0; min-width: 0; opacity: 0; }
|
|
3911
|
+
to { width: 400px; min-width: 340px; opacity: 1; }
|
|
3912
|
+
}
|
|
3913
|
+
|
|
3914
|
+
@keyframes ai-backdrop-in {
|
|
3915
|
+
from { opacity: 0; }
|
|
3916
|
+
to { opacity: 1; }
|
|
3917
|
+
}
|
|
3918
|
+
|
|
3919
|
+
@keyframes ai-popup-scale-in {
|
|
3920
|
+
from { transform: scale(0.9) translateY(20px); opacity: 0; }
|
|
3921
|
+
to { transform: scale(1) translateY(0); opacity: 1; }
|
|
3922
|
+
}
|
|
3923
|
+
|
|
3924
|
+
@keyframes ai-drawer-slide-up {
|
|
3925
|
+
from { transform: translateY(100%); }
|
|
3926
|
+
to { transform: translateY(0); }
|
|
3927
|
+
}
|
|
3928
|
+
|
|
3929
|
+
/* ============================================================================
|
|
3930
|
+
Scrollbar Styles - Subtle, appears on hover
|
|
3931
|
+
============================================================================ */
|
|
3932
|
+
|
|
3933
|
+
/* Main editor scrollbar */
|
|
3934
|
+
.k-md-editor__content::-webkit-scrollbar {
|
|
3935
|
+
width: 6px;
|
|
3936
|
+
height: 6px;
|
|
3937
|
+
}
|
|
3938
|
+
|
|
3939
|
+
.k-md-editor__content::-webkit-scrollbar-track {
|
|
3940
|
+
background: transparent;
|
|
3941
|
+
}
|
|
3942
|
+
|
|
3943
|
+
.k-md-editor__content::-webkit-scrollbar-thumb {
|
|
3944
|
+
background-color: transparent;
|
|
3945
|
+
border-radius: 3px;
|
|
3946
|
+
-webkit-transition: background-color 0.2s;
|
|
3947
|
+
transition: background-color 0.2s;
|
|
3948
|
+
}
|
|
3949
|
+
|
|
3950
|
+
.k-md-editor__content:hover::-webkit-scrollbar-thumb {
|
|
3951
|
+
background-color: rgba(0, 0, 0, 0.15);
|
|
3952
|
+
}
|
|
3953
|
+
|
|
3954
|
+
.k-md-editor--dark .k-md-editor__content:hover::-webkit-scrollbar-thumb {
|
|
3955
|
+
background-color: rgba(255, 255, 255, 0.15);
|
|
3956
|
+
}
|
|
3957
|
+
|
|
3958
|
+
.k-md-editor__content::-webkit-scrollbar-thumb:hover {
|
|
3959
|
+
background-color: rgba(0, 0, 0, 0.25);
|
|
3960
|
+
}
|
|
3961
|
+
|
|
3962
|
+
.k-md-editor--dark .k-md-editor__content::-webkit-scrollbar-thumb:hover {
|
|
3963
|
+
background-color: rgba(255, 255, 255, 0.25);
|
|
3964
|
+
}
|
|
3965
|
+
|
|
3966
|
+
/* AI Panel scrollbar - extra subtle */
|
|
3967
|
+
.k-md-editor [class*="overflow-y-auto"]::-webkit-scrollbar {
|
|
3968
|
+
width: 4px;
|
|
3969
|
+
}
|
|
3970
|
+
|
|
3971
|
+
.k-md-editor [class*="overflow-y-auto"]::-webkit-scrollbar-track {
|
|
3972
|
+
background: transparent;
|
|
3973
|
+
}
|
|
3974
|
+
|
|
3975
|
+
.k-md-editor [class*="overflow-y-auto"]::-webkit-scrollbar-thumb {
|
|
3976
|
+
background-color: transparent;
|
|
3977
|
+
border-radius: 2px;
|
|
3978
|
+
}
|
|
3979
|
+
|
|
3980
|
+
.k-md-editor [class*="overflow-y-auto"]:hover::-webkit-scrollbar-thumb {
|
|
3981
|
+
background-color: rgba(0, 0, 0, 0.1);
|
|
3982
|
+
}
|
|
3983
|
+
|
|
3984
|
+
.k-md-editor--dark [class*="overflow-y-auto"]:hover::-webkit-scrollbar-thumb,
|
|
3985
|
+
.k-md-editor [class*="overflow-y-auto"][class*="from-gray-900"]:hover::-webkit-scrollbar-thumb {
|
|
3986
|
+
background-color: rgba(255, 255, 255, 0.1);
|
|
3987
|
+
}
|
|
3988
|
+
|
|
3989
|
+
/* ============================================================================
|
|
3990
|
+
AI Selection Box - Snake Border Animation
|
|
3991
|
+
============================================================================ */
|
|
3992
|
+
|
|
3993
|
+
.k-md-editor-snake-border {
|
|
3994
|
+
position: relative;
|
|
3995
|
+
border-color: transparent !important;
|
|
3996
|
+
background:
|
|
3997
|
+
linear-gradient(var(--snake-bg, #fafafa), var(--snake-bg, #fafafa)) padding-box,
|
|
3998
|
+
conic-gradient(
|
|
3999
|
+
from var(--snake-angle, 0deg),
|
|
4000
|
+
transparent 0deg,
|
|
4001
|
+
transparent 60deg,
|
|
4002
|
+
#8b5cf6 80deg,
|
|
4003
|
+
#c4b5fd 90deg,
|
|
4004
|
+
#8b5cf6 100deg,
|
|
4005
|
+
transparent 120deg,
|
|
4006
|
+
transparent 360deg
|
|
4007
|
+
) border-box;
|
|
4008
|
+
border: 2px solid transparent;
|
|
4009
|
+
animation: snake-spin 1.2s linear infinite;
|
|
4010
|
+
}
|
|
4011
|
+
|
|
4012
|
+
/* Light theme background */
|
|
4013
|
+
.k-md-editor-snake-border {
|
|
4014
|
+
--snake-bg: #f9fafb;
|
|
4015
|
+
}
|
|
4016
|
+
|
|
4017
|
+
/* Dark theme background */
|
|
4018
|
+
.k-md-editor--dark .k-md-editor-snake-border,
|
|
4019
|
+
[data-theme*="dark"] .k-md-editor-snake-border {
|
|
4020
|
+
--snake-bg: #1f2937;
|
|
4021
|
+
}
|
|
4022
|
+
|
|
4023
|
+
/* Use @property for smooth angle animation (Chrome/Edge) */
|
|
4024
|
+
@supports (background: conic-gradient(from 0deg, red, blue)) {
|
|
4025
|
+
@property --snake-angle {
|
|
4026
|
+
syntax: '<angle>';
|
|
4027
|
+
initial-value: 0deg;
|
|
4028
|
+
inherits: false;
|
|
4029
|
+
}
|
|
4030
|
+
|
|
4031
|
+
@keyframes snake-spin {
|
|
4032
|
+
to {
|
|
4033
|
+
--snake-angle: 360deg;
|
|
4034
|
+
}
|
|
4035
|
+
}
|
|
4036
|
+
}
|
|
4037
|
+
|
|
4038
|
+
/* Fallback for Firefox/Safari - use pseudo-element rotation */
|
|
4039
|
+
@supports not (background: paint(something)) {
|
|
4040
|
+
.k-md-editor-snake-border::before {
|
|
4041
|
+
content: '';
|
|
4042
|
+
position: absolute;
|
|
4043
|
+
inset: -2px;
|
|
4044
|
+
border-radius: inherit;
|
|
4045
|
+
background: conic-gradient(
|
|
4046
|
+
from 0deg,
|
|
4047
|
+
transparent 0deg,
|
|
4048
|
+
transparent 60deg,
|
|
4049
|
+
#8b5cf6 80deg,
|
|
4050
|
+
#c4b5fd 90deg,
|
|
4051
|
+
#8b5cf6 100deg,
|
|
4052
|
+
transparent 120deg,
|
|
4053
|
+
transparent 360deg
|
|
4054
|
+
);
|
|
4055
|
+
animation: snake-rotate 1.2s linear infinite;
|
|
4056
|
+
z-index: -1;
|
|
4057
|
+
}
|
|
4058
|
+
|
|
4059
|
+
.k-md-editor-snake-border::after {
|
|
4060
|
+
content: '';
|
|
4061
|
+
position: absolute;
|
|
4062
|
+
inset: 0;
|
|
4063
|
+
border-radius: calc(0.5rem - 2px);
|
|
4064
|
+
background: var(--snake-bg, #f9fafb);
|
|
4065
|
+
z-index: -1;
|
|
4066
|
+
}
|
|
4067
|
+
|
|
4068
|
+
@keyframes snake-rotate {
|
|
4069
|
+
from { transform: rotate(0deg); }
|
|
4070
|
+
to { transform: rotate(360deg); }
|
|
4071
|
+
}
|
|
4072
|
+
}
|
|
4073
|
+
|
|
4074
|
+
/* ============================================================================
|
|
4075
|
+
Raw Markdown Textarea
|
|
4076
|
+
============================================================================ */
|
|
4077
|
+
|
|
4078
|
+
.k-md-editor__raw-textarea {
|
|
4079
|
+
font-family: 'SF Mono', 'Fira Code', 'Monaco', 'Consolas', 'Liberation Mono', 'Courier New', monospace;
|
|
4080
|
+
font-size: 14px;
|
|
4081
|
+
line-height: 1.7;
|
|
4082
|
+
-moz-tab-size: 2;
|
|
4083
|
+
-o-tab-size: 2;
|
|
4084
|
+
tab-size: 2;
|
|
4085
|
+
white-space: pre-wrap;
|
|
4086
|
+
word-wrap: break-word;
|
|
4087
|
+
overflow-wrap: break-word;
|
|
4088
|
+
}
|
|
4089
|
+
|
|
4090
|
+
/* Light theme */
|
|
4091
|
+
.k-md-editor .k-md-editor__raw-textarea {
|
|
4092
|
+
background-color: #fafafa;
|
|
4093
|
+
color: #1f2937;
|
|
4094
|
+
}
|
|
4095
|
+
|
|
4096
|
+
.k-md-editor .k-md-editor__raw-textarea::-moz-placeholder {
|
|
4097
|
+
color: #9ca3af;
|
|
4098
|
+
}
|
|
4099
|
+
|
|
4100
|
+
.k-md-editor .k-md-editor__raw-textarea::placeholder {
|
|
4101
|
+
color: #9ca3af;
|
|
4102
|
+
}
|
|
4103
|
+
|
|
4104
|
+
/* Dark theme */
|
|
4105
|
+
.k-md-editor--dark .k-md-editor__raw-textarea {
|
|
4106
|
+
background-color: #111827;
|
|
4107
|
+
color: #f3f4f6;
|
|
4108
|
+
}
|
|
4109
|
+
|
|
4110
|
+
.k-md-editor--dark .k-md-editor__raw-textarea::-moz-placeholder {
|
|
4111
|
+
color: #6b7280;
|
|
4112
|
+
}
|
|
4113
|
+
|
|
4114
|
+
.k-md-editor--dark .k-md-editor__raw-textarea::placeholder {
|
|
4115
|
+
color: #6b7280;
|
|
4116
|
+
}
|
|
4117
|
+
|
|
4118
|
+
/* Scrollbar for raw textarea */
|
|
4119
|
+
.k-md-editor__raw-textarea::-webkit-scrollbar {
|
|
4120
|
+
width: 6px;
|
|
4121
|
+
height: 6px;
|
|
4122
|
+
}
|
|
4123
|
+
|
|
4124
|
+
.k-md-editor__raw-textarea::-webkit-scrollbar-track {
|
|
4125
|
+
background: transparent;
|
|
4126
|
+
}
|
|
4127
|
+
|
|
4128
|
+
.k-md-editor__raw-textarea::-webkit-scrollbar-thumb {
|
|
4129
|
+
background-color: rgba(0, 0, 0, 0.1);
|
|
4130
|
+
border-radius: 3px;
|
|
4131
|
+
}
|
|
4132
|
+
|
|
4133
|
+
.k-md-editor__raw-textarea::-webkit-scrollbar-thumb:hover {
|
|
4134
|
+
background-color: rgba(0, 0, 0, 0.2);
|
|
4135
|
+
}
|
|
4136
|
+
|
|
4137
|
+
.k-md-editor--dark .k-md-editor__raw-textarea::-webkit-scrollbar-thumb {
|
|
4138
|
+
background-color: rgba(255, 255, 255, 0.1);
|
|
4139
|
+
}
|
|
4140
|
+
|
|
4141
|
+
.k-md-editor--dark .k-md-editor__raw-textarea::-webkit-scrollbar-thumb:hover {
|
|
4142
|
+
background-color: rgba(255, 255, 255, 0.2);
|
|
4143
|
+
}
|
|
4144
|
+
|
|
4145
|
+
/* ============================================================================
|
|
4146
|
+
Print Styles
|
|
4147
|
+
============================================================================ */
|
|
4148
|
+
|
|
4149
|
+
@media print {
|
|
4150
|
+
.k-md-editor {
|
|
4151
|
+
background: white;
|
|
4152
|
+
color: black;
|
|
4153
|
+
}
|
|
4154
|
+
|
|
4155
|
+
.k-md-editor-drag-handle-container {
|
|
4156
|
+
display: none;
|
|
4157
|
+
}
|
|
4158
|
+
}
|