@kedataindo/docflow-element 0.0.2 → 0.0.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/LICENSE +44 -0
- package/dist/DocsEditorElement.d.ts +8 -1
- package/dist/DocsEditorElement.d.ts.map +1 -1
- package/dist/index.cjs +16 -1
- package/dist/index.css +929 -82
- package/dist/index.js +34 -22
- package/package.json +4 -3
package/dist/index.css
CHANGED
|
@@ -397,6 +397,17 @@ video {
|
|
|
397
397
|
0 2px 4px -2px rgb(0 0 0 / 0.3),
|
|
398
398
|
0 0 0 1px rgb(255 255 255 / 0.03);
|
|
399
399
|
}
|
|
400
|
+
.sr-only {
|
|
401
|
+
position: absolute;
|
|
402
|
+
width: 1px;
|
|
403
|
+
height: 1px;
|
|
404
|
+
padding: 0;
|
|
405
|
+
margin: -1px;
|
|
406
|
+
overflow: hidden;
|
|
407
|
+
clip: rect(0, 0, 0, 0);
|
|
408
|
+
white-space: nowrap;
|
|
409
|
+
border-width: 0;
|
|
410
|
+
}
|
|
400
411
|
.\!visible {
|
|
401
412
|
visibility: visible !important;
|
|
402
413
|
}
|
|
@@ -459,9 +470,15 @@ video {
|
|
|
459
470
|
.right-3 {
|
|
460
471
|
right: 0.75rem;
|
|
461
472
|
}
|
|
473
|
+
.right-4 {
|
|
474
|
+
right: 1rem;
|
|
475
|
+
}
|
|
462
476
|
.top-0 {
|
|
463
477
|
top: 0px;
|
|
464
478
|
}
|
|
479
|
+
.top-16 {
|
|
480
|
+
top: 4rem;
|
|
481
|
+
}
|
|
465
482
|
.top-2\.5 {
|
|
466
483
|
top: 0.625rem;
|
|
467
484
|
}
|
|
@@ -526,15 +543,24 @@ video {
|
|
|
526
543
|
.mb-6 {
|
|
527
544
|
margin-bottom: 1.5rem;
|
|
528
545
|
}
|
|
546
|
+
.mb-8 {
|
|
547
|
+
margin-bottom: 2rem;
|
|
548
|
+
}
|
|
529
549
|
.ml-1 {
|
|
530
550
|
margin-left: 0.25rem;
|
|
531
551
|
}
|
|
532
552
|
.ml-1\.5 {
|
|
533
553
|
margin-left: 0.375rem;
|
|
534
554
|
}
|
|
555
|
+
.ml-auto {
|
|
556
|
+
margin-left: auto;
|
|
557
|
+
}
|
|
535
558
|
.mr-1 {
|
|
536
559
|
margin-right: 0.25rem;
|
|
537
560
|
}
|
|
561
|
+
.mr-auto {
|
|
562
|
+
margin-right: auto;
|
|
563
|
+
}
|
|
538
564
|
.mt-0\.5 {
|
|
539
565
|
margin-top: 0.125rem;
|
|
540
566
|
}
|
|
@@ -544,6 +570,15 @@ video {
|
|
|
544
570
|
.mt-1\.5 {
|
|
545
571
|
margin-top: 0.375rem;
|
|
546
572
|
}
|
|
573
|
+
.mt-2 {
|
|
574
|
+
margin-top: 0.5rem;
|
|
575
|
+
}
|
|
576
|
+
.mt-2\.5 {
|
|
577
|
+
margin-top: 0.625rem;
|
|
578
|
+
}
|
|
579
|
+
.mt-3 {
|
|
580
|
+
margin-top: 0.75rem;
|
|
581
|
+
}
|
|
547
582
|
.mt-5 {
|
|
548
583
|
margin-top: 1.25rem;
|
|
549
584
|
}
|
|
@@ -559,6 +594,9 @@ video {
|
|
|
559
594
|
.block {
|
|
560
595
|
display: block;
|
|
561
596
|
}
|
|
597
|
+
.inline-block {
|
|
598
|
+
display: inline-block;
|
|
599
|
+
}
|
|
562
600
|
.inline {
|
|
563
601
|
display: inline;
|
|
564
602
|
}
|
|
@@ -637,15 +675,9 @@ video {
|
|
|
637
675
|
.max-h-64 {
|
|
638
676
|
max-height: 16rem;
|
|
639
677
|
}
|
|
640
|
-
.max-h-\[300px\] {
|
|
641
|
-
max-height: 300px;
|
|
642
|
-
}
|
|
643
678
|
.min-h-9 {
|
|
644
679
|
min-height: 2.25rem;
|
|
645
680
|
}
|
|
646
|
-
.min-h-\[220px\] {
|
|
647
|
-
min-height: 220px;
|
|
648
|
-
}
|
|
649
681
|
.min-h-\[55px\] {
|
|
650
682
|
min-height: 55px;
|
|
651
683
|
}
|
|
@@ -658,12 +690,18 @@ video {
|
|
|
658
690
|
.w-1\.5 {
|
|
659
691
|
width: 0.375rem;
|
|
660
692
|
}
|
|
693
|
+
.w-1\/2 {
|
|
694
|
+
width: 50%;
|
|
695
|
+
}
|
|
661
696
|
.w-11 {
|
|
662
697
|
width: 2.75rem;
|
|
663
698
|
}
|
|
664
699
|
.w-14 {
|
|
665
700
|
width: 3.5rem;
|
|
666
701
|
}
|
|
702
|
+
.w-16 {
|
|
703
|
+
width: 4rem;
|
|
704
|
+
}
|
|
667
705
|
.w-2 {
|
|
668
706
|
width: 0.5rem;
|
|
669
707
|
}
|
|
@@ -712,6 +750,12 @@ video {
|
|
|
712
750
|
.w-\[18px\] {
|
|
713
751
|
width: 18px;
|
|
714
752
|
}
|
|
753
|
+
.w-\[272px\] {
|
|
754
|
+
width: 272px;
|
|
755
|
+
}
|
|
756
|
+
.w-\[340px\] {
|
|
757
|
+
width: 340px;
|
|
758
|
+
}
|
|
715
759
|
.w-full {
|
|
716
760
|
width: 100%;
|
|
717
761
|
}
|
|
@@ -721,6 +765,9 @@ video {
|
|
|
721
765
|
.min-w-0 {
|
|
722
766
|
min-width: 0px;
|
|
723
767
|
}
|
|
768
|
+
.min-w-44 {
|
|
769
|
+
min-width: 11rem;
|
|
770
|
+
}
|
|
724
771
|
.min-w-\[150px\] {
|
|
725
772
|
min-width: 150px;
|
|
726
773
|
}
|
|
@@ -751,6 +798,9 @@ video {
|
|
|
751
798
|
.max-w-\[200px\] {
|
|
752
799
|
max-width: 200px;
|
|
753
800
|
}
|
|
801
|
+
.max-w-\[220px\] {
|
|
802
|
+
max-width: 220px;
|
|
803
|
+
}
|
|
754
804
|
.max-w-\[794px\] {
|
|
755
805
|
max-width: 794px;
|
|
756
806
|
}
|
|
@@ -763,6 +813,9 @@ video {
|
|
|
763
813
|
.max-w-md {
|
|
764
814
|
max-width: 28rem;
|
|
765
815
|
}
|
|
816
|
+
.max-w-sm {
|
|
817
|
+
max-width: 24rem;
|
|
818
|
+
}
|
|
766
819
|
.flex-1 {
|
|
767
820
|
flex: 1 1 0%;
|
|
768
821
|
}
|
|
@@ -792,6 +845,10 @@ video {
|
|
|
792
845
|
--tw-rotate: -90deg;
|
|
793
846
|
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));
|
|
794
847
|
}
|
|
848
|
+
.rotate-180 {
|
|
849
|
+
--tw-rotate: 180deg;
|
|
850
|
+
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));
|
|
851
|
+
}
|
|
795
852
|
.scale-100 {
|
|
796
853
|
--tw-scale-x: 1;
|
|
797
854
|
--tw-scale-y: 1;
|
|
@@ -838,6 +895,9 @@ video {
|
|
|
838
895
|
.cursor-help {
|
|
839
896
|
cursor: help;
|
|
840
897
|
}
|
|
898
|
+
.cursor-not-allowed {
|
|
899
|
+
cursor: not-allowed;
|
|
900
|
+
}
|
|
841
901
|
.cursor-pointer {
|
|
842
902
|
cursor: pointer;
|
|
843
903
|
}
|
|
@@ -860,9 +920,15 @@ video {
|
|
|
860
920
|
.resize {
|
|
861
921
|
resize: both;
|
|
862
922
|
}
|
|
923
|
+
.grid-cols-10 {
|
|
924
|
+
grid-template-columns: repeat(10, minmax(0, 1fr));
|
|
925
|
+
}
|
|
863
926
|
.grid-cols-2 {
|
|
864
927
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
865
928
|
}
|
|
929
|
+
.grid-cols-3 {
|
|
930
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
931
|
+
}
|
|
866
932
|
.flex-col {
|
|
867
933
|
flex-direction: column;
|
|
868
934
|
}
|
|
@@ -875,6 +941,9 @@ video {
|
|
|
875
941
|
.items-start {
|
|
876
942
|
align-items: flex-start;
|
|
877
943
|
}
|
|
944
|
+
.items-end {
|
|
945
|
+
align-items: flex-end;
|
|
946
|
+
}
|
|
878
947
|
.items-center {
|
|
879
948
|
align-items: center;
|
|
880
949
|
}
|
|
@@ -914,6 +983,9 @@ video {
|
|
|
914
983
|
.gap-4 {
|
|
915
984
|
gap: 1rem;
|
|
916
985
|
}
|
|
986
|
+
.gap-6 {
|
|
987
|
+
gap: 1.5rem;
|
|
988
|
+
}
|
|
917
989
|
.-space-x-1\.5 > :not([hidden]) ~ :not([hidden]) {
|
|
918
990
|
--tw-space-x-reverse: 0;
|
|
919
991
|
margin-right: calc(-0.375rem * var(--tw-space-x-reverse));
|
|
@@ -944,6 +1016,11 @@ video {
|
|
|
944
1016
|
margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
|
|
945
1017
|
margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
|
|
946
1018
|
}
|
|
1019
|
+
.space-y-3\.5 > :not([hidden]) ~ :not([hidden]) {
|
|
1020
|
+
--tw-space-y-reverse: 0;
|
|
1021
|
+
margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse)));
|
|
1022
|
+
margin-bottom: calc(0.875rem * var(--tw-space-y-reverse));
|
|
1023
|
+
}
|
|
947
1024
|
.space-y-4 > :not([hidden]) ~ :not([hidden]) {
|
|
948
1025
|
--tw-space-y-reverse: 0;
|
|
949
1026
|
margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
|
|
@@ -955,9 +1032,6 @@ video {
|
|
|
955
1032
|
.overflow-hidden {
|
|
956
1033
|
overflow: hidden;
|
|
957
1034
|
}
|
|
958
|
-
.overflow-x-auto {
|
|
959
|
-
overflow-x: auto;
|
|
960
|
-
}
|
|
961
1035
|
.overflow-y-auto {
|
|
962
1036
|
overflow-y: auto;
|
|
963
1037
|
}
|
|
@@ -978,6 +1052,9 @@ video {
|
|
|
978
1052
|
.rounded-2xl {
|
|
979
1053
|
border-radius: 1rem;
|
|
980
1054
|
}
|
|
1055
|
+
.rounded-3xl {
|
|
1056
|
+
border-radius: 1.5rem;
|
|
1057
|
+
}
|
|
981
1058
|
.rounded-full {
|
|
982
1059
|
border-radius: 9999px;
|
|
983
1060
|
}
|
|
@@ -1056,6 +1133,9 @@ video {
|
|
|
1056
1133
|
.border-cyan-500\/25 {
|
|
1057
1134
|
border-color: rgb(6 182 212 / 0.25);
|
|
1058
1135
|
}
|
|
1136
|
+
.border-cyan-500\/30 {
|
|
1137
|
+
border-color: rgb(6 182 212 / 0.3);
|
|
1138
|
+
}
|
|
1059
1139
|
.border-cyan-500\/40 {
|
|
1060
1140
|
border-color: rgb(6 182 212 / 0.4);
|
|
1061
1141
|
}
|
|
@@ -1116,6 +1196,9 @@ video {
|
|
|
1116
1196
|
.bg-amber-500\/10 {
|
|
1117
1197
|
background-color: rgb(245 158 11 / 0.1);
|
|
1118
1198
|
}
|
|
1199
|
+
.bg-black\/50 {
|
|
1200
|
+
background-color: rgb(0 0 0 / 0.5);
|
|
1201
|
+
}
|
|
1119
1202
|
.bg-blue-100 {
|
|
1120
1203
|
--tw-bg-opacity: 1;
|
|
1121
1204
|
background-color: rgb(219 234 254 / var(--tw-bg-opacity, 1));
|
|
@@ -1124,6 +1207,9 @@ video {
|
|
|
1124
1207
|
--tw-bg-opacity: 1;
|
|
1125
1208
|
background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1));
|
|
1126
1209
|
}
|
|
1210
|
+
.bg-blue-500\/10 {
|
|
1211
|
+
background-color: rgb(59 130 246 / 0.1);
|
|
1212
|
+
}
|
|
1127
1213
|
.bg-blue-600 {
|
|
1128
1214
|
--tw-bg-opacity: 1;
|
|
1129
1215
|
background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
|
|
@@ -1145,6 +1231,10 @@ video {
|
|
|
1145
1231
|
.bg-cyan-500\/5 {
|
|
1146
1232
|
background-color: rgb(6 182 212 / 0.05);
|
|
1147
1233
|
}
|
|
1234
|
+
.bg-cyan-600 {
|
|
1235
|
+
--tw-bg-opacity: 1;
|
|
1236
|
+
background-color: rgb(8 145 178 / var(--tw-bg-opacity, 1));
|
|
1237
|
+
}
|
|
1148
1238
|
.bg-emerald-400 {
|
|
1149
1239
|
--tw-bg-opacity: 1;
|
|
1150
1240
|
background-color: rgb(52 211 153 / var(--tw-bg-opacity, 1));
|
|
@@ -1153,6 +1243,9 @@ video {
|
|
|
1153
1243
|
--tw-bg-opacity: 1;
|
|
1154
1244
|
background-color: rgb(16 185 129 / var(--tw-bg-opacity, 1));
|
|
1155
1245
|
}
|
|
1246
|
+
.bg-emerald-500\/10 {
|
|
1247
|
+
background-color: rgb(16 185 129 / 0.1);
|
|
1248
|
+
}
|
|
1156
1249
|
.bg-emerald-600 {
|
|
1157
1250
|
--tw-bg-opacity: 1;
|
|
1158
1251
|
background-color: rgb(5 150 105 / var(--tw-bg-opacity, 1));
|
|
@@ -1160,6 +1253,13 @@ video {
|
|
|
1160
1253
|
.bg-green-50\/55 {
|
|
1161
1254
|
background-color: rgb(240 253 244 / 0.55);
|
|
1162
1255
|
}
|
|
1256
|
+
.bg-purple-500\/10 {
|
|
1257
|
+
background-color: rgb(168 85 247 / 0.1);
|
|
1258
|
+
}
|
|
1259
|
+
.bg-red-50 {
|
|
1260
|
+
--tw-bg-opacity: 1;
|
|
1261
|
+
background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1));
|
|
1262
|
+
}
|
|
1163
1263
|
.bg-slate-100 {
|
|
1164
1264
|
--tw-bg-opacity: 1;
|
|
1165
1265
|
background-color: rgb(241 245 249 / var(--tw-bg-opacity, 1));
|
|
@@ -1168,6 +1268,9 @@ video {
|
|
|
1168
1268
|
--tw-bg-opacity: 1;
|
|
1169
1269
|
background-color: rgb(226 232 240 / var(--tw-bg-opacity, 1));
|
|
1170
1270
|
}
|
|
1271
|
+
.bg-slate-200\/70 {
|
|
1272
|
+
background-color: rgb(226 232 240 / 0.7);
|
|
1273
|
+
}
|
|
1171
1274
|
.bg-slate-200\/80 {
|
|
1172
1275
|
background-color: rgb(226 232 240 / 0.8);
|
|
1173
1276
|
}
|
|
@@ -1181,6 +1284,9 @@ video {
|
|
|
1181
1284
|
.bg-slate-50\/60 {
|
|
1182
1285
|
background-color: rgb(248 250 252 / 0.6);
|
|
1183
1286
|
}
|
|
1287
|
+
.bg-slate-900\/40 {
|
|
1288
|
+
background-color: rgb(15 23 42 / 0.4);
|
|
1289
|
+
}
|
|
1184
1290
|
.bg-slate-900\/50 {
|
|
1185
1291
|
background-color: rgb(15 23 42 / 0.5);
|
|
1186
1292
|
}
|
|
@@ -1191,9 +1297,6 @@ video {
|
|
|
1191
1297
|
--tw-bg-opacity: 1;
|
|
1192
1298
|
background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
|
|
1193
1299
|
}
|
|
1194
|
-
.bg-white\/70 {
|
|
1195
|
-
background-color: rgb(255 255 255 / 0.7);
|
|
1196
|
-
}
|
|
1197
1300
|
.bg-white\/80 {
|
|
1198
1301
|
background-color: rgb(255 255 255 / 0.8);
|
|
1199
1302
|
}
|
|
@@ -1247,6 +1350,9 @@ video {
|
|
|
1247
1350
|
.p-6 {
|
|
1248
1351
|
padding: 1.5rem;
|
|
1249
1352
|
}
|
|
1353
|
+
.p-7 {
|
|
1354
|
+
padding: 1.75rem;
|
|
1355
|
+
}
|
|
1250
1356
|
.px-1 {
|
|
1251
1357
|
padding-left: 0.25rem;
|
|
1252
1358
|
padding-right: 0.25rem;
|
|
@@ -1275,6 +1381,14 @@ video {
|
|
|
1275
1381
|
padding-left: 1rem;
|
|
1276
1382
|
padding-right: 1rem;
|
|
1277
1383
|
}
|
|
1384
|
+
.px-5 {
|
|
1385
|
+
padding-left: 1.25rem;
|
|
1386
|
+
padding-right: 1.25rem;
|
|
1387
|
+
}
|
|
1388
|
+
.px-6 {
|
|
1389
|
+
padding-left: 1.5rem;
|
|
1390
|
+
padding-right: 1.5rem;
|
|
1391
|
+
}
|
|
1278
1392
|
.py-0 {
|
|
1279
1393
|
padding-top: 0px;
|
|
1280
1394
|
padding-bottom: 0px;
|
|
@@ -1307,17 +1421,23 @@ video {
|
|
|
1307
1421
|
padding-top: 0.75rem;
|
|
1308
1422
|
padding-bottom: 0.75rem;
|
|
1309
1423
|
}
|
|
1310
|
-
.py-4 {
|
|
1311
|
-
padding-top: 1rem;
|
|
1312
|
-
padding-bottom: 1rem;
|
|
1313
|
-
}
|
|
1314
1424
|
.py-6 {
|
|
1315
1425
|
padding-top: 1.5rem;
|
|
1316
1426
|
padding-bottom: 1.5rem;
|
|
1317
1427
|
}
|
|
1428
|
+
.py-8 {
|
|
1429
|
+
padding-top: 2rem;
|
|
1430
|
+
padding-bottom: 2rem;
|
|
1431
|
+
}
|
|
1318
1432
|
.pb-2 {
|
|
1319
1433
|
padding-bottom: 0.5rem;
|
|
1320
1434
|
}
|
|
1435
|
+
.pb-3 {
|
|
1436
|
+
padding-bottom: 0.75rem;
|
|
1437
|
+
}
|
|
1438
|
+
.pb-4 {
|
|
1439
|
+
padding-bottom: 1rem;
|
|
1440
|
+
}
|
|
1321
1441
|
.pl-0 {
|
|
1322
1442
|
padding-left: 0px;
|
|
1323
1443
|
}
|
|
@@ -1366,12 +1486,12 @@ video {
|
|
|
1366
1486
|
.pt-1 {
|
|
1367
1487
|
padding-top: 0.25rem;
|
|
1368
1488
|
}
|
|
1489
|
+
.pt-1\.5 {
|
|
1490
|
+
padding-top: 0.375rem;
|
|
1491
|
+
}
|
|
1369
1492
|
.pt-2 {
|
|
1370
1493
|
padding-top: 0.5rem;
|
|
1371
1494
|
}
|
|
1372
|
-
.pt-2\.5 {
|
|
1373
|
-
padding-top: 0.625rem;
|
|
1374
|
-
}
|
|
1375
1495
|
.pt-3 {
|
|
1376
1496
|
padding-top: 0.75rem;
|
|
1377
1497
|
}
|
|
@@ -1422,6 +1542,10 @@ video {
|
|
|
1422
1542
|
font-size: 0.875rem;
|
|
1423
1543
|
line-height: 1.25rem;
|
|
1424
1544
|
}
|
|
1545
|
+
.text-xl {
|
|
1546
|
+
font-size: 1.25rem;
|
|
1547
|
+
line-height: 1.75rem;
|
|
1548
|
+
}
|
|
1425
1549
|
.text-xs {
|
|
1426
1550
|
font-size: 0.75rem;
|
|
1427
1551
|
line-height: 1rem;
|
|
@@ -1522,6 +1646,10 @@ video {
|
|
|
1522
1646
|
--tw-text-opacity: 1;
|
|
1523
1647
|
color: rgb(79 70 229 / var(--tw-text-opacity, 1));
|
|
1524
1648
|
}
|
|
1649
|
+
.text-purple-600 {
|
|
1650
|
+
--tw-text-opacity: 1;
|
|
1651
|
+
color: rgb(147 51 234 / var(--tw-text-opacity, 1));
|
|
1652
|
+
}
|
|
1525
1653
|
.text-red-500 {
|
|
1526
1654
|
--tw-text-opacity: 1;
|
|
1527
1655
|
color: rgb(239 68 68 / var(--tw-text-opacity, 1));
|
|
@@ -1530,6 +1658,10 @@ video {
|
|
|
1530
1658
|
--tw-text-opacity: 1;
|
|
1531
1659
|
color: rgb(220 38 38 / var(--tw-text-opacity, 1));
|
|
1532
1660
|
}
|
|
1661
|
+
.text-red-700 {
|
|
1662
|
+
--tw-text-opacity: 1;
|
|
1663
|
+
color: rgb(185 28 28 / var(--tw-text-opacity, 1));
|
|
1664
|
+
}
|
|
1533
1665
|
.text-slate-200 {
|
|
1534
1666
|
--tw-text-opacity: 1;
|
|
1535
1667
|
color: rgb(226 232 240 / var(--tw-text-opacity, 1));
|
|
@@ -1562,6 +1694,10 @@ video {
|
|
|
1562
1694
|
--tw-text-opacity: 1;
|
|
1563
1695
|
color: rgb(15 23 42 / var(--tw-text-opacity, 1));
|
|
1564
1696
|
}
|
|
1697
|
+
.text-violet-500 {
|
|
1698
|
+
--tw-text-opacity: 1;
|
|
1699
|
+
color: rgb(139 92 246 / var(--tw-text-opacity, 1));
|
|
1700
|
+
}
|
|
1565
1701
|
.text-white {
|
|
1566
1702
|
--tw-text-opacity: 1;
|
|
1567
1703
|
color: rgb(255 255 255 / var(--tw-text-opacity, 1));
|
|
@@ -1713,6 +1849,11 @@ video {
|
|
|
1713
1849
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1714
1850
|
transition-duration: 150ms;
|
|
1715
1851
|
}
|
|
1852
|
+
.transition-transform {
|
|
1853
|
+
transition-property: transform;
|
|
1854
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1855
|
+
transition-duration: 150ms;
|
|
1856
|
+
}
|
|
1716
1857
|
.duration-100 {
|
|
1717
1858
|
transition-duration: 100ms;
|
|
1718
1859
|
}
|
|
@@ -1917,12 +2058,20 @@ video {
|
|
|
1917
2058
|
text-decoration: line-through !important;
|
|
1918
2059
|
color: #64748b !important;
|
|
1919
2060
|
}
|
|
2061
|
+
.rm-with-pagination table,
|
|
1920
2062
|
.ProseMirror table {
|
|
1921
|
-
border-collapse: collapse;
|
|
2063
|
+
border-collapse: collapse !important;
|
|
1922
2064
|
margin: 0.5rem 0 !important;
|
|
1923
|
-
overflow:
|
|
1924
|
-
table-layout: fixed;
|
|
2065
|
+
overflow: visible;
|
|
2066
|
+
table-layout: fixed !important;
|
|
1925
2067
|
width: 100%;
|
|
2068
|
+
display: table !important;
|
|
2069
|
+
}
|
|
2070
|
+
.rm-with-pagination table tbody,
|
|
2071
|
+
.ProseMirror table tbody {
|
|
2072
|
+
display: table-row-group !important;
|
|
2073
|
+
max-height: none !important;
|
|
2074
|
+
overflow: visible !important;
|
|
1926
2075
|
}
|
|
1927
2076
|
.ProseMirror td,
|
|
1928
2077
|
.ProseMirror th {
|
|
@@ -1953,19 +2102,63 @@ video {
|
|
|
1953
2102
|
position: absolute;
|
|
1954
2103
|
z-index: 2;
|
|
1955
2104
|
}
|
|
1956
|
-
.ProseMirror .
|
|
1957
|
-
|
|
1958
|
-
|
|
1959
|
-
|
|
1960
|
-
|
|
1961
|
-
|
|
1962
|
-
|
|
2105
|
+
.ProseMirror td.col-resize-active,
|
|
2106
|
+
.ProseMirror th.col-resize-active {
|
|
2107
|
+
position: relative !important;
|
|
2108
|
+
}
|
|
2109
|
+
.ProseMirror td.col-resize-active::after,
|
|
2110
|
+
.ProseMirror th.col-resize-active::after {
|
|
2111
|
+
content: "" !important;
|
|
2112
|
+
position: absolute !important;
|
|
2113
|
+
top: 0 !important;
|
|
2114
|
+
right: -2px !important;
|
|
2115
|
+
bottom: 0 !important;
|
|
2116
|
+
width: 4px !important;
|
|
2117
|
+
background-color: #06b6d4 !important;
|
|
2118
|
+
box-shadow: 0 0 8px rgba(6, 182, 212, 0.9) !important;
|
|
2119
|
+
z-index: 100 !important;
|
|
2120
|
+
pointer-events: none !important;
|
|
1963
2121
|
}
|
|
1964
2122
|
.ProseMirror.resize-cursor {
|
|
1965
2123
|
cursor: col-resize;
|
|
1966
2124
|
}
|
|
2125
|
+
.ProseMirror a {
|
|
2126
|
+
color: #2563eb;
|
|
2127
|
+
text-decoration: underline;
|
|
2128
|
+
cursor: pointer;
|
|
2129
|
+
}
|
|
2130
|
+
.dark .ProseMirror a {
|
|
2131
|
+
color: #60a5fa;
|
|
2132
|
+
}
|
|
1967
2133
|
.ProseMirror .tableWrapper {
|
|
1968
2134
|
overflow-x: auto;
|
|
2135
|
+
width: 100%;
|
|
2136
|
+
}
|
|
2137
|
+
.ProseMirror td::after,
|
|
2138
|
+
.ProseMirror th::after {
|
|
2139
|
+
content: "";
|
|
2140
|
+
display: block;
|
|
2141
|
+
position: absolute;
|
|
2142
|
+
top: 0;
|
|
2143
|
+
right: 0;
|
|
2144
|
+
bottom: 0;
|
|
2145
|
+
width: 8px;
|
|
2146
|
+
cursor: col-resize;
|
|
2147
|
+
pointer-events: auto;
|
|
2148
|
+
z-index: 10;
|
|
2149
|
+
}
|
|
2150
|
+
.ProseMirror td:not(:first-child)::before,
|
|
2151
|
+
.ProseMirror th:not(:first-child)::before {
|
|
2152
|
+
content: "";
|
|
2153
|
+
display: block;
|
|
2154
|
+
position: absolute;
|
|
2155
|
+
top: 0;
|
|
2156
|
+
left: 0;
|
|
2157
|
+
bottom: 0;
|
|
2158
|
+
width: 8px;
|
|
2159
|
+
cursor: col-resize;
|
|
2160
|
+
pointer-events: auto;
|
|
2161
|
+
z-index: 10;
|
|
1969
2162
|
}
|
|
1970
2163
|
.collaborator-cursor {
|
|
1971
2164
|
position: relative;
|
|
@@ -2119,6 +2312,259 @@ video {
|
|
|
2119
2312
|
.dark .docs-footnote-item-text[data-empty=true]::before {
|
|
2120
2313
|
color: #64748b;
|
|
2121
2314
|
}
|
|
2315
|
+
.docs-ai-selection {
|
|
2316
|
+
border-radius: 3px;
|
|
2317
|
+
background: rgba(6, 182, 212, 0.12);
|
|
2318
|
+
transition: background 0.1s;
|
|
2319
|
+
}
|
|
2320
|
+
.docs-ai-ghost {
|
|
2321
|
+
color: #0891b2;
|
|
2322
|
+
background: rgba(6, 182, 212, 0.07);
|
|
2323
|
+
border-radius: 3px;
|
|
2324
|
+
font-style: italic;
|
|
2325
|
+
white-space: pre-wrap;
|
|
2326
|
+
}
|
|
2327
|
+
.docs-ai-ghost--error {
|
|
2328
|
+
color: #dc2626;
|
|
2329
|
+
background: rgba(220, 38, 38, 0.08);
|
|
2330
|
+
font-style: normal;
|
|
2331
|
+
}
|
|
2332
|
+
.docs-ai-prompt {
|
|
2333
|
+
display: inline-block;
|
|
2334
|
+
margin: 0 2px;
|
|
2335
|
+
vertical-align: baseline;
|
|
2336
|
+
}
|
|
2337
|
+
.docs-ai-prompt__input {
|
|
2338
|
+
min-width: 260px;
|
|
2339
|
+
padding: 4px 10px;
|
|
2340
|
+
border: 1px solid rgba(6, 182, 212, 0.5);
|
|
2341
|
+
border-radius: 8px;
|
|
2342
|
+
background: #ffffff;
|
|
2343
|
+
color: #0f172a;
|
|
2344
|
+
font: inherit;
|
|
2345
|
+
font-style: italic;
|
|
2346
|
+
outline: none;
|
|
2347
|
+
box-shadow: 0 2px 12px rgba(6, 182, 212, 0.15);
|
|
2348
|
+
}
|
|
2349
|
+
.docs-ai-prompt__input:focus {
|
|
2350
|
+
border-color: #06b6d4;
|
|
2351
|
+
}
|
|
2352
|
+
.dark .docs-ai-prompt__input {
|
|
2353
|
+
background: #0c1329;
|
|
2354
|
+
color: #e2e8f0;
|
|
2355
|
+
border-color: rgba(34, 211, 238, 0.4);
|
|
2356
|
+
}
|
|
2357
|
+
.dark .docs-ai-prompt__input:focus {
|
|
2358
|
+
border-color: #22d3ee;
|
|
2359
|
+
}
|
|
2360
|
+
.docs-ai-ghost-placeholder {
|
|
2361
|
+
color: #94a3b8;
|
|
2362
|
+
}
|
|
2363
|
+
.docs-ai-ghost-actions {
|
|
2364
|
+
display: inline-flex;
|
|
2365
|
+
gap: 4px;
|
|
2366
|
+
margin-left: 6px;
|
|
2367
|
+
vertical-align: baseline;
|
|
2368
|
+
}
|
|
2369
|
+
.docs-ai-ghost-btn {
|
|
2370
|
+
padding: 1px 8px;
|
|
2371
|
+
border: none;
|
|
2372
|
+
border-radius: 6px;
|
|
2373
|
+
font-size: 0.8em;
|
|
2374
|
+
font-weight: 600;
|
|
2375
|
+
font-style: normal;
|
|
2376
|
+
cursor: pointer;
|
|
2377
|
+
white-space: nowrap;
|
|
2378
|
+
}
|
|
2379
|
+
.docs-ai-ghost-btn--accept {
|
|
2380
|
+
background: #059669;
|
|
2381
|
+
color: #ffffff;
|
|
2382
|
+
}
|
|
2383
|
+
.docs-ai-ghost-btn--accept:hover {
|
|
2384
|
+
background: #047857;
|
|
2385
|
+
}
|
|
2386
|
+
.docs-ai-ghost-btn--reject {
|
|
2387
|
+
background: rgba(220, 38, 38, 0.12);
|
|
2388
|
+
color: #dc2626;
|
|
2389
|
+
}
|
|
2390
|
+
.docs-ai-ghost-btn--reject:hover {
|
|
2391
|
+
background: rgba(220, 38, 38, 0.22);
|
|
2392
|
+
}
|
|
2393
|
+
.dark .docs-ai-ghost-btn--reject {
|
|
2394
|
+
background: rgba(248, 113, 113, 0.16);
|
|
2395
|
+
color: #f87171;
|
|
2396
|
+
}
|
|
2397
|
+
.dark .docs-ai-ghost-btn--reject:hover {
|
|
2398
|
+
background: rgba(248, 113, 113, 0.28);
|
|
2399
|
+
}
|
|
2400
|
+
.dark .docs-ai-selection {
|
|
2401
|
+
background: rgba(34, 211, 238, 0.18);
|
|
2402
|
+
}
|
|
2403
|
+
.dark .docs-ai-ghost {
|
|
2404
|
+
color: #22d3ee;
|
|
2405
|
+
background: rgba(34, 211, 238, 0.1);
|
|
2406
|
+
}
|
|
2407
|
+
.dark .docs-ai-ghost--error {
|
|
2408
|
+
color: #f87171;
|
|
2409
|
+
background: rgba(248, 113, 113, 0.12);
|
|
2410
|
+
}
|
|
2411
|
+
.docs-citation {
|
|
2412
|
+
display: inline;
|
|
2413
|
+
border-radius: 3px;
|
|
2414
|
+
padding: 0 1px;
|
|
2415
|
+
background: rgba(37, 99, 235, 0.08);
|
|
2416
|
+
cursor: default;
|
|
2417
|
+
transition: background 0.1s;
|
|
2418
|
+
}
|
|
2419
|
+
.ProseMirror-selectednode .docs-citation,
|
|
2420
|
+
.docs-citation:hover {
|
|
2421
|
+
background: rgba(37, 99, 235, 0.18);
|
|
2422
|
+
}
|
|
2423
|
+
.docs-citation--missing {
|
|
2424
|
+
color: #b45309;
|
|
2425
|
+
background: rgba(217, 119, 6, 0.12);
|
|
2426
|
+
font-weight: 600;
|
|
2427
|
+
}
|
|
2428
|
+
.docs-footnote-item-text--citation {
|
|
2429
|
+
cursor: default;
|
|
2430
|
+
color: #334155;
|
|
2431
|
+
}
|
|
2432
|
+
.docs-bibliography {
|
|
2433
|
+
margin: 1.5em 0;
|
|
2434
|
+
padding-top: 0.5em;
|
|
2435
|
+
border-top: 1px solid #e2e8f0;
|
|
2436
|
+
}
|
|
2437
|
+
.docs-bibliography__heading {
|
|
2438
|
+
font-size: 1.1em;
|
|
2439
|
+
font-weight: 700;
|
|
2440
|
+
margin: 0 0 0.5em;
|
|
2441
|
+
color: #0f172a;
|
|
2442
|
+
}
|
|
2443
|
+
.docs-bibliography__empty {
|
|
2444
|
+
color: #94a3b8;
|
|
2445
|
+
font-style: italic;
|
|
2446
|
+
margin: 0;
|
|
2447
|
+
}
|
|
2448
|
+
.docs-bibliography__entry {
|
|
2449
|
+
margin: 0 0 0.4em;
|
|
2450
|
+
padding-left: 2.5em;
|
|
2451
|
+
text-indent: -2.5em;
|
|
2452
|
+
line-height: 1.6;
|
|
2453
|
+
overflow-wrap: break-word;
|
|
2454
|
+
}
|
|
2455
|
+
.dark .docs-citation {
|
|
2456
|
+
background: rgba(96, 165, 250, 0.14);
|
|
2457
|
+
}
|
|
2458
|
+
.dark .ProseMirror-selectednode .docs-citation,
|
|
2459
|
+
.dark .docs-citation:hover {
|
|
2460
|
+
background: rgba(96, 165, 250, 0.26);
|
|
2461
|
+
}
|
|
2462
|
+
.dark .docs-citation--missing {
|
|
2463
|
+
color: #fbbf24;
|
|
2464
|
+
background: rgba(217, 119, 6, 0.2);
|
|
2465
|
+
}
|
|
2466
|
+
.dark .docs-footnote-item-text--citation {
|
|
2467
|
+
color: #cbd5e1;
|
|
2468
|
+
}
|
|
2469
|
+
.dark .docs-bibliography {
|
|
2470
|
+
border-top-color: #334155;
|
|
2471
|
+
}
|
|
2472
|
+
.dark .docs-bibliography__heading {
|
|
2473
|
+
color: #f1f5f9;
|
|
2474
|
+
}
|
|
2475
|
+
.dark .docs-bibliography__empty {
|
|
2476
|
+
color: #64748b;
|
|
2477
|
+
}
|
|
2478
|
+
.docs-toc {
|
|
2479
|
+
margin: 1em 0;
|
|
2480
|
+
padding: 0.75em 1em;
|
|
2481
|
+
border: 1px solid #e2e8f0;
|
|
2482
|
+
border-radius: 8px;
|
|
2483
|
+
background: #f8fafc;
|
|
2484
|
+
}
|
|
2485
|
+
.docs-toc__chrome {
|
|
2486
|
+
display: flex;
|
|
2487
|
+
align-items: center;
|
|
2488
|
+
justify-content: space-between;
|
|
2489
|
+
margin-bottom: 0.5em;
|
|
2490
|
+
}
|
|
2491
|
+
.docs-toc__caption {
|
|
2492
|
+
font-size: 0.7em;
|
|
2493
|
+
font-weight: 700;
|
|
2494
|
+
text-transform: uppercase;
|
|
2495
|
+
letter-spacing: 0.08em;
|
|
2496
|
+
color: #64748b;
|
|
2497
|
+
-webkit-user-select: none;
|
|
2498
|
+
-moz-user-select: none;
|
|
2499
|
+
user-select: none;
|
|
2500
|
+
}
|
|
2501
|
+
.docs-toc__refresh {
|
|
2502
|
+
border: none;
|
|
2503
|
+
background: transparent;
|
|
2504
|
+
cursor: pointer;
|
|
2505
|
+
font-size: 0.9em;
|
|
2506
|
+
line-height: 1;
|
|
2507
|
+
padding: 2px 6px;
|
|
2508
|
+
border-radius: 4px;
|
|
2509
|
+
color: #64748b;
|
|
2510
|
+
transition: background 0.1s, color 0.1s;
|
|
2511
|
+
}
|
|
2512
|
+
.docs-toc__refresh:hover {
|
|
2513
|
+
background: #e2e8f0;
|
|
2514
|
+
color: #0f172a;
|
|
2515
|
+
}
|
|
2516
|
+
.docs-toc__entry {
|
|
2517
|
+
margin: 0;
|
|
2518
|
+
line-height: 1.6;
|
|
2519
|
+
cursor: pointer;
|
|
2520
|
+
display: flex;
|
|
2521
|
+
align-items: baseline;
|
|
2522
|
+
gap: 4px;
|
|
2523
|
+
}
|
|
2524
|
+
.docs-toc__entry:hover {
|
|
2525
|
+
color: #2563eb;
|
|
2526
|
+
text-decoration: underline;
|
|
2527
|
+
}
|
|
2528
|
+
.docs-toc__entry:has(.docs-toc__page)::after {
|
|
2529
|
+
content: "";
|
|
2530
|
+
flex: 1;
|
|
2531
|
+
border-bottom: 1px dotted #cbd5e1;
|
|
2532
|
+
transform: translateY(-4px);
|
|
2533
|
+
}
|
|
2534
|
+
.docs-toc__page {
|
|
2535
|
+
order: 1;
|
|
2536
|
+
color: #64748b;
|
|
2537
|
+
font-variant-numeric: tabular-nums;
|
|
2538
|
+
}
|
|
2539
|
+
.docs-toc__entry[data-level="2"] {
|
|
2540
|
+
padding-left: 1.25rem;
|
|
2541
|
+
}
|
|
2542
|
+
.docs-toc__entry[data-level="3"] {
|
|
2543
|
+
padding-left: 2.5rem;
|
|
2544
|
+
}
|
|
2545
|
+
.dark .docs-toc {
|
|
2546
|
+
border-color: #334155;
|
|
2547
|
+
background: rgba(255, 255, 255, 0.02);
|
|
2548
|
+
}
|
|
2549
|
+
.dark .docs-toc__caption {
|
|
2550
|
+
color: #94a3b8;
|
|
2551
|
+
}
|
|
2552
|
+
.dark .docs-toc__refresh {
|
|
2553
|
+
color: #94a3b8;
|
|
2554
|
+
}
|
|
2555
|
+
.dark .docs-toc__refresh:hover {
|
|
2556
|
+
background: rgba(255, 255, 255, 0.06);
|
|
2557
|
+
color: #f1f5f9;
|
|
2558
|
+
}
|
|
2559
|
+
.dark .docs-toc__entry:hover {
|
|
2560
|
+
color: #60a5fa;
|
|
2561
|
+
}
|
|
2562
|
+
.dark .docs-toc__entry:has(.docs-toc__page)::after {
|
|
2563
|
+
border-bottom-color: #475569;
|
|
2564
|
+
}
|
|
2565
|
+
.dark .docs-toc__page {
|
|
2566
|
+
color: #94a3b8;
|
|
2567
|
+
}
|
|
2122
2568
|
@page {
|
|
2123
2569
|
margin: 20mm;
|
|
2124
2570
|
size: auto;
|
|
@@ -2129,6 +2575,201 @@ video {
|
|
|
2129
2575
|
.dark .rm-with-pagination {
|
|
2130
2576
|
background-color: #0a0f1e;
|
|
2131
2577
|
}
|
|
2578
|
+
.rm-page-header {
|
|
2579
|
+
position: relative !important;
|
|
2580
|
+
width: 100% !important;
|
|
2581
|
+
box-sizing: border-box !important;
|
|
2582
|
+
padding-left: 0 !important;
|
|
2583
|
+
padding-right: 0 !important;
|
|
2584
|
+
margin-top: var(--rm-header-margin-top, 8px) !important;
|
|
2585
|
+
cursor: default !important;
|
|
2586
|
+
font-size: 14px !important;
|
|
2587
|
+
line-height: 1.5 !important;
|
|
2588
|
+
min-height: 24px !important;
|
|
2589
|
+
}
|
|
2590
|
+
.rm-page-footer {
|
|
2591
|
+
position: relative !important;
|
|
2592
|
+
width: 100% !important;
|
|
2593
|
+
box-sizing: border-box !important;
|
|
2594
|
+
padding-left: 0 !important;
|
|
2595
|
+
padding-right: 0 !important;
|
|
2596
|
+
margin-bottom: var(--rm-footer-margin-bottom, 8px) !important;
|
|
2597
|
+
cursor: default !important;
|
|
2598
|
+
font-size: 14px !important;
|
|
2599
|
+
line-height: 1.5 !important;
|
|
2600
|
+
min-height: 24px !important;
|
|
2601
|
+
}
|
|
2602
|
+
.rm-page-header-left,
|
|
2603
|
+
.rm-page-header-right,
|
|
2604
|
+
.rm-page-footer-left,
|
|
2605
|
+
.rm-page-footer-right {
|
|
2606
|
+
font-size: 14px !important;
|
|
2607
|
+
line-height: 1.5 !important;
|
|
2608
|
+
min-height: 24px !important;
|
|
2609
|
+
pointer-events: auto !important;
|
|
2610
|
+
}
|
|
2611
|
+
.rm-page-header-left {
|
|
2612
|
+
display: inline-block !important;
|
|
2613
|
+
min-width: 200px !important;
|
|
2614
|
+
min-height: 24px !important;
|
|
2615
|
+
cursor: text !important;
|
|
2616
|
+
pointer-events: auto !important;
|
|
2617
|
+
-moz-user-select: text !important;
|
|
2618
|
+
user-select: text !important;
|
|
2619
|
+
-webkit-user-select: text !important;
|
|
2620
|
+
}
|
|
2621
|
+
.rm-page-header [contenteditable=true] {
|
|
2622
|
+
outline: none !important;
|
|
2623
|
+
min-height: 24px !important;
|
|
2624
|
+
font-size: 14px !important;
|
|
2625
|
+
line-height: 1.5 !important;
|
|
2626
|
+
display: inline-block !important;
|
|
2627
|
+
min-width: 200px !important;
|
|
2628
|
+
cursor: text !important;
|
|
2629
|
+
pointer-events: auto !important;
|
|
2630
|
+
-moz-user-select: text !important;
|
|
2631
|
+
user-select: text !important;
|
|
2632
|
+
-webkit-user-select: text !important;
|
|
2633
|
+
}
|
|
2634
|
+
.rm-page-header.rm-header-active {
|
|
2635
|
+
position: relative !important;
|
|
2636
|
+
overflow: visible !important;
|
|
2637
|
+
margin-bottom: 28px !important;
|
|
2638
|
+
}
|
|
2639
|
+
.rm-google-docs-header-bar {
|
|
2640
|
+
position: absolute !important;
|
|
2641
|
+
top: 100% !important;
|
|
2642
|
+
left: calc(-1 * var(--rm-margin-left, 72px)) !important;
|
|
2643
|
+
right: calc(-1 * var(--rm-margin-right, 72px)) !important;
|
|
2644
|
+
width: calc(100% + var(--rm-margin-left, 72px) + var(--rm-margin-right, 72px)) !important;
|
|
2645
|
+
height: 28px !important;
|
|
2646
|
+
display: flex !important;
|
|
2647
|
+
align-items: center !important;
|
|
2648
|
+
justify-content: space-between !important;
|
|
2649
|
+
padding-left: var(--rm-margin-left, 72px) !important;
|
|
2650
|
+
padding-right: var(--rm-margin-right, 72px) !important;
|
|
2651
|
+
background-color: #f8fafc !important;
|
|
2652
|
+
border-top: 1px solid #3b82f6 !important;
|
|
2653
|
+
font-family: inherit !important;
|
|
2654
|
+
font-size: 11px !important;
|
|
2655
|
+
color: #64748b !important;
|
|
2656
|
+
-webkit-user-select: none !important;
|
|
2657
|
+
-moz-user-select: none !important;
|
|
2658
|
+
user-select: none !important;
|
|
2659
|
+
z-index: 20 !important;
|
|
2660
|
+
box-sizing: border-box !important;
|
|
2661
|
+
}
|
|
2662
|
+
.dark .rm-google-docs-header-bar {
|
|
2663
|
+
background-color: #0f172a !important;
|
|
2664
|
+
border-top: 1px solid #3b82f6 !important;
|
|
2665
|
+
color: #94a3b8 !important;
|
|
2666
|
+
}
|
|
2667
|
+
.rm-google-docs-header-bar .rm-header-label {
|
|
2668
|
+
font-weight: 400 !important;
|
|
2669
|
+
color: #94a3b8 !important;
|
|
2670
|
+
}
|
|
2671
|
+
.rm-google-docs-header-bar .rm-header-right-tools {
|
|
2672
|
+
display: flex !important;
|
|
2673
|
+
align-items: center !important;
|
|
2674
|
+
gap: 16px !important;
|
|
2675
|
+
}
|
|
2676
|
+
.rm-google-docs-header-bar .rm-diff-label {
|
|
2677
|
+
display: flex !important;
|
|
2678
|
+
align-items: center !important;
|
|
2679
|
+
gap: 6px !important;
|
|
2680
|
+
cursor: pointer !important;
|
|
2681
|
+
color: #475569 !important;
|
|
2682
|
+
font-size: 11px !important;
|
|
2683
|
+
transition: color 0.15s ease !important;
|
|
2684
|
+
}
|
|
2685
|
+
.dark .rm-google-docs-header-bar .rm-diff-label {
|
|
2686
|
+
color: #cbd5e1 !important;
|
|
2687
|
+
}
|
|
2688
|
+
.rm-google-docs-header-bar .rm-diff-label:hover {
|
|
2689
|
+
color: #0f172a !important;
|
|
2690
|
+
}
|
|
2691
|
+
.dark .rm-google-docs-header-bar .rm-diff-label:hover {
|
|
2692
|
+
color: #ffffff !important;
|
|
2693
|
+
}
|
|
2694
|
+
.rm-google-docs-header-bar .rm-diff-cb {
|
|
2695
|
+
width: 13px !important;
|
|
2696
|
+
height: 13px !important;
|
|
2697
|
+
border-radius: 2px !important;
|
|
2698
|
+
border: 1px solid #94a3b8 !important;
|
|
2699
|
+
accent-color: #2563eb !important;
|
|
2700
|
+
cursor: pointer !important;
|
|
2701
|
+
}
|
|
2702
|
+
.rm-google-docs-header-bar .rm-options-wrapper {
|
|
2703
|
+
position: relative !important;
|
|
2704
|
+
}
|
|
2705
|
+
.rm-google-docs-header-bar .rm-options-btn {
|
|
2706
|
+
display: inline-flex !important;
|
|
2707
|
+
align-items: center !important;
|
|
2708
|
+
gap: 6px !important;
|
|
2709
|
+
color: #1d4ed8 !important;
|
|
2710
|
+
font-weight: 600 !important;
|
|
2711
|
+
font-size: 11px !important;
|
|
2712
|
+
background-color: #dbeafe !important;
|
|
2713
|
+
border: none !important;
|
|
2714
|
+
cursor: pointer !important;
|
|
2715
|
+
padding: 3px 12px !important;
|
|
2716
|
+
border-radius: 9999px !important;
|
|
2717
|
+
transition: all 0.15s ease !important;
|
|
2718
|
+
}
|
|
2719
|
+
.dark .rm-google-docs-header-bar .rm-options-btn {
|
|
2720
|
+
background-color: #1e3a8a !important;
|
|
2721
|
+
color: #93c5fd !important;
|
|
2722
|
+
}
|
|
2723
|
+
.rm-google-docs-header-bar .rm-options-btn:hover {
|
|
2724
|
+
background-color: #bfdbfe !important;
|
|
2725
|
+
}
|
|
2726
|
+
.dark .rm-google-docs-header-bar .rm-options-btn:hover {
|
|
2727
|
+
background-color: #1d4ed8 !important;
|
|
2728
|
+
}
|
|
2729
|
+
.rm-options-dropdown {
|
|
2730
|
+
position: absolute !important;
|
|
2731
|
+
top: calc(100% + 6px) !important;
|
|
2732
|
+
right: 12px !important;
|
|
2733
|
+
width: 170px !important;
|
|
2734
|
+
background-color: #edf2fa !important;
|
|
2735
|
+
border: 1px solid #cbd5e1 !important;
|
|
2736
|
+
border-radius: 12px !important;
|
|
2737
|
+
padding: 6px 0 !important;
|
|
2738
|
+
box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15), 0 8px 10px -6px rgba(0, 0, 0, 0.1) !important;
|
|
2739
|
+
z-index: 100 !important;
|
|
2740
|
+
display: none !important;
|
|
2741
|
+
flex-direction: column !important;
|
|
2742
|
+
overflow: hidden !important;
|
|
2743
|
+
}
|
|
2744
|
+
.rm-options-dropdown.is-open {
|
|
2745
|
+
display: flex !important;
|
|
2746
|
+
}
|
|
2747
|
+
.dark .rm-options-dropdown {
|
|
2748
|
+
background-color: #1e293b !important;
|
|
2749
|
+
border-color: #334155 !important;
|
|
2750
|
+
}
|
|
2751
|
+
.rm-options-dropdown button {
|
|
2752
|
+
display: block !important;
|
|
2753
|
+
width: 100% !important;
|
|
2754
|
+
text-align: left !important;
|
|
2755
|
+
padding: 9px 16px !important;
|
|
2756
|
+
font-size: 12px !important;
|
|
2757
|
+
font-weight: 500 !important;
|
|
2758
|
+
color: #1e293b !important;
|
|
2759
|
+
background: none !important;
|
|
2760
|
+
border: none !important;
|
|
2761
|
+
cursor: pointer !important;
|
|
2762
|
+
transition: background-color 0.15s ease !important;
|
|
2763
|
+
}
|
|
2764
|
+
.dark .rm-options-dropdown button {
|
|
2765
|
+
color: #f1f5f9 !important;
|
|
2766
|
+
}
|
|
2767
|
+
.rm-options-dropdown button:hover {
|
|
2768
|
+
background-color: #dbeafe !important;
|
|
2769
|
+
}
|
|
2770
|
+
.dark .rm-options-dropdown button:hover {
|
|
2771
|
+
background-color: #334155 !important;
|
|
2772
|
+
}
|
|
2132
2773
|
@media (max-width: 768px) {
|
|
2133
2774
|
.docs-editor-scroll {
|
|
2134
2775
|
padding-left: 0 !important;
|
|
@@ -2179,42 +2820,44 @@ video {
|
|
|
2179
2820
|
box-shadow: none !important;
|
|
2180
2821
|
box-sizing: border-box !important;
|
|
2181
2822
|
}
|
|
2182
|
-
|
|
2183
|
-
|
|
2184
|
-
|
|
2185
|
-
|
|
2186
|
-
|
|
2187
|
-
|
|
2188
|
-
|
|
2189
|
-
|
|
2190
|
-
|
|
2191
|
-
|
|
2192
|
-
|
|
2193
|
-
|
|
2194
|
-
|
|
2195
|
-
|
|
2196
|
-
|
|
2197
|
-
|
|
2198
|
-
|
|
2199
|
-
|
|
2200
|
-
|
|
2201
|
-
|
|
2202
|
-
|
|
2203
|
-
|
|
2204
|
-
|
|
2205
|
-
|
|
2206
|
-
|
|
2207
|
-
|
|
2208
|
-
|
|
2209
|
-
|
|
2210
|
-
|
|
2211
|
-
|
|
2212
|
-
|
|
2213
|
-
|
|
2214
|
-
|
|
2215
|
-
|
|
2216
|
-
|
|
2217
|
-
|
|
2823
|
+
@media screen {
|
|
2824
|
+
.ProseMirror {
|
|
2825
|
+
width: 100% !important;
|
|
2826
|
+
max-width: 100vw !important;
|
|
2827
|
+
padding-left: 16px !important;
|
|
2828
|
+
padding-right: 16px !important;
|
|
2829
|
+
box-sizing: border-box !important;
|
|
2830
|
+
}
|
|
2831
|
+
[data-rm-pagination] {
|
|
2832
|
+
max-width: 100vw !important;
|
|
2833
|
+
width: 100% !important;
|
|
2834
|
+
}
|
|
2835
|
+
.rm-page-break {
|
|
2836
|
+
max-width: 100vw !important;
|
|
2837
|
+
width: 100% !important;
|
|
2838
|
+
box-sizing: border-box !important;
|
|
2839
|
+
border-left: none !important;
|
|
2840
|
+
border-right: none !important;
|
|
2841
|
+
}
|
|
2842
|
+
.rm-page-break > .page {
|
|
2843
|
+
max-width: 100vw !important;
|
|
2844
|
+
width: 100% !important;
|
|
2845
|
+
padding-left: 16px !important;
|
|
2846
|
+
padding-right: 16px !important;
|
|
2847
|
+
margin-left: 0 !important;
|
|
2848
|
+
margin-right: 0 !important;
|
|
2849
|
+
box-sizing: border-box !important;
|
|
2850
|
+
}
|
|
2851
|
+
.rm-page-break > .breaker {
|
|
2852
|
+
width: 100% !important;
|
|
2853
|
+
margin-left: 0 !important;
|
|
2854
|
+
margin-right: 0 !important;
|
|
2855
|
+
}
|
|
2856
|
+
.rm-pagination-gap {
|
|
2857
|
+
width: 100% !important;
|
|
2858
|
+
margin-left: 0 !important;
|
|
2859
|
+
margin-right: 0 !important;
|
|
2860
|
+
}
|
|
2218
2861
|
}
|
|
2219
2862
|
.docs-editor-toolbar > div {
|
|
2220
2863
|
overflow-x: auto !important;
|
|
@@ -2293,22 +2936,48 @@ video {
|
|
|
2293
2936
|
-webkit-print-color-adjust: exact !important;
|
|
2294
2937
|
print-color-adjust: exact !important;
|
|
2295
2938
|
}
|
|
2296
|
-
.
|
|
2939
|
+
.docs-editor__paper,
|
|
2940
|
+
.docs-editor__paper *,
|
|
2941
|
+
.ProseMirror,
|
|
2942
|
+
.ProseMirror * {
|
|
2943
|
+
background: #ffffff !important;
|
|
2944
|
+
background-color: #ffffff !important;
|
|
2945
|
+
color: #000000 !important;
|
|
2946
|
+
border-color: #e5e7eb !important;
|
|
2947
|
+
}
|
|
2948
|
+
.ProseMirror pre,
|
|
2949
|
+
.ProseMirror pre * {
|
|
2950
|
+
background: #f8fafc !important;
|
|
2951
|
+
color: #0f172a !important;
|
|
2952
|
+
}
|
|
2953
|
+
.ProseMirror blockquote,
|
|
2954
|
+
.ProseMirror blockquote * {
|
|
2955
|
+
background: #f1f5f9 !important;
|
|
2956
|
+
color: #334155 !important;
|
|
2957
|
+
}
|
|
2958
|
+
@page {
|
|
2959
|
+
size: A4;
|
|
2960
|
+
margin: 20mm;
|
|
2961
|
+
}
|
|
2962
|
+
[data-rm-pagination] {
|
|
2963
|
+
display: block !important;
|
|
2297
2964
|
width: 100% !important;
|
|
2298
|
-
max-width: 100% !important;
|
|
2299
|
-
padding: 0 !important;
|
|
2300
|
-
border: none !important;
|
|
2301
|
-
min-height: auto !important;
|
|
2302
|
-
height: auto !important;
|
|
2303
|
-
overflow: visible !important;
|
|
2304
|
-
background-color: white !important;
|
|
2305
2965
|
}
|
|
2306
|
-
|
|
2307
|
-
|
|
2966
|
+
.rm-page-break {
|
|
2967
|
+
display: block !important;
|
|
2968
|
+
page-break-after: always !important;
|
|
2969
|
+
}
|
|
2970
|
+
.rm-page-break:last-child {
|
|
2971
|
+
page-break-after: auto !important;
|
|
2972
|
+
}
|
|
2973
|
+
.rm-page-break > .page,
|
|
2974
|
+
.rm-page-break > .breaker,
|
|
2975
|
+
.rm-pagination-gap,
|
|
2308
2976
|
.rm-first-page-header {
|
|
2309
2977
|
display: none !important;
|
|
2310
2978
|
}
|
|
2311
|
-
|
|
2979
|
+
.rm-page-header,
|
|
2980
|
+
.rm-page-footer {
|
|
2312
2981
|
display: none !important;
|
|
2313
2982
|
}
|
|
2314
2983
|
#printable-document,
|
|
@@ -2390,6 +3059,30 @@ video {
|
|
|
2390
3059
|
text-decoration: underline;
|
|
2391
3060
|
}
|
|
2392
3061
|
}
|
|
3062
|
+
.ProseMirror .find-match {
|
|
3063
|
+
background-color: rgba(250, 204, 21, 0.4);
|
|
3064
|
+
border-radius: 2px;
|
|
3065
|
+
}
|
|
3066
|
+
.ProseMirror .find-match-active {
|
|
3067
|
+
background-color: rgba(250, 204, 21, 0.75);
|
|
3068
|
+
outline: 1px solid #eab308;
|
|
3069
|
+
}
|
|
3070
|
+
.dark .ProseMirror .find-match {
|
|
3071
|
+
background-color: rgba(250, 204, 21, 0.3);
|
|
3072
|
+
}
|
|
3073
|
+
.dark .ProseMirror .find-match-active {
|
|
3074
|
+
background-color: rgba(234, 179, 8, 0.55);
|
|
3075
|
+
outline-color: #facc15;
|
|
3076
|
+
}
|
|
3077
|
+
.hover\:scale-110:hover {
|
|
3078
|
+
--tw-scale-x: 1.1;
|
|
3079
|
+
--tw-scale-y: 1.1;
|
|
3080
|
+
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));
|
|
3081
|
+
}
|
|
3082
|
+
.hover\:border-blue-400:hover {
|
|
3083
|
+
--tw-border-opacity: 1;
|
|
3084
|
+
border-color: rgb(96 165 250 / var(--tw-border-opacity, 1));
|
|
3085
|
+
}
|
|
2393
3086
|
.hover\:border-cyan-500:hover {
|
|
2394
3087
|
--tw-border-opacity: 1;
|
|
2395
3088
|
border-color: rgb(6 182 212 / var(--tw-border-opacity, 1));
|
|
@@ -2404,6 +3097,14 @@ video {
|
|
|
2404
3097
|
--tw-border-opacity: 1;
|
|
2405
3098
|
border-color: rgb(203 213 225 / var(--tw-border-opacity, 1));
|
|
2406
3099
|
}
|
|
3100
|
+
.hover\:bg-blue-50:hover {
|
|
3101
|
+
--tw-bg-opacity: 1;
|
|
3102
|
+
background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1));
|
|
3103
|
+
}
|
|
3104
|
+
.hover\:bg-blue-600:hover {
|
|
3105
|
+
--tw-bg-opacity: 1;
|
|
3106
|
+
background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
|
|
3107
|
+
}
|
|
2407
3108
|
.hover\:bg-blue-700:hover {
|
|
2408
3109
|
--tw-bg-opacity: 1;
|
|
2409
3110
|
background-color: rgb(29 78 216 / var(--tw-bg-opacity, 1));
|
|
@@ -2412,9 +3113,21 @@ video {
|
|
|
2412
3113
|
--tw-bg-opacity: 1;
|
|
2413
3114
|
background-color: rgb(34 211 238 / var(--tw-bg-opacity, 1));
|
|
2414
3115
|
}
|
|
3116
|
+
.hover\:bg-cyan-50:hover {
|
|
3117
|
+
--tw-bg-opacity: 1;
|
|
3118
|
+
background-color: rgb(236 254 255 / var(--tw-bg-opacity, 1));
|
|
3119
|
+
}
|
|
2415
3120
|
.hover\:bg-cyan-500\/5:hover {
|
|
2416
3121
|
background-color: rgb(6 182 212 / 0.05);
|
|
2417
3122
|
}
|
|
3123
|
+
.hover\:bg-cyan-700:hover {
|
|
3124
|
+
--tw-bg-opacity: 1;
|
|
3125
|
+
background-color: rgb(14 116 144 / var(--tw-bg-opacity, 1));
|
|
3126
|
+
}
|
|
3127
|
+
.hover\:bg-emerald-50:hover {
|
|
3128
|
+
--tw-bg-opacity: 1;
|
|
3129
|
+
background-color: rgb(236 253 245 / var(--tw-bg-opacity, 1));
|
|
3130
|
+
}
|
|
2418
3131
|
.hover\:bg-emerald-700:hover {
|
|
2419
3132
|
--tw-bg-opacity: 1;
|
|
2420
3133
|
background-color: rgb(4 120 87 / var(--tw-bg-opacity, 1));
|
|
@@ -2422,6 +3135,10 @@ video {
|
|
|
2422
3135
|
.hover\:bg-green-500\/10:hover {
|
|
2423
3136
|
background-color: rgb(34 197 94 / 0.1);
|
|
2424
3137
|
}
|
|
3138
|
+
.hover\:bg-red-50:hover {
|
|
3139
|
+
--tw-bg-opacity: 1;
|
|
3140
|
+
background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1));
|
|
3141
|
+
}
|
|
2425
3142
|
.hover\:bg-slate-100:hover {
|
|
2426
3143
|
--tw-bg-opacity: 1;
|
|
2427
3144
|
background-color: rgb(241 245 249 / var(--tw-bg-opacity, 1));
|
|
@@ -2450,6 +3167,14 @@ video {
|
|
|
2450
3167
|
--tw-text-opacity: 1;
|
|
2451
3168
|
color: rgb(245 158 11 / var(--tw-text-opacity, 1));
|
|
2452
3169
|
}
|
|
3170
|
+
.hover\:text-blue-600:hover {
|
|
3171
|
+
--tw-text-opacity: 1;
|
|
3172
|
+
color: rgb(37 99 235 / var(--tw-text-opacity, 1));
|
|
3173
|
+
}
|
|
3174
|
+
.hover\:text-blue-700:hover {
|
|
3175
|
+
--tw-text-opacity: 1;
|
|
3176
|
+
color: rgb(29 78 216 / var(--tw-text-opacity, 1));
|
|
3177
|
+
}
|
|
2453
3178
|
.hover\:text-cyan-500:hover {
|
|
2454
3179
|
--tw-text-opacity: 1;
|
|
2455
3180
|
color: rgb(6 182 212 / var(--tw-text-opacity, 1));
|
|
@@ -2462,6 +3187,10 @@ video {
|
|
|
2462
3187
|
--tw-text-opacity: 1;
|
|
2463
3188
|
color: rgb(34 197 94 / var(--tw-text-opacity, 1));
|
|
2464
3189
|
}
|
|
3190
|
+
.hover\:text-red-500:hover {
|
|
3191
|
+
--tw-text-opacity: 1;
|
|
3192
|
+
color: rgb(239 68 68 / var(--tw-text-opacity, 1));
|
|
3193
|
+
}
|
|
2465
3194
|
.hover\:text-red-600:hover {
|
|
2466
3195
|
--tw-text-opacity: 1;
|
|
2467
3196
|
color: rgb(220 38 38 / var(--tw-text-opacity, 1));
|
|
@@ -2482,13 +3211,25 @@ video {
|
|
|
2482
3211
|
--tw-text-opacity: 1;
|
|
2483
3212
|
color: rgb(15 23 42 / var(--tw-text-opacity, 1));
|
|
2484
3213
|
}
|
|
3214
|
+
.hover\:text-white:hover {
|
|
3215
|
+
--tw-text-opacity: 1;
|
|
3216
|
+
color: rgb(255 255 255 / var(--tw-text-opacity, 1));
|
|
3217
|
+
}
|
|
2485
3218
|
.hover\:opacity-90:hover {
|
|
2486
3219
|
opacity: 0.9;
|
|
2487
3220
|
}
|
|
3221
|
+
.focus\:border-blue-600:focus {
|
|
3222
|
+
--tw-border-opacity: 1;
|
|
3223
|
+
border-color: rgb(37 99 235 / var(--tw-border-opacity, 1));
|
|
3224
|
+
}
|
|
2488
3225
|
.focus\:border-cyan-400:focus {
|
|
2489
3226
|
--tw-border-opacity: 1;
|
|
2490
3227
|
border-color: rgb(34 211 238 / var(--tw-border-opacity, 1));
|
|
2491
3228
|
}
|
|
3229
|
+
.focus\:border-cyan-500:focus {
|
|
3230
|
+
--tw-border-opacity: 1;
|
|
3231
|
+
border-color: rgb(6 182 212 / var(--tw-border-opacity, 1));
|
|
3232
|
+
}
|
|
2492
3233
|
.focus\:border-cyan-500\/50:focus {
|
|
2493
3234
|
border-color: rgb(6 182 212 / 0.5);
|
|
2494
3235
|
}
|
|
@@ -2504,12 +3245,37 @@ video {
|
|
|
2504
3245
|
var(--tw-ring-shadow),
|
|
2505
3246
|
var(--tw-shadow, 0 0 #0000);
|
|
2506
3247
|
}
|
|
3248
|
+
.focus\:ring-2:focus {
|
|
3249
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
3250
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
3251
|
+
box-shadow:
|
|
3252
|
+
var(--tw-ring-offset-shadow),
|
|
3253
|
+
var(--tw-ring-shadow),
|
|
3254
|
+
var(--tw-shadow, 0 0 #0000);
|
|
3255
|
+
}
|
|
2507
3256
|
.focus\:ring-blue-400\/50:focus {
|
|
2508
3257
|
--tw-ring-color: rgb(96 165 250 / 0.5);
|
|
2509
3258
|
}
|
|
3259
|
+
.focus\:ring-blue-500:focus {
|
|
3260
|
+
--tw-ring-opacity: 1;
|
|
3261
|
+
--tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity, 1));
|
|
3262
|
+
}
|
|
3263
|
+
.focus\:ring-blue-500\/20:focus {
|
|
3264
|
+
--tw-ring-color: rgb(59 130 246 / 0.2);
|
|
3265
|
+
}
|
|
3266
|
+
.focus\:ring-cyan-500:focus {
|
|
3267
|
+
--tw-ring-opacity: 1;
|
|
3268
|
+
--tw-ring-color: rgb(6 182 212 / var(--tw-ring-opacity, 1));
|
|
3269
|
+
}
|
|
2510
3270
|
.focus\:ring-cyan-500\/50:focus {
|
|
2511
3271
|
--tw-ring-color: rgb(6 182 212 / 0.5);
|
|
2512
3272
|
}
|
|
3273
|
+
.disabled\:cursor-not-allowed:disabled {
|
|
3274
|
+
cursor: not-allowed;
|
|
3275
|
+
}
|
|
3276
|
+
.disabled\:opacity-30:disabled {
|
|
3277
|
+
opacity: 0.3;
|
|
3278
|
+
}
|
|
2513
3279
|
.disabled\:opacity-40:disabled {
|
|
2514
3280
|
opacity: 0.4;
|
|
2515
3281
|
}
|
|
@@ -2530,6 +3296,12 @@ video {
|
|
|
2530
3296
|
.dark\:border-amber-500\/20:is(.dark *) {
|
|
2531
3297
|
border-color: rgb(245 158 11 / 0.2);
|
|
2532
3298
|
}
|
|
3299
|
+
.dark\:border-cyan-400\/30:is(.dark *) {
|
|
3300
|
+
border-color: rgb(34 211 238 / 0.3);
|
|
3301
|
+
}
|
|
3302
|
+
.dark\:border-cyan-400\/50:is(.dark *) {
|
|
3303
|
+
border-color: rgb(34 211 238 / 0.5);
|
|
3304
|
+
}
|
|
2533
3305
|
.dark\:border-cyan-500\/15:is(.dark *) {
|
|
2534
3306
|
border-color: rgb(6 182 212 / 0.15);
|
|
2535
3307
|
}
|
|
@@ -2550,6 +3322,9 @@ video {
|
|
|
2550
3322
|
--tw-border-opacity: 1;
|
|
2551
3323
|
border-color: rgb(51 65 85 / var(--tw-border-opacity, 1));
|
|
2552
3324
|
}
|
|
3325
|
+
.dark\:border-slate-700\/50:is(.dark *) {
|
|
3326
|
+
border-color: rgb(51 65 85 / 0.5);
|
|
3327
|
+
}
|
|
2553
3328
|
.dark\:border-slate-700\/80:is(.dark *) {
|
|
2554
3329
|
border-color: rgb(51 65 85 / 0.8);
|
|
2555
3330
|
}
|
|
@@ -2564,6 +3339,9 @@ video {
|
|
|
2564
3339
|
.dark\:border-white\/10:is(.dark *) {
|
|
2565
3340
|
border-color: rgb(255 255 255 / 0.1);
|
|
2566
3341
|
}
|
|
3342
|
+
.dark\:border-white\/15:is(.dark *) {
|
|
3343
|
+
border-color: rgb(255 255 255 / 0.15);
|
|
3344
|
+
}
|
|
2567
3345
|
.dark\:border-white\/5:is(.dark *) {
|
|
2568
3346
|
border-color: rgb(255 255 255 / 0.05);
|
|
2569
3347
|
}
|
|
@@ -2574,12 +3352,6 @@ video {
|
|
|
2574
3352
|
.dark\:bg-\[\#02040a\]\/40:is(.dark *) {
|
|
2575
3353
|
background-color: rgb(2 4 10 / 0.4);
|
|
2576
3354
|
}
|
|
2577
|
-
.dark\:bg-\[\#02040a\]\/50:is(.dark *) {
|
|
2578
|
-
background-color: rgb(2 4 10 / 0.5);
|
|
2579
|
-
}
|
|
2580
|
-
.dark\:bg-\[\#02040a\]\/80:is(.dark *) {
|
|
2581
|
-
background-color: rgb(2 4 10 / 0.8);
|
|
2582
|
-
}
|
|
2583
3355
|
.dark\:bg-\[\#080d1a\]:is(.dark *) {
|
|
2584
3356
|
--tw-bg-opacity: 1;
|
|
2585
3357
|
background-color: rgb(8 13 26 / var(--tw-bg-opacity, 1));
|
|
@@ -2609,6 +3381,10 @@ video {
|
|
|
2609
3381
|
.dark\:bg-\[\#0e1525\]\/60:is(.dark *) {
|
|
2610
3382
|
background-color: rgb(14 21 37 / 0.6);
|
|
2611
3383
|
}
|
|
3384
|
+
.dark\:bg-\[\#1a2332\]:is(.dark *) {
|
|
3385
|
+
--tw-bg-opacity: 1;
|
|
3386
|
+
background-color: rgb(26 35 50 / var(--tw-bg-opacity, 1));
|
|
3387
|
+
}
|
|
2612
3388
|
.dark\:bg-blue-900\/30:is(.dark *) {
|
|
2613
3389
|
background-color: rgb(30 58 138 / 0.3);
|
|
2614
3390
|
}
|
|
@@ -2621,6 +3397,9 @@ video {
|
|
|
2621
3397
|
.dark\:bg-cyan-500\/10:is(.dark *) {
|
|
2622
3398
|
background-color: rgb(6 182 212 / 0.1);
|
|
2623
3399
|
}
|
|
3400
|
+
.dark\:bg-cyan-500\/15:is(.dark *) {
|
|
3401
|
+
background-color: rgb(6 182 212 / 0.15);
|
|
3402
|
+
}
|
|
2624
3403
|
.dark\:bg-cyan-500\/5:is(.dark *) {
|
|
2625
3404
|
background-color: rgb(6 182 212 / 0.05);
|
|
2626
3405
|
}
|
|
@@ -2630,6 +3409,9 @@ video {
|
|
|
2630
3409
|
.dark\:bg-green-950\/10:is(.dark *) {
|
|
2631
3410
|
background-color: rgb(5 46 22 / 0.1);
|
|
2632
3411
|
}
|
|
3412
|
+
.dark\:bg-red-500\/10:is(.dark *) {
|
|
3413
|
+
background-color: rgb(239 68 68 / 0.1);
|
|
3414
|
+
}
|
|
2633
3415
|
.dark\:bg-slate-700:is(.dark *) {
|
|
2634
3416
|
--tw-bg-opacity: 1;
|
|
2635
3417
|
background-color: rgb(51 65 85 / var(--tw-bg-opacity, 1));
|
|
@@ -2657,6 +3439,9 @@ video {
|
|
|
2657
3439
|
.dark\:bg-white\/\[0\.02\]:is(.dark *) {
|
|
2658
3440
|
background-color: rgb(255 255 255 / 0.02);
|
|
2659
3441
|
}
|
|
3442
|
+
.dark\:bg-white\/\[0\.04\]:is(.dark *) {
|
|
3443
|
+
background-color: rgb(255 255 255 / 0.04);
|
|
3444
|
+
}
|
|
2660
3445
|
.dark\:text-\[\#e2e8f0\]:is(.dark *) {
|
|
2661
3446
|
--tw-text-opacity: 1;
|
|
2662
3447
|
color: rgb(226 232 240 / var(--tw-text-opacity, 1));
|
|
@@ -2677,6 +3462,10 @@ video {
|
|
|
2677
3462
|
--tw-text-opacity: 1;
|
|
2678
3463
|
color: rgb(147 197 253 / var(--tw-text-opacity, 1));
|
|
2679
3464
|
}
|
|
3465
|
+
.dark\:text-blue-400:is(.dark *) {
|
|
3466
|
+
--tw-text-opacity: 1;
|
|
3467
|
+
color: rgb(96 165 250 / var(--tw-text-opacity, 1));
|
|
3468
|
+
}
|
|
2680
3469
|
.dark\:text-cyan-300:is(.dark *) {
|
|
2681
3470
|
--tw-text-opacity: 1;
|
|
2682
3471
|
color: rgb(103 232 249 / var(--tw-text-opacity, 1));
|
|
@@ -2685,6 +3474,10 @@ video {
|
|
|
2685
3474
|
--tw-text-opacity: 1;
|
|
2686
3475
|
color: rgb(34 211 238 / var(--tw-text-opacity, 1));
|
|
2687
3476
|
}
|
|
3477
|
+
.dark\:text-emerald-400:is(.dark *) {
|
|
3478
|
+
--tw-text-opacity: 1;
|
|
3479
|
+
color: rgb(52 211 153 / var(--tw-text-opacity, 1));
|
|
3480
|
+
}
|
|
2688
3481
|
.dark\:text-green-400:is(.dark *) {
|
|
2689
3482
|
--tw-text-opacity: 1;
|
|
2690
3483
|
color: rgb(74 222 128 / var(--tw-text-opacity, 1));
|
|
@@ -2693,6 +3486,14 @@ video {
|
|
|
2693
3486
|
--tw-text-opacity: 1;
|
|
2694
3487
|
color: rgb(165 180 252 / var(--tw-text-opacity, 1));
|
|
2695
3488
|
}
|
|
3489
|
+
.dark\:text-purple-400:is(.dark *) {
|
|
3490
|
+
--tw-text-opacity: 1;
|
|
3491
|
+
color: rgb(192 132 252 / var(--tw-text-opacity, 1));
|
|
3492
|
+
}
|
|
3493
|
+
.dark\:text-red-300:is(.dark *) {
|
|
3494
|
+
--tw-text-opacity: 1;
|
|
3495
|
+
color: rgb(252 165 165 / var(--tw-text-opacity, 1));
|
|
3496
|
+
}
|
|
2696
3497
|
.dark\:text-red-400:is(.dark *) {
|
|
2697
3498
|
--tw-text-opacity: 1;
|
|
2698
3499
|
color: rgb(248 113 113 / var(--tw-text-opacity, 1));
|
|
@@ -2717,9 +3518,21 @@ video {
|
|
|
2717
3518
|
--tw-text-opacity: 1;
|
|
2718
3519
|
color: rgb(100 116 139 / var(--tw-text-opacity, 1));
|
|
2719
3520
|
}
|
|
3521
|
+
.dark\:text-slate-600:is(.dark *) {
|
|
3522
|
+
--tw-text-opacity: 1;
|
|
3523
|
+
color: rgb(71 85 105 / var(--tw-text-opacity, 1));
|
|
3524
|
+
}
|
|
3525
|
+
.dark\:text-white:is(.dark *) {
|
|
3526
|
+
--tw-text-opacity: 1;
|
|
3527
|
+
color: rgb(255 255 255 / var(--tw-text-opacity, 1));
|
|
3528
|
+
}
|
|
2720
3529
|
.dark\:text-white\/10:is(.dark *) {
|
|
2721
3530
|
color: rgb(255 255 255 / 0.1);
|
|
2722
3531
|
}
|
|
3532
|
+
.dark\:hover\:border-blue-500:hover:is(.dark *) {
|
|
3533
|
+
--tw-border-opacity: 1;
|
|
3534
|
+
border-color: rgb(59 130 246 / var(--tw-border-opacity, 1));
|
|
3535
|
+
}
|
|
2723
3536
|
.dark\:hover\:border-cyan-400\/50:hover:is(.dark *) {
|
|
2724
3537
|
border-color: rgb(34 211 238 / 0.5);
|
|
2725
3538
|
}
|
|
@@ -2733,6 +3546,32 @@ video {
|
|
|
2733
3546
|
.dark\:hover\:border-white\/10:hover:is(.dark *) {
|
|
2734
3547
|
border-color: rgb(255 255 255 / 0.1);
|
|
2735
3548
|
}
|
|
3549
|
+
.dark\:hover\:border-white\/20:hover:is(.dark *) {
|
|
3550
|
+
border-color: rgb(255 255 255 / 0.2);
|
|
3551
|
+
}
|
|
3552
|
+
.dark\:hover\:bg-blue-600:hover:is(.dark *) {
|
|
3553
|
+
--tw-bg-opacity: 1;
|
|
3554
|
+
background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
|
|
3555
|
+
}
|
|
3556
|
+
.dark\:hover\:bg-blue-950\/40:hover:is(.dark *) {
|
|
3557
|
+
background-color: rgb(23 37 84 / 0.4);
|
|
3558
|
+
}
|
|
3559
|
+
.dark\:hover\:bg-cyan-500\/10:hover:is(.dark *) {
|
|
3560
|
+
background-color: rgb(6 182 212 / 0.1);
|
|
3561
|
+
}
|
|
3562
|
+
.dark\:hover\:bg-emerald-500\/10:hover:is(.dark *) {
|
|
3563
|
+
background-color: rgb(16 185 129 / 0.1);
|
|
3564
|
+
}
|
|
3565
|
+
.dark\:hover\:bg-red-500\/10:hover:is(.dark *) {
|
|
3566
|
+
background-color: rgb(239 68 68 / 0.1);
|
|
3567
|
+
}
|
|
3568
|
+
.dark\:hover\:bg-red-950\/40:hover:is(.dark *) {
|
|
3569
|
+
background-color: rgb(69 10 10 / 0.4);
|
|
3570
|
+
}
|
|
3571
|
+
.dark\:hover\:bg-slate-700:hover:is(.dark *) {
|
|
3572
|
+
--tw-bg-opacity: 1;
|
|
3573
|
+
background-color: rgb(51 65 85 / var(--tw-bg-opacity, 1));
|
|
3574
|
+
}
|
|
2736
3575
|
.dark\:hover\:bg-slate-700\/50:hover:is(.dark *) {
|
|
2737
3576
|
background-color: rgb(51 65 85 / 0.5);
|
|
2738
3577
|
}
|
|
@@ -2758,6 +3597,10 @@ video {
|
|
|
2758
3597
|
.dark\:hover\:bg-white\/5:hover:is(.dark *) {
|
|
2759
3598
|
background-color: rgb(255 255 255 / 0.05);
|
|
2760
3599
|
}
|
|
3600
|
+
.dark\:hover\:text-blue-400:hover:is(.dark *) {
|
|
3601
|
+
--tw-text-opacity: 1;
|
|
3602
|
+
color: rgb(96 165 250 / var(--tw-text-opacity, 1));
|
|
3603
|
+
}
|
|
2761
3604
|
.dark\:hover\:text-cyan-300:hover:is(.dark *) {
|
|
2762
3605
|
--tw-text-opacity: 1;
|
|
2763
3606
|
color: rgb(103 232 249 / var(--tw-text-opacity, 1));
|
|
@@ -2774,6 +3617,10 @@ video {
|
|
|
2774
3617
|
--tw-text-opacity: 1;
|
|
2775
3618
|
color: rgb(226 232 240 / var(--tw-text-opacity, 1));
|
|
2776
3619
|
}
|
|
3620
|
+
.dark\:hover\:text-slate-300:hover:is(.dark *) {
|
|
3621
|
+
--tw-text-opacity: 1;
|
|
3622
|
+
color: rgb(203 213 225 / var(--tw-text-opacity, 1));
|
|
3623
|
+
}
|
|
2777
3624
|
.dark\:hover\:text-white:hover:is(.dark *) {
|
|
2778
3625
|
--tw-text-opacity: 1;
|
|
2779
3626
|
color: rgb(255 255 255 / var(--tw-text-opacity, 1));
|