@halo-dev/richtext-editor 0.0.0-alpha.21 → 0.0.0-alpha.23

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (45) hide show
  1. package/dist/components/EditorHeader.vue.d.ts +10 -12
  2. package/dist/components/block/BlockCard.vue.d.ts +2 -2
  3. package/dist/components/bubble/BubbleItem.vue.d.ts +60 -0
  4. package/dist/components/index.d.ts +7 -0
  5. package/dist/components/toolbar/ToolbarItem.vue.d.ts +60 -0
  6. package/dist/components/toolbar/ToolbarSubItem.vue.d.ts +63 -0
  7. package/dist/extensions/audio/AudioView.vue.d.ts +5 -5
  8. package/dist/extensions/audio/index.d.ts +1 -1
  9. package/dist/extensions/blockquote/index.d.ts +2 -0
  10. package/dist/extensions/bold/index.d.ts +2 -0
  11. package/dist/extensions/bullet-list/index.d.ts +2 -0
  12. package/dist/extensions/code/index.d.ts +2 -0
  13. package/dist/extensions/code-block/code-block.d.ts +1 -1
  14. package/dist/extensions/commands-menu/CommandsView.vue.d.ts +4 -5
  15. package/dist/extensions/commands-menu/index.d.ts +0 -2
  16. package/dist/extensions/heading/index.d.ts +2 -0
  17. package/dist/extensions/highlight/index.d.ts +2 -0
  18. package/dist/extensions/history/index.d.ts +2 -0
  19. package/dist/extensions/iframe/IframeView.vue.d.ts +6 -6
  20. package/dist/extensions/iframe/index.d.ts +1 -1
  21. package/dist/extensions/image/ImageView.vue.d.ts +13 -4
  22. package/dist/extensions/index.d.ts +20 -23
  23. package/dist/extensions/italic/index.d.ts +2 -0
  24. package/dist/extensions/link/LinkBubbleButton.vue.d.ts +75 -0
  25. package/dist/extensions/link/index.d.ts +2 -0
  26. package/dist/extensions/ordered-list/index.d.ts +2 -0
  27. package/dist/extensions/strike/index.d.ts +2 -0
  28. package/dist/extensions/subscript/index.d.ts +2 -0
  29. package/dist/extensions/superscript/index.d.ts +2 -0
  30. package/dist/extensions/table/index.d.ts +1 -1
  31. package/dist/extensions/task-list/index.d.ts +2 -0
  32. package/dist/extensions/text-align/index.d.ts +2 -0
  33. package/dist/extensions/underline/index.d.ts +2 -0
  34. package/dist/extensions/video/VideoView.vue.d.ts +10 -10
  35. package/dist/extensions/video/index.d.ts +1 -1
  36. package/dist/index.d.ts +1 -2
  37. package/dist/rich-text-editor.es.js +24841 -23670
  38. package/dist/rich-text-editor.es.js.map +1 -1
  39. package/dist/rich-text-editor.iife.js +24276 -23105
  40. package/dist/rich-text-editor.iife.js.map +1 -1
  41. package/dist/style.css +1041 -572
  42. package/package.json +48 -47
  43. package/dist/components/EditorLinkBubbleMenuItems.vue.d.ts +0 -24
  44. package/dist/extensions/commands-menu/suggestion.d.ts +0 -29
  45. package/dist/menus/index.d.ts +0 -32
package/dist/style.css CHANGED
@@ -24,25 +24,35 @@
24
24
  height: 0;
25
25
  }
26
26
  .halo-rich-text-editor .editor-content .ProseMirror pre {
27
+ background: #0d0d0d;
27
28
  padding: 0.75rem 1rem;
28
29
  margin: 0;
29
30
  }
30
31
  .halo-rich-text-editor .editor-content .ProseMirror pre code {
31
- color: inherit;
32
32
  background: none;
33
33
  font-size: 0.8rem;
34
+ padding: 0 !important;
35
+ border-radius: 0;
34
36
  }
35
37
  .halo-rich-text-editor .editor-content .ProseMirror ul[data-type=taskList] {
36
38
  list-style: none;
37
39
  padding: 0;
38
40
  }
41
+ .halo-rich-text-editor .editor-content .ProseMirror ul[data-type=taskList] p {
42
+ margin: 0;
43
+ }
39
44
  .halo-rich-text-editor .editor-content .ProseMirror ul[data-type=taskList] li {
40
45
  display: flex;
41
- align-items: center;
42
46
  }
43
47
  .halo-rich-text-editor .editor-content .ProseMirror ul[data-type=taskList] li > label {
44
48
  flex: 0 0 auto;
45
49
  margin-right: 0.5rem;
50
+ -webkit-user-select: none;
51
+ -moz-user-select: none;
52
+ user-select: none;
53
+ }
54
+ .halo-rich-text-editor .editor-content .ProseMirror ul[data-type=taskList] li > div {
55
+ flex: 1 1 auto;
46
56
  }
47
57
  .halo-rich-text-editor .editor-content .ProseMirror ul {
48
58
  list-style-type: disc;
@@ -104,7 +114,7 @@
104
114
  .v-popper--theme-editor-block-dropdown .v-popper__arrow-container {
105
115
  display: none;
106
116
  }/*
107
- ! tailwindcss v3.2.6 | MIT License | https://tailwindcss.com
117
+ ! tailwindcss v3.3.2 | MIT License | https://tailwindcss.com
108
118
  *//*
109
119
  1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
110
120
  2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
@@ -130,6 +140,7 @@
130
140
  3. Use a more readable tab size.
131
141
  4. Use the user's configured `sans` font-family by default.
132
142
  5. Use the user's configured `sans` font-feature-settings by default.
143
+ 6. Use the user's configured `sans` font-variation-settings by default.
133
144
  */
134
145
 
135
146
  html {
@@ -140,6 +151,7 @@ html {
140
151
  tab-size: 4; /* 3 */
141
152
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
142
153
  font-feature-settings: normal; /* 5 */
154
+ font-variation-settings: normal; /* 6 */
143
155
  }
144
156
 
145
157
  /*
@@ -494,6 +506,9 @@ video {
494
506
  --tw-pan-y: ;
495
507
  --tw-pinch-zoom: ;
496
508
  --tw-scroll-snap-strictness: proximity;
509
+ --tw-gradient-from-position: ;
510
+ --tw-gradient-via-position: ;
511
+ --tw-gradient-to-position: ;
497
512
  --tw-ordinal: ;
498
513
  --tw-slashed-zero: ;
499
514
  --tw-numeric-figure: ;
@@ -541,6 +556,9 @@ video {
541
556
  --tw-pan-y: ;
542
557
  --tw-pinch-zoom: ;
543
558
  --tw-scroll-snap-strictness: proximity;
559
+ --tw-gradient-from-position: ;
560
+ --tw-gradient-via-position: ;
561
+ --tw-gradient-to-position: ;
544
562
  --tw-ordinal: ;
545
563
  --tw-slashed-zero: ;
546
564
  --tw-numeric-figure: ;
@@ -573,554 +591,8 @@ video {
573
591
  --tw-backdrop-saturate: ;
574
592
  --tw-backdrop-sepia: ;
575
593
  }
576
- .prose {
577
- color: var(--tw-prose-body);
578
- max-width: 65ch;
579
- }
580
- .prose :where(p):not(:where([class~="not-prose"] *)) {
581
- margin-top: 1.25em;
582
- margin-bottom: 1.25em;
583
- }
584
- .prose :where([class~="lead"]):not(:where([class~="not-prose"] *)) {
585
- color: var(--tw-prose-lead);
586
- font-size: 1.25em;
587
- line-height: 1.6;
588
- margin-top: 1.2em;
589
- margin-bottom: 1.2em;
590
- }
591
- .prose :where(a):not(:where([class~="not-prose"] *)) {
592
- color: var(--tw-prose-links);
593
- text-decoration: underline;
594
- font-weight: 500;
595
- }
596
- .prose :where(strong):not(:where([class~="not-prose"] *)) {
597
- color: var(--tw-prose-bold);
598
- font-weight: 600;
599
- }
600
- .prose :where(a strong):not(:where([class~="not-prose"] *)) {
601
- color: inherit;
602
- }
603
- .prose :where(blockquote strong):not(:where([class~="not-prose"] *)) {
604
- color: inherit;
605
- }
606
- .prose :where(thead th strong):not(:where([class~="not-prose"] *)) {
607
- color: inherit;
608
- }
609
- .prose :where(ol):not(:where([class~="not-prose"] *)) {
610
- list-style-type: decimal;
611
- margin-top: 1.25em;
612
- margin-bottom: 1.25em;
613
- padding-left: 1.625em;
614
- }
615
- .prose :where(ol[type="A"]):not(:where([class~="not-prose"] *)) {
616
- list-style-type: upper-alpha;
617
- }
618
- .prose :where(ol[type="a"]):not(:where([class~="not-prose"] *)) {
619
- list-style-type: lower-alpha;
620
- }
621
- .prose :where(ol[type="A" s]):not(:where([class~="not-prose"] *)) {
622
- list-style-type: upper-alpha;
623
- }
624
- .prose :where(ol[type="a" s]):not(:where([class~="not-prose"] *)) {
625
- list-style-type: lower-alpha;
626
- }
627
- .prose :where(ol[type="I"]):not(:where([class~="not-prose"] *)) {
628
- list-style-type: upper-roman;
629
- }
630
- .prose :where(ol[type="i"]):not(:where([class~="not-prose"] *)) {
631
- list-style-type: lower-roman;
632
- }
633
- .prose :where(ol[type="I" s]):not(:where([class~="not-prose"] *)) {
634
- list-style-type: upper-roman;
635
- }
636
- .prose :where(ol[type="i" s]):not(:where([class~="not-prose"] *)) {
637
- list-style-type: lower-roman;
638
- }
639
- .prose :where(ol[type="1"]):not(:where([class~="not-prose"] *)) {
640
- list-style-type: decimal;
641
- }
642
- .prose :where(ul):not(:where([class~="not-prose"] *)) {
643
- list-style-type: disc;
644
- margin-top: 1.25em;
645
- margin-bottom: 1.25em;
646
- padding-left: 1.625em;
647
- }
648
- .prose :where(ol > li):not(:where([class~="not-prose"] *))::marker {
649
- font-weight: 400;
650
- color: var(--tw-prose-counters);
651
- }
652
- .prose :where(ul > li):not(:where([class~="not-prose"] *))::marker {
653
- color: var(--tw-prose-bullets);
654
- }
655
- .prose :where(hr):not(:where([class~="not-prose"] *)) {
656
- border-color: var(--tw-prose-hr);
657
- border-top-width: 1px;
658
- margin-top: 3em;
659
- margin-bottom: 3em;
660
- }
661
- .prose :where(blockquote):not(:where([class~="not-prose"] *)) {
662
- font-weight: 500;
663
- font-style: italic;
664
- color: var(--tw-prose-quotes);
665
- border-left-width: 0.25rem;
666
- border-left-color: var(--tw-prose-quote-borders);
667
- quotes: "\201C""\201D""\2018""\2019";
668
- margin-top: 1.6em;
669
- margin-bottom: 1.6em;
670
- padding-left: 1em;
671
- }
672
- .prose :where(blockquote p:first-of-type):not(:where([class~="not-prose"] *))::before {
673
- content: open-quote;
674
- }
675
- .prose :where(blockquote p:last-of-type):not(:where([class~="not-prose"] *))::after {
676
- content: close-quote;
677
- }
678
- .prose :where(h1):not(:where([class~="not-prose"] *)) {
679
- color: var(--tw-prose-headings);
680
- font-weight: 800;
681
- font-size: 2.25em;
682
- margin-top: 0;
683
- margin-bottom: 0.8888889em;
684
- line-height: 1.1111111;
685
- }
686
- .prose :where(h1 strong):not(:where([class~="not-prose"] *)) {
687
- font-weight: 900;
688
- color: inherit;
689
- }
690
- .prose :where(h2):not(:where([class~="not-prose"] *)) {
691
- color: var(--tw-prose-headings);
692
- font-weight: 700;
693
- font-size: 1.5em;
694
- margin-top: 2em;
695
- margin-bottom: 1em;
696
- line-height: 1.3333333;
697
- }
698
- .prose :where(h2 strong):not(:where([class~="not-prose"] *)) {
699
- font-weight: 800;
700
- color: inherit;
701
- }
702
- .prose :where(h3):not(:where([class~="not-prose"] *)) {
703
- color: var(--tw-prose-headings);
704
- font-weight: 600;
705
- font-size: 1.25em;
706
- margin-top: 1.6em;
707
- margin-bottom: 0.6em;
708
- line-height: 1.6;
709
- }
710
- .prose :where(h3 strong):not(:where([class~="not-prose"] *)) {
711
- font-weight: 700;
712
- color: inherit;
713
- }
714
- .prose :where(h4):not(:where([class~="not-prose"] *)) {
715
- color: var(--tw-prose-headings);
716
- font-weight: 600;
717
- margin-top: 1.5em;
718
- margin-bottom: 0.5em;
719
- line-height: 1.5;
720
- }
721
- .prose :where(h4 strong):not(:where([class~="not-prose"] *)) {
722
- font-weight: 700;
723
- color: inherit;
724
- }
725
- .prose :where(img):not(:where([class~="not-prose"] *)) {
726
- margin-top: 2em;
727
- margin-bottom: 2em;
728
- }
729
- .prose :where(figure > *):not(:where([class~="not-prose"] *)) {
730
- margin-top: 0;
731
- margin-bottom: 0;
732
- }
733
- .prose :where(figcaption):not(:where([class~="not-prose"] *)) {
734
- color: var(--tw-prose-captions);
735
- font-size: 0.875em;
736
- line-height: 1.4285714;
737
- margin-top: 0.8571429em;
738
- }
739
- .prose :where(code):not(:where([class~="not-prose"] *)) {
740
- color: var(--tw-prose-code);
741
- font-weight: 600;
742
- font-size: 0.875em;
743
- }
744
- .prose :where(code):not(:where([class~="not-prose"] *))::before {
745
- content: "`";
746
- }
747
- .prose :where(code):not(:where([class~="not-prose"] *))::after {
748
- content: "`";
749
- }
750
- .prose :where(a code):not(:where([class~="not-prose"] *)) {
751
- color: inherit;
752
- }
753
- .prose :where(h1 code):not(:where([class~="not-prose"] *)) {
754
- color: inherit;
755
- }
756
- .prose :where(h2 code):not(:where([class~="not-prose"] *)) {
757
- color: inherit;
758
- font-size: 0.875em;
759
- }
760
- .prose :where(h3 code):not(:where([class~="not-prose"] *)) {
761
- color: inherit;
762
- font-size: 0.9em;
763
- }
764
- .prose :where(h4 code):not(:where([class~="not-prose"] *)) {
765
- color: inherit;
766
- }
767
- .prose :where(blockquote code):not(:where([class~="not-prose"] *)) {
768
- color: inherit;
769
- }
770
- .prose :where(thead th code):not(:where([class~="not-prose"] *)) {
771
- color: inherit;
772
- }
773
- .prose :where(pre):not(:where([class~="not-prose"] *)) {
774
- color: var(--tw-prose-pre-code);
775
- background-color: var(--tw-prose-pre-bg);
776
- overflow-x: auto;
777
- font-weight: 400;
778
- font-size: 0.875em;
779
- line-height: 1.7142857;
780
- margin-top: 1.7142857em;
781
- margin-bottom: 1.7142857em;
782
- border-radius: 0.375rem;
783
- padding-top: 0.8571429em;
784
- padding-right: 1.1428571em;
785
- padding-bottom: 0.8571429em;
786
- padding-left: 1.1428571em;
787
- }
788
- .prose :where(pre code):not(:where([class~="not-prose"] *)) {
789
- background-color: transparent;
790
- border-width: 0;
791
- border-radius: 0;
792
- padding: 0;
793
- font-weight: inherit;
794
- color: inherit;
795
- font-size: inherit;
796
- font-family: inherit;
797
- line-height: inherit;
798
- }
799
- .prose :where(pre code):not(:where([class~="not-prose"] *))::before {
800
- content: none;
801
- }
802
- .prose :where(pre code):not(:where([class~="not-prose"] *))::after {
803
- content: none;
804
- }
805
- .prose :where(table):not(:where([class~="not-prose"] *)) {
806
- width: 100%;
807
- table-layout: auto;
808
- text-align: left;
809
- margin-top: 2em;
810
- margin-bottom: 2em;
811
- font-size: 0.875em;
812
- line-height: 1.7142857;
813
- }
814
- .prose :where(thead):not(:where([class~="not-prose"] *)) {
815
- border-bottom-width: 1px;
816
- border-bottom-color: var(--tw-prose-th-borders);
817
- }
818
- .prose :where(thead th):not(:where([class~="not-prose"] *)) {
819
- color: var(--tw-prose-headings);
820
- font-weight: 600;
821
- vertical-align: bottom;
822
- padding-right: 0.5714286em;
823
- padding-bottom: 0.5714286em;
824
- padding-left: 0.5714286em;
825
- }
826
- .prose :where(tbody tr):not(:where([class~="not-prose"] *)) {
827
- border-bottom-width: 1px;
828
- border-bottom-color: var(--tw-prose-td-borders);
829
- }
830
- .prose :where(tbody tr:last-child):not(:where([class~="not-prose"] *)) {
831
- border-bottom-width: 0;
832
- }
833
- .prose :where(tbody td):not(:where([class~="not-prose"] *)) {
834
- vertical-align: baseline;
835
- }
836
- .prose :where(tfoot):not(:where([class~="not-prose"] *)) {
837
- border-top-width: 1px;
838
- border-top-color: var(--tw-prose-th-borders);
839
- }
840
- .prose :where(tfoot td):not(:where([class~="not-prose"] *)) {
841
- vertical-align: top;
842
- }
843
- .prose {
844
- --tw-prose-body: #374151;
845
- --tw-prose-headings: #111827;
846
- --tw-prose-lead: #4b5563;
847
- --tw-prose-links: #111827;
848
- --tw-prose-bold: #111827;
849
- --tw-prose-counters: #6b7280;
850
- --tw-prose-bullets: #d1d5db;
851
- --tw-prose-hr: #e5e7eb;
852
- --tw-prose-quotes: #111827;
853
- --tw-prose-quote-borders: #e5e7eb;
854
- --tw-prose-captions: #6b7280;
855
- --tw-prose-code: #111827;
856
- --tw-prose-pre-code: #e5e7eb;
857
- --tw-prose-pre-bg: #1f2937;
858
- --tw-prose-th-borders: #d1d5db;
859
- --tw-prose-td-borders: #e5e7eb;
860
- --tw-prose-invert-body: #d1d5db;
861
- --tw-prose-invert-headings: #fff;
862
- --tw-prose-invert-lead: #9ca3af;
863
- --tw-prose-invert-links: #fff;
864
- --tw-prose-invert-bold: #fff;
865
- --tw-prose-invert-counters: #9ca3af;
866
- --tw-prose-invert-bullets: #4b5563;
867
- --tw-prose-invert-hr: #374151;
868
- --tw-prose-invert-quotes: #f3f4f6;
869
- --tw-prose-invert-quote-borders: #374151;
870
- --tw-prose-invert-captions: #9ca3af;
871
- --tw-prose-invert-code: #fff;
872
- --tw-prose-invert-pre-code: #d1d5db;
873
- --tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);
874
- --tw-prose-invert-th-borders: #4b5563;
875
- --tw-prose-invert-td-borders: #374151;
876
- font-size: 1rem;
877
- line-height: 1.75;
878
- }
879
- .prose :where(video):not(:where([class~="not-prose"] *)) {
880
- margin-top: 2em;
881
- margin-bottom: 2em;
882
- }
883
- .prose :where(figure):not(:where([class~="not-prose"] *)) {
884
- margin-top: 2em;
885
- margin-bottom: 2em;
886
- }
887
- .prose :where(li):not(:where([class~="not-prose"] *)) {
888
- margin-top: 0.5em;
889
- margin-bottom: 0.5em;
890
- }
891
- .prose :where(ol > li):not(:where([class~="not-prose"] *)) {
892
- padding-left: 0.375em;
893
- }
894
- .prose :where(ul > li):not(:where([class~="not-prose"] *)) {
895
- padding-left: 0.375em;
896
- }
897
- .prose :where(.prose > ul > li p):not(:where([class~="not-prose"] *)) {
898
- margin-top: 0.75em;
899
- margin-bottom: 0.75em;
900
- }
901
- .prose :where(.prose > ul > li > *:first-child):not(:where([class~="not-prose"] *)) {
902
- margin-top: 1.25em;
903
- }
904
- .prose :where(.prose > ul > li > *:last-child):not(:where([class~="not-prose"] *)) {
905
- margin-bottom: 1.25em;
906
- }
907
- .prose :where(.prose > ol > li > *:first-child):not(:where([class~="not-prose"] *)) {
908
- margin-top: 1.25em;
909
- }
910
- .prose :where(.prose > ol > li > *:last-child):not(:where([class~="not-prose"] *)) {
911
- margin-bottom: 1.25em;
912
- }
913
- .prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"] *)) {
914
- margin-top: 0.75em;
915
- margin-bottom: 0.75em;
916
- }
917
- .prose :where(hr + *):not(:where([class~="not-prose"] *)) {
918
- margin-top: 0;
919
- }
920
- .prose :where(h2 + *):not(:where([class~="not-prose"] *)) {
921
- margin-top: 0;
922
- }
923
- .prose :where(h3 + *):not(:where([class~="not-prose"] *)) {
924
- margin-top: 0;
925
- }
926
- .prose :where(h4 + *):not(:where([class~="not-prose"] *)) {
927
- margin-top: 0;
928
- }
929
- .prose :where(thead th:first-child):not(:where([class~="not-prose"] *)) {
930
- padding-left: 0;
931
- }
932
- .prose :where(thead th:last-child):not(:where([class~="not-prose"] *)) {
933
- padding-right: 0;
934
- }
935
- .prose :where(tbody td, tfoot td):not(:where([class~="not-prose"] *)) {
936
- padding-top: 0.5714286em;
937
- padding-right: 0.5714286em;
938
- padding-bottom: 0.5714286em;
939
- padding-left: 0.5714286em;
940
- }
941
- .prose :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"] *)) {
942
- padding-left: 0;
943
- }
944
- .prose :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"] *)) {
945
- padding-right: 0;
946
- }
947
- .prose :where(.prose > :first-child):not(:where([class~="not-prose"] *)) {
948
- margin-top: 0;
949
- }
950
- .prose :where(.prose > :last-child):not(:where([class~="not-prose"] *)) {
951
- margin-bottom: 0;
952
- }
953
- .prose-base {
954
- font-size: 1rem;
955
- line-height: 1.75;
956
- }
957
- .prose-base :where(p):not(:where([class~="not-prose"] *)) {
958
- margin-top: 1.25em;
959
- margin-bottom: 1.25em;
960
- }
961
- .prose-base :where([class~="lead"]):not(:where([class~="not-prose"] *)) {
962
- font-size: 1.25em;
963
- line-height: 1.6;
964
- margin-top: 1.2em;
965
- margin-bottom: 1.2em;
966
- }
967
- .prose-base :where(blockquote):not(:where([class~="not-prose"] *)) {
968
- margin-top: 1.6em;
969
- margin-bottom: 1.6em;
970
- padding-left: 1em;
971
- }
972
- .prose-base :where(h1):not(:where([class~="not-prose"] *)) {
973
- font-size: 2.25em;
974
- margin-top: 0;
975
- margin-bottom: 0.8888889em;
976
- line-height: 1.1111111;
977
- }
978
- .prose-base :where(h2):not(:where([class~="not-prose"] *)) {
979
- font-size: 1.5em;
980
- margin-top: 2em;
981
- margin-bottom: 1em;
982
- line-height: 1.3333333;
983
- }
984
- .prose-base :where(h3):not(:where([class~="not-prose"] *)) {
985
- font-size: 1.25em;
986
- margin-top: 1.6em;
987
- margin-bottom: 0.6em;
988
- line-height: 1.6;
989
- }
990
- .prose-base :where(h4):not(:where([class~="not-prose"] *)) {
991
- margin-top: 1.5em;
992
- margin-bottom: 0.5em;
993
- line-height: 1.5;
994
- }
995
- .prose-base :where(img):not(:where([class~="not-prose"] *)) {
996
- margin-top: 2em;
997
- margin-bottom: 2em;
998
- }
999
- .prose-base :where(video):not(:where([class~="not-prose"] *)) {
1000
- margin-top: 2em;
1001
- margin-bottom: 2em;
1002
- }
1003
- .prose-base :where(figure):not(:where([class~="not-prose"] *)) {
1004
- margin-top: 2em;
1005
- margin-bottom: 2em;
1006
- }
1007
- .prose-base :where(figure > *):not(:where([class~="not-prose"] *)) {
1008
- margin-top: 0;
1009
- margin-bottom: 0;
1010
- }
1011
- .prose-base :where(figcaption):not(:where([class~="not-prose"] *)) {
1012
- font-size: 0.875em;
1013
- line-height: 1.4285714;
1014
- margin-top: 0.8571429em;
1015
- }
1016
- .prose-base :where(code):not(:where([class~="not-prose"] *)) {
1017
- font-size: 0.875em;
1018
- }
1019
- .prose-base :where(h2 code):not(:where([class~="not-prose"] *)) {
1020
- font-size: 0.875em;
1021
- }
1022
- .prose-base :where(h3 code):not(:where([class~="not-prose"] *)) {
1023
- font-size: 0.9em;
1024
- }
1025
- .prose-base :where(pre):not(:where([class~="not-prose"] *)) {
1026
- font-size: 0.875em;
1027
- line-height: 1.7142857;
1028
- margin-top: 1.7142857em;
1029
- margin-bottom: 1.7142857em;
1030
- border-radius: 0.375rem;
1031
- padding-top: 0.8571429em;
1032
- padding-right: 1.1428571em;
1033
- padding-bottom: 0.8571429em;
1034
- padding-left: 1.1428571em;
1035
- }
1036
- .prose-base :where(ol):not(:where([class~="not-prose"] *)) {
1037
- margin-top: 1.25em;
1038
- margin-bottom: 1.25em;
1039
- padding-left: 1.625em;
1040
- }
1041
- .prose-base :where(ul):not(:where([class~="not-prose"] *)) {
1042
- margin-top: 1.25em;
1043
- margin-bottom: 1.25em;
1044
- padding-left: 1.625em;
1045
- }
1046
- .prose-base :where(li):not(:where([class~="not-prose"] *)) {
1047
- margin-top: 0.5em;
1048
- margin-bottom: 0.5em;
1049
- }
1050
- .prose-base :where(ol > li):not(:where([class~="not-prose"] *)) {
1051
- padding-left: 0.375em;
1052
- }
1053
- .prose-base :where(ul > li):not(:where([class~="not-prose"] *)) {
1054
- padding-left: 0.375em;
1055
- }
1056
- .prose-base :where(.prose-base > ul > li p):not(:where([class~="not-prose"] *)) {
1057
- margin-top: 0.75em;
1058
- margin-bottom: 0.75em;
1059
- }
1060
- .prose-base :where(.prose-base > ul > li > *:first-child):not(:where([class~="not-prose"] *)) {
1061
- margin-top: 1.25em;
1062
- }
1063
- .prose-base :where(.prose-base > ul > li > *:last-child):not(:where([class~="not-prose"] *)) {
1064
- margin-bottom: 1.25em;
1065
- }
1066
- .prose-base :where(.prose-base > ol > li > *:first-child):not(:where([class~="not-prose"] *)) {
1067
- margin-top: 1.25em;
1068
- }
1069
- .prose-base :where(.prose-base > ol > li > *:last-child):not(:where([class~="not-prose"] *)) {
1070
- margin-bottom: 1.25em;
1071
- }
1072
- .prose-base :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"] *)) {
1073
- margin-top: 0.75em;
1074
- margin-bottom: 0.75em;
1075
- }
1076
- .prose-base :where(hr):not(:where([class~="not-prose"] *)) {
1077
- margin-top: 3em;
1078
- margin-bottom: 3em;
1079
- }
1080
- .prose-base :where(hr + *):not(:where([class~="not-prose"] *)) {
1081
- margin-top: 0;
1082
- }
1083
- .prose-base :where(h2 + *):not(:where([class~="not-prose"] *)) {
1084
- margin-top: 0;
1085
- }
1086
- .prose-base :where(h3 + *):not(:where([class~="not-prose"] *)) {
1087
- margin-top: 0;
1088
- }
1089
- .prose-base :where(h4 + *):not(:where([class~="not-prose"] *)) {
1090
- margin-top: 0;
1091
- }
1092
- .prose-base :where(table):not(:where([class~="not-prose"] *)) {
1093
- font-size: 0.875em;
1094
- line-height: 1.7142857;
1095
- }
1096
- .prose-base :where(thead th):not(:where([class~="not-prose"] *)) {
1097
- padding-right: 0.5714286em;
1098
- padding-bottom: 0.5714286em;
1099
- padding-left: 0.5714286em;
1100
- }
1101
- .prose-base :where(thead th:first-child):not(:where([class~="not-prose"] *)) {
1102
- padding-left: 0;
1103
- }
1104
- .prose-base :where(thead th:last-child):not(:where([class~="not-prose"] *)) {
1105
- padding-right: 0;
1106
- }
1107
- .prose-base :where(tbody td, tfoot td):not(:where([class~="not-prose"] *)) {
1108
- padding-top: 0.5714286em;
1109
- padding-right: 0.5714286em;
1110
- padding-bottom: 0.5714286em;
1111
- padding-left: 0.5714286em;
1112
- }
1113
- .prose-base :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"] *)) {
1114
- padding-left: 0;
1115
- }
1116
- .prose-base :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"] *)) {
1117
- padding-right: 0;
1118
- }
1119
- .prose-base :where(.prose-base > :first-child):not(:where([class~="not-prose"] *)) {
1120
- margin-top: 0;
1121
- }
1122
- .prose-base :where(.prose-base > :last-child):not(:where([class~="not-prose"] *)) {
1123
- margin-bottom: 0;
594
+ .visible {
595
+ visibility: visible;
1124
596
  }
1125
597
  .relative {
1126
598
  position: relative;
@@ -1180,16 +652,19 @@ video {
1180
652
  .w-full {
1181
653
  width: 100%;
1182
654
  }
1183
- .\!max-w-none {
1184
- max-width: none !important;
1185
- }
1186
655
  .-rotate-90 {
1187
656
  --tw-rotate: -90deg;
1188
657
  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));
1189
658
  }
659
+ .cursor-not-allowed {
660
+ cursor: not-allowed;
661
+ }
1190
662
  .cursor-pointer {
1191
663
  cursor: pointer;
1192
664
  }
665
+ .resize {
666
+ resize: both;
667
+ }
1193
668
  .flex-row {
1194
669
  flex-direction: row;
1195
670
  }
@@ -1282,13 +757,6 @@ video {
1282
757
  .p-1\.5 {
1283
758
  padding: 0.375rem;
1284
759
  }
1285
- .p-4 {
1286
- padding: 1rem;
1287
- }
1288
- .px-1 {
1289
- padding-left: 0.25rem;
1290
- padding-right: 0.25rem;
1291
- }
1292
760
  .px-2 {
1293
761
  padding-left: 0.5rem;
1294
762
  padding-right: 0.5rem;
@@ -1343,6 +811,9 @@ video {
1343
811
  --tw-text-opacity: 1;
1344
812
  color: rgb(17 24 39 / var(--tw-text-opacity));
1345
813
  }
814
+ .opacity-70 {
815
+ opacity: 0.7;
816
+ }
1346
817
  .ring-2 {
1347
818
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
1348
819
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
@@ -1388,22 +859,1020 @@ video {
1388
859
  --tw-text-opacity: 1;
1389
860
  color: rgb(17 24 39 / var(--tw-text-opacity));
1390
861
  }
1391
- .prose-p\:mb-3 :is(:where(p):not(:where([class~="not-prose"] *))) {
1392
- margin-bottom: 0.75rem;
862
+ .resize-observer[data-v-b329ee4c]{position:absolute;top:0;left:0;z-index:-1;width:100%;height:100%;border:none;background-color:transparent;pointer-events:none;display:block;overflow:hidden;opacity:0}.resize-observer[data-v-b329ee4c] object{display:block;position:absolute;top:0;left:0;height:100%;width:100%;overflow:hidden;pointer-events:none;z-index:-1}.v-popper__popper{z-index:10000;top:0;left:0;outline:none}.v-popper__popper.v-popper__popper--hidden{visibility:hidden;opacity:0;transition:opacity .15s,visibility .15s;pointer-events:none}.v-popper__popper.v-popper__popper--shown{visibility:visible;opacity:1;transition:opacity .15s}.v-popper__popper.v-popper__popper--skip-transition,.v-popper__popper.v-popper__popper--skip-transition>.v-popper__wrapper{transition:none!important}.v-popper__backdrop{position:absolute;top:0;left:0;width:100%;height:100%;display:none}.v-popper__inner{position:relative;box-sizing:border-box;overflow-y:auto}.v-popper__inner>div{position:relative;z-index:1;max-width:inherit;max-height:inherit}.v-popper__arrow-container{position:absolute;width:10px;height:10px}.v-popper__popper--arrow-overflow .v-popper__arrow-container,.v-popper__popper--no-positioning .v-popper__arrow-container{display:none}.v-popper__arrow-inner,.v-popper__arrow-outer{border-style:solid;position:absolute;top:0;left:0;width:0;height:0}.v-popper__arrow-inner{visibility:hidden;border-width:7px}.v-popper__arrow-outer{border-width:6px}.v-popper__popper[data-popper-placement^=top] .v-popper__arrow-inner,.v-popper__popper[data-popper-placement^=bottom] .v-popper__arrow-inner{left:-2px}.v-popper__popper[data-popper-placement^=top] .v-popper__arrow-outer,.v-popper__popper[data-popper-placement^=bottom] .v-popper__arrow-outer{left:-1px}.v-popper__popper[data-popper-placement^=top] .v-popper__arrow-inner,.v-popper__popper[data-popper-placement^=top] .v-popper__arrow-outer{border-bottom-width:0;border-left-color:transparent!important;border-right-color:transparent!important;border-bottom-color:transparent!important}.v-popper__popper[data-popper-placement^=top] .v-popper__arrow-inner{top:-2px}.v-popper__popper[data-popper-placement^=bottom] .v-popper__arrow-container{top:0}.v-popper__popper[data-popper-placement^=bottom] .v-popper__arrow-inner,.v-popper__popper[data-popper-placement^=bottom] .v-popper__arrow-outer{border-top-width:0;border-left-color:transparent!important;border-right-color:transparent!important;border-top-color:transparent!important}.v-popper__popper[data-popper-placement^=bottom] .v-popper__arrow-inner{top:-4px}.v-popper__popper[data-popper-placement^=bottom] .v-popper__arrow-outer{top:-6px}.v-popper__popper[data-popper-placement^=left] .v-popper__arrow-inner,.v-popper__popper[data-popper-placement^=right] .v-popper__arrow-inner{top:-2px}.v-popper__popper[data-popper-placement^=left] .v-popper__arrow-outer,.v-popper__popper[data-popper-placement^=right] .v-popper__arrow-outer{top:-1px}.v-popper__popper[data-popper-placement^=right] .v-popper__arrow-inner,.v-popper__popper[data-popper-placement^=right] .v-popper__arrow-outer{border-left-width:0;border-left-color:transparent!important;border-top-color:transparent!important;border-bottom-color:transparent!important}.v-popper__popper[data-popper-placement^=right] .v-popper__arrow-inner{left:-4px}.v-popper__popper[data-popper-placement^=right] .v-popper__arrow-outer{left:-6px}.v-popper__popper[data-popper-placement^=left] .v-popper__arrow-container{right:-10px}.v-popper__popper[data-popper-placement^=left] .v-popper__arrow-inner,.v-popper__popper[data-popper-placement^=left] .v-popper__arrow-outer{border-right-width:0;border-top-color:transparent!important;border-right-color:transparent!important;border-bottom-color:transparent!important}.v-popper__popper[data-popper-placement^=left] .v-popper__arrow-inner{left:-2px}.v-popper--theme-dropdown .v-popper__inner{background:#fff;color:#000;border-radius:6px;border:1px solid #ddd;box-shadow:0 6px 30px #0000001a}.v-popper--theme-dropdown .v-popper__arrow-inner{visibility:visible;border-color:#fff}.v-popper--theme-dropdown .v-popper__arrow-outer{border-color:#ddd}.v-popper--theme-tooltip .v-popper__inner{background:rgba(0,0,0,.8);color:#fff;border-radius:6px;padding:7px 12px 6px}.v-popper--theme-tooltip .v-popper__arrow-outer{border-color:#000c}
863
+ .markdown-body {
864
+ -ms-text-size-adjust: 100%;
865
+ -webkit-text-size-adjust: 100%;
866
+ margin: 0;
867
+ color: #24292f;
868
+ background-color: #ffffff;
869
+ font-family: -apple-system,BlinkMacSystemFont,"Segoe UI","Noto Sans",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";
870
+ font-size: 16px;
871
+ line-height: 1.5;
872
+ word-wrap: break-word;
873
+ }
874
+
875
+ .markdown-body .octicon {
876
+ display: inline-block;
877
+ fill: currentColor;
878
+ vertical-align: text-bottom;
879
+ }
880
+
881
+ .markdown-body h1:hover .anchor .octicon-link:before,
882
+ .markdown-body h2:hover .anchor .octicon-link:before,
883
+ .markdown-body h3:hover .anchor .octicon-link:before,
884
+ .markdown-body h4:hover .anchor .octicon-link:before,
885
+ .markdown-body h5:hover .anchor .octicon-link:before,
886
+ .markdown-body h6:hover .anchor .octicon-link:before {
887
+ width: 16px;
888
+ height: 16px;
889
+ content: ' ';
890
+ display: inline-block;
891
+ background-color: currentColor;
892
+ -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' version='1.1' aria-hidden='true'><path fill-rule='evenodd' d='M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z'></path></svg>");
893
+ mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' version='1.1' aria-hidden='true'><path fill-rule='evenodd' d='M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z'></path></svg>");
1393
894
  }
1394
- .prose-p\:mt-3 :is(:where(p):not(:where([class~="not-prose"] *))) {
1395
- margin-top: 0.75rem;
895
+
896
+ .markdown-body details,
897
+ .markdown-body figcaption,
898
+ .markdown-body figure {
899
+ display: block;
1396
900
  }
1397
- .prose-pre\:p-0 :is(:where(pre):not(:where([class~="not-prose"] *))) {
1398
- padding: 0px;
901
+
902
+ .markdown-body summary {
903
+ display: list-item;
1399
904
  }
1400
- .prose-img\:mb-0 :is(:where(img):not(:where([class~="not-prose"] *))) {
1401
- margin-bottom: 0px;
905
+
906
+ .markdown-body [hidden] {
907
+ display: none !important;
1402
908
  }
1403
- .prose-img\:mt-0 :is(:where(img):not(:where([class~="not-prose"] *))) {
1404
- margin-top: 0px;
909
+
910
+ .markdown-body a {
911
+ background-color: transparent;
912
+ color: #0969da;
913
+ text-decoration: none;
914
+ }
915
+
916
+ .markdown-body abbr[title] {
917
+ border-bottom: none;
918
+ -webkit-text-decoration: underline dotted;
919
+ text-decoration: underline dotted;
920
+ }
921
+
922
+ .markdown-body b,
923
+ .markdown-body strong {
924
+ font-weight: 600;
925
+ }
926
+
927
+ .markdown-body dfn {
928
+ font-style: italic;
929
+ }
930
+
931
+ .markdown-body h1 {
932
+ margin: .67em 0;
933
+ font-weight: 600;
934
+ padding-bottom: .3em;
935
+ font-size: 2em;
936
+ border-bottom: 1px solid hsla(210,18%,87%,1);
937
+ }
938
+
939
+ .markdown-body mark {
940
+ background-color: #fff8c5;
941
+ color: #24292f;
942
+ }
943
+
944
+ .markdown-body small {
945
+ font-size: 90%;
946
+ }
947
+
948
+ .markdown-body sub,
949
+ .markdown-body sup {
950
+ font-size: 75%;
951
+ line-height: 0;
952
+ position: relative;
953
+ vertical-align: baseline;
954
+ }
955
+
956
+ .markdown-body sub {
957
+ bottom: -0.25em;
958
+ }
959
+
960
+ .markdown-body sup {
961
+ top: -0.5em;
962
+ }
963
+
964
+ .markdown-body img {
965
+ border-style: none;
966
+ max-width: 100%;
967
+ box-sizing: content-box;
968
+ background-color: #ffffff;
969
+ }
970
+
971
+ .markdown-body code,
972
+ .markdown-body kbd,
973
+ .markdown-body pre,
974
+ .markdown-body samp {
975
+ font-family: monospace;
976
+ font-size: 1em;
977
+ }
978
+
979
+ .markdown-body figure {
980
+ margin: 1em 40px;
981
+ }
982
+
983
+ .markdown-body hr {
984
+ box-sizing: content-box;
985
+ overflow: hidden;
986
+ background: transparent;
987
+ border-bottom: 1px solid hsla(210,18%,87%,1);
988
+ height: .25em;
989
+ padding: 0;
990
+ margin: 24px 0;
991
+ background-color: #d0d7de;
992
+ border: 0;
993
+ }
994
+
995
+ .markdown-body input {
996
+ font: inherit;
997
+ margin: 0;
998
+ overflow: visible;
999
+ font-family: inherit;
1000
+ font-size: inherit;
1001
+ line-height: inherit;
1002
+ }
1003
+
1004
+ .markdown-body [type=button],
1005
+ .markdown-body [type=reset],
1006
+ .markdown-body [type=submit] {
1007
+ -webkit-appearance: button;
1008
+ }
1009
+
1010
+ .markdown-body [type=checkbox],
1011
+ .markdown-body [type=radio] {
1012
+ box-sizing: border-box;
1013
+ padding: 0;
1014
+ }
1015
+
1016
+ .markdown-body [type=number]::-webkit-inner-spin-button,
1017
+ .markdown-body [type=number]::-webkit-outer-spin-button {
1018
+ height: auto;
1019
+ }
1020
+
1021
+ .markdown-body [type=search]::-webkit-search-cancel-button,
1022
+ .markdown-body [type=search]::-webkit-search-decoration {
1023
+ -webkit-appearance: none;
1024
+ }
1025
+
1026
+ .markdown-body ::-webkit-input-placeholder {
1027
+ color: inherit;
1028
+ opacity: .54;
1029
+ }
1030
+
1031
+ .markdown-body ::-webkit-file-upload-button {
1032
+ -webkit-appearance: button;
1033
+ font: inherit;
1034
+ }
1035
+
1036
+ .markdown-body a:hover {
1037
+ text-decoration: underline;
1038
+ }
1039
+
1040
+ .markdown-body ::-moz-placeholder {
1041
+ color: #6e7781;
1042
+ opacity: 1;
1043
+ }
1044
+
1045
+ .markdown-body ::placeholder {
1046
+ color: #6e7781;
1047
+ opacity: 1;
1048
+ }
1049
+
1050
+ .markdown-body hr::before {
1051
+ display: table;
1052
+ content: "";
1053
+ }
1054
+
1055
+ .markdown-body hr::after {
1056
+ display: table;
1057
+ clear: both;
1058
+ content: "";
1059
+ }
1060
+
1061
+ .markdown-body table {
1062
+ border-spacing: 0;
1063
+ border-collapse: collapse;
1064
+ display: block;
1065
+ width: -moz-max-content;
1066
+ width: max-content;
1067
+ max-width: 100%;
1068
+ overflow: auto;
1069
+ }
1070
+
1071
+ .markdown-body td,
1072
+ .markdown-body th {
1073
+ padding: 0;
1074
+ }
1075
+
1076
+ .markdown-body details summary {
1077
+ cursor: pointer;
1078
+ }
1079
+
1080
+ .markdown-body details:not([open])>*:not(summary) {
1081
+ display: none !important;
1082
+ }
1083
+
1084
+ .markdown-body a:focus,
1085
+ .markdown-body [role=button]:focus,
1086
+ .markdown-body input[type=radio]:focus,
1087
+ .markdown-body input[type=checkbox]:focus {
1088
+ outline: 2px solid #0969da;
1089
+ outline-offset: -2px;
1090
+ box-shadow: none;
1091
+ }
1092
+
1093
+ .markdown-body a:focus:not(:focus-visible),
1094
+ .markdown-body [role=button]:focus:not(:focus-visible),
1095
+ .markdown-body input[type=radio]:focus:not(:focus-visible),
1096
+ .markdown-body input[type=checkbox]:focus:not(:focus-visible) {
1097
+ outline: solid 1px transparent;
1098
+ }
1099
+
1100
+ .markdown-body a:focus-visible,
1101
+ .markdown-body [role=button]:focus-visible,
1102
+ .markdown-body input[type=radio]:focus-visible,
1103
+ .markdown-body input[type=checkbox]:focus-visible {
1104
+ outline: 2px solid #0969da;
1105
+ outline-offset: -2px;
1106
+ box-shadow: none;
1107
+ }
1108
+
1109
+ .markdown-body a:not([class]):focus,
1110
+ .markdown-body a:not([class]):focus-visible,
1111
+ .markdown-body input[type=radio]:focus,
1112
+ .markdown-body input[type=radio]:focus-visible,
1113
+ .markdown-body input[type=checkbox]:focus,
1114
+ .markdown-body input[type=checkbox]:focus-visible {
1115
+ outline-offset: 0;
1116
+ }
1117
+
1118
+ .markdown-body kbd {
1119
+ display: inline-block;
1120
+ padding: 3px 5px;
1121
+ font: 11px ui-monospace,SFMono-Regular,SF Mono,Menlo,Consolas,Liberation Mono,monospace;
1122
+ line-height: 10px;
1123
+ color: #24292f;
1124
+ vertical-align: middle;
1125
+ background-color: #f6f8fa;
1126
+ border: solid 1px rgba(175,184,193,0.2);
1127
+ border-bottom-color: rgba(175,184,193,0.2);
1128
+ border-radius: 6px;
1129
+ box-shadow: inset 0 -1px 0 rgba(175,184,193,0.2);
1130
+ }
1131
+
1132
+ .markdown-body h1,
1133
+ .markdown-body h2,
1134
+ .markdown-body h3,
1135
+ .markdown-body h4,
1136
+ .markdown-body h5,
1137
+ .markdown-body h6 {
1138
+ margin-top: 24px;
1139
+ margin-bottom: 16px;
1140
+ font-weight: 600;
1141
+ line-height: 1.25;
1142
+ }
1143
+
1144
+ .markdown-body h2 {
1145
+ font-weight: 600;
1146
+ padding-bottom: .3em;
1147
+ font-size: 1.5em;
1148
+ border-bottom: 1px solid hsla(210,18%,87%,1);
1149
+ }
1150
+
1151
+ .markdown-body h3 {
1152
+ font-weight: 600;
1153
+ font-size: 1.25em;
1154
+ }
1155
+
1156
+ .markdown-body h4 {
1157
+ font-weight: 600;
1158
+ font-size: 1em;
1159
+ }
1160
+
1161
+ .markdown-body h5 {
1162
+ font-weight: 600;
1163
+ font-size: .875em;
1164
+ }
1165
+
1166
+ .markdown-body h6 {
1167
+ font-weight: 600;
1168
+ font-size: .85em;
1169
+ color: #57606a;
1170
+ }
1171
+
1172
+ .markdown-body p {
1173
+ margin-top: 0;
1174
+ margin-bottom: 10px;
1175
+ }
1176
+
1177
+ .markdown-body blockquote {
1178
+ margin: 0;
1179
+ padding: 0 1em;
1180
+ color: #57606a;
1181
+ border-left: .25em solid #d0d7de;
1182
+ }
1183
+
1184
+ .markdown-body ul,
1185
+ .markdown-body ol {
1186
+ margin-top: 0;
1187
+ margin-bottom: 0;
1188
+ padding-left: 2em;
1189
+ }
1190
+
1191
+ .markdown-body ol ol,
1192
+ .markdown-body ul ol {
1193
+ list-style-type: lower-roman;
1194
+ }
1195
+
1196
+ .markdown-body ul ul ol,
1197
+ .markdown-body ul ol ol,
1198
+ .markdown-body ol ul ol,
1199
+ .markdown-body ol ol ol {
1200
+ list-style-type: lower-alpha;
1201
+ }
1202
+
1203
+ .markdown-body dd {
1204
+ margin-left: 0;
1205
+ }
1206
+
1207
+ .markdown-body tt,
1208
+ .markdown-body code,
1209
+ .markdown-body samp {
1210
+ font-family: ui-monospace,SFMono-Regular,SF Mono,Menlo,Consolas,Liberation Mono,monospace;
1211
+ font-size: 12px;
1212
+ }
1213
+
1214
+ .markdown-body pre {
1215
+ margin-top: 0;
1216
+ margin-bottom: 0;
1217
+ font-family: ui-monospace,SFMono-Regular,SF Mono,Menlo,Consolas,Liberation Mono,monospace;
1218
+ font-size: 12px;
1219
+ word-wrap: normal;
1220
+ }
1221
+
1222
+ .markdown-body .octicon {
1223
+ display: inline-block;
1224
+ overflow: visible !important;
1225
+ vertical-align: text-bottom;
1226
+ fill: currentColor;
1227
+ }
1228
+
1229
+ .markdown-body input::-webkit-outer-spin-button,
1230
+ .markdown-body input::-webkit-inner-spin-button {
1231
+ margin: 0;
1232
+ -webkit-appearance: none;
1233
+ appearance: none;
1234
+ }
1235
+
1236
+ .markdown-body::before {
1237
+ display: table;
1238
+ content: "";
1239
+ }
1240
+
1241
+ .markdown-body::after {
1242
+ display: table;
1243
+ clear: both;
1244
+ content: "";
1245
+ }
1246
+
1247
+ .markdown-body>*:first-child {
1248
+ margin-top: 0 !important;
1249
+ }
1250
+
1251
+ .markdown-body>*:last-child {
1252
+ margin-bottom: 0 !important;
1253
+ }
1254
+
1255
+ .markdown-body a:not([href]) {
1256
+ color: inherit;
1257
+ text-decoration: none;
1258
+ }
1259
+
1260
+ .markdown-body .absent {
1261
+ color: #cf222e;
1262
+ }
1263
+
1264
+ .markdown-body .anchor {
1265
+ float: left;
1266
+ padding-right: 4px;
1267
+ margin-left: -20px;
1268
+ line-height: 1;
1269
+ }
1270
+
1271
+ .markdown-body .anchor:focus {
1272
+ outline: none;
1273
+ }
1274
+
1275
+ .markdown-body p,
1276
+ .markdown-body blockquote,
1277
+ .markdown-body ul,
1278
+ .markdown-body ol,
1279
+ .markdown-body dl,
1280
+ .markdown-body table,
1281
+ .markdown-body pre,
1282
+ .markdown-body details {
1283
+ margin-top: 0;
1284
+ margin-bottom: 16px;
1285
+ }
1286
+
1287
+ .markdown-body blockquote>:first-child {
1288
+ margin-top: 0;
1289
+ }
1290
+
1291
+ .markdown-body blockquote>:last-child {
1292
+ margin-bottom: 0;
1293
+ }
1294
+
1295
+ .markdown-body h1 .octicon-link,
1296
+ .markdown-body h2 .octicon-link,
1297
+ .markdown-body h3 .octicon-link,
1298
+ .markdown-body h4 .octicon-link,
1299
+ .markdown-body h5 .octicon-link,
1300
+ .markdown-body h6 .octicon-link {
1301
+ color: #24292f;
1302
+ vertical-align: middle;
1303
+ visibility: hidden;
1304
+ }
1305
+
1306
+ .markdown-body h1:hover .anchor,
1307
+ .markdown-body h2:hover .anchor,
1308
+ .markdown-body h3:hover .anchor,
1309
+ .markdown-body h4:hover .anchor,
1310
+ .markdown-body h5:hover .anchor,
1311
+ .markdown-body h6:hover .anchor {
1312
+ text-decoration: none;
1313
+ }
1314
+
1315
+ .markdown-body h1:hover .anchor .octicon-link,
1316
+ .markdown-body h2:hover .anchor .octicon-link,
1317
+ .markdown-body h3:hover .anchor .octicon-link,
1318
+ .markdown-body h4:hover .anchor .octicon-link,
1319
+ .markdown-body h5:hover .anchor .octicon-link,
1320
+ .markdown-body h6:hover .anchor .octicon-link {
1321
+ visibility: visible;
1322
+ }
1323
+
1324
+ .markdown-body h1 tt,
1325
+ .markdown-body h1 code,
1326
+ .markdown-body h2 tt,
1327
+ .markdown-body h2 code,
1328
+ .markdown-body h3 tt,
1329
+ .markdown-body h3 code,
1330
+ .markdown-body h4 tt,
1331
+ .markdown-body h4 code,
1332
+ .markdown-body h5 tt,
1333
+ .markdown-body h5 code,
1334
+ .markdown-body h6 tt,
1335
+ .markdown-body h6 code {
1336
+ padding: 0 .2em;
1337
+ font-size: inherit;
1338
+ }
1339
+
1340
+ .markdown-body summary h1,
1341
+ .markdown-body summary h2,
1342
+ .markdown-body summary h3,
1343
+ .markdown-body summary h4,
1344
+ .markdown-body summary h5,
1345
+ .markdown-body summary h6 {
1346
+ display: inline-block;
1347
+ }
1348
+
1349
+ .markdown-body summary h1 .anchor,
1350
+ .markdown-body summary h2 .anchor,
1351
+ .markdown-body summary h3 .anchor,
1352
+ .markdown-body summary h4 .anchor,
1353
+ .markdown-body summary h5 .anchor,
1354
+ .markdown-body summary h6 .anchor {
1355
+ margin-left: -40px;
1356
+ }
1357
+
1358
+ .markdown-body summary h1,
1359
+ .markdown-body summary h2 {
1360
+ padding-bottom: 0;
1361
+ border-bottom: 0;
1362
+ }
1363
+
1364
+ .markdown-body ul.no-list,
1365
+ .markdown-body ol.no-list {
1366
+ padding: 0;
1367
+ list-style-type: none;
1368
+ }
1369
+
1370
+ .markdown-body ol[type=a] {
1371
+ list-style-type: lower-alpha;
1372
+ }
1373
+
1374
+ .markdown-body ol[type=A] {
1375
+ list-style-type: upper-alpha;
1376
+ }
1377
+
1378
+ .markdown-body ol[type=i] {
1379
+ list-style-type: lower-roman;
1380
+ }
1381
+
1382
+ .markdown-body ol[type=I] {
1383
+ list-style-type: upper-roman;
1384
+ }
1385
+
1386
+ .markdown-body ol[type="1"] {
1387
+ list-style-type: decimal;
1388
+ }
1389
+
1390
+ .markdown-body div>ol:not([type]) {
1391
+ list-style-type: decimal;
1392
+ }
1393
+
1394
+ .markdown-body ul ul,
1395
+ .markdown-body ul ol,
1396
+ .markdown-body ol ol,
1397
+ .markdown-body ol ul {
1398
+ margin-top: 0;
1399
+ margin-bottom: 0;
1400
+ }
1401
+
1402
+ .markdown-body li>p {
1403
+ margin-top: 16px;
1404
+ }
1405
+
1406
+ .markdown-body li+li {
1407
+ margin-top: .25em;
1408
+ }
1409
+
1410
+ .markdown-body dl {
1411
+ padding: 0;
1412
+ }
1413
+
1414
+ .markdown-body dl dt {
1415
+ padding: 0;
1416
+ margin-top: 16px;
1417
+ font-size: 1em;
1418
+ font-style: italic;
1419
+ font-weight: 600;
1420
+ }
1421
+
1422
+ .markdown-body dl dd {
1423
+ padding: 0 16px;
1424
+ margin-bottom: 16px;
1425
+ }
1426
+
1427
+ .markdown-body table th {
1428
+ font-weight: 600;
1429
+ }
1430
+
1431
+ .markdown-body table th,
1432
+ .markdown-body table td {
1433
+ padding: 6px 13px;
1434
+ border: 1px solid #d0d7de;
1435
+ }
1436
+
1437
+ .markdown-body table tr {
1438
+ background-color: #ffffff;
1439
+ border-top: 1px solid hsla(210,18%,87%,1);
1440
+ }
1441
+
1442
+ .markdown-body table tr:nth-child(2n) {
1443
+ background-color: #f6f8fa;
1444
+ }
1445
+
1446
+ .markdown-body table img {
1447
+ background-color: transparent;
1448
+ }
1449
+
1450
+ .markdown-body img[align=right] {
1451
+ padding-left: 20px;
1452
+ }
1453
+
1454
+ .markdown-body img[align=left] {
1455
+ padding-right: 20px;
1456
+ }
1457
+
1458
+ .markdown-body .emoji {
1459
+ max-width: none;
1460
+ vertical-align: text-top;
1461
+ background-color: transparent;
1462
+ }
1463
+
1464
+ .markdown-body span.frame {
1465
+ display: block;
1466
+ overflow: hidden;
1467
+ }
1468
+
1469
+ .markdown-body span.frame>span {
1470
+ display: block;
1471
+ float: left;
1472
+ width: auto;
1473
+ padding: 7px;
1474
+ margin: 13px 0 0;
1475
+ overflow: hidden;
1476
+ border: 1px solid #d0d7de;
1477
+ }
1478
+
1479
+ .markdown-body span.frame span img {
1480
+ display: block;
1481
+ float: left;
1482
+ }
1483
+
1484
+ .markdown-body span.frame span span {
1485
+ display: block;
1486
+ padding: 5px 0 0;
1487
+ clear: both;
1488
+ color: #24292f;
1489
+ }
1490
+
1491
+ .markdown-body span.align-center {
1492
+ display: block;
1493
+ overflow: hidden;
1494
+ clear: both;
1495
+ }
1496
+
1497
+ .markdown-body span.align-center>span {
1498
+ display: block;
1499
+ margin: 13px auto 0;
1500
+ overflow: hidden;
1501
+ text-align: center;
1502
+ }
1503
+
1504
+ .markdown-body span.align-center span img {
1505
+ margin: 0 auto;
1506
+ text-align: center;
1507
+ }
1508
+
1509
+ .markdown-body span.align-right {
1510
+ display: block;
1511
+ overflow: hidden;
1512
+ clear: both;
1513
+ }
1514
+
1515
+ .markdown-body span.align-right>span {
1516
+ display: block;
1517
+ margin: 13px 0 0;
1518
+ overflow: hidden;
1519
+ text-align: right;
1520
+ }
1521
+
1522
+ .markdown-body span.align-right span img {
1523
+ margin: 0;
1524
+ text-align: right;
1525
+ }
1526
+
1527
+ .markdown-body span.float-left {
1528
+ display: block;
1529
+ float: left;
1530
+ margin-right: 13px;
1531
+ overflow: hidden;
1532
+ }
1533
+
1534
+ .markdown-body span.float-left span {
1535
+ margin: 13px 0 0;
1536
+ }
1537
+
1538
+ .markdown-body span.float-right {
1539
+ display: block;
1540
+ float: right;
1541
+ margin-left: 13px;
1542
+ overflow: hidden;
1543
+ }
1544
+
1545
+ .markdown-body span.float-right>span {
1546
+ display: block;
1547
+ margin: 13px auto 0;
1548
+ overflow: hidden;
1549
+ text-align: right;
1550
+ }
1551
+
1552
+ .markdown-body code,
1553
+ .markdown-body tt {
1554
+ padding: .2em .4em;
1555
+ margin: 0;
1556
+ font-size: 85%;
1557
+ white-space: break-spaces;
1558
+ background-color: rgba(175,184,193,0.2);
1559
+ border-radius: 6px;
1560
+ }
1561
+
1562
+ .markdown-body code br,
1563
+ .markdown-body tt br {
1564
+ display: none;
1565
+ }
1566
+
1567
+ .markdown-body del code {
1568
+ text-decoration: inherit;
1569
+ }
1570
+
1571
+ .markdown-body samp {
1572
+ font-size: 85%;
1573
+ }
1574
+
1575
+ .markdown-body pre code {
1576
+ font-size: 100%;
1577
+ }
1578
+
1579
+ .markdown-body pre>code {
1580
+ padding: 0;
1581
+ margin: 0;
1582
+ word-break: normal;
1583
+ white-space: pre;
1584
+ background: transparent;
1585
+ border: 0;
1586
+ }
1587
+
1588
+ .markdown-body .highlight {
1589
+ margin-bottom: 16px;
1590
+ }
1591
+
1592
+ .markdown-body .highlight pre {
1593
+ margin-bottom: 0;
1594
+ word-break: normal;
1595
+ }
1596
+
1597
+ .markdown-body .highlight pre,
1598
+ .markdown-body pre {
1599
+ padding: 16px;
1600
+ overflow: auto;
1601
+ font-size: 85%;
1602
+ line-height: 1.45;
1603
+ background-color: #f6f8fa;
1604
+ border-radius: 6px;
1605
+ }
1606
+
1607
+ .markdown-body pre code,
1608
+ .markdown-body pre tt {
1609
+ display: inline;
1610
+ max-width: auto;
1611
+ padding: 0;
1612
+ margin: 0;
1613
+ overflow: visible;
1614
+ line-height: inherit;
1615
+ word-wrap: normal;
1616
+ background-color: transparent;
1617
+ border: 0;
1618
+ }
1619
+
1620
+ .markdown-body .csv-data td,
1621
+ .markdown-body .csv-data th {
1622
+ padding: 5px;
1623
+ overflow: hidden;
1624
+ font-size: 12px;
1625
+ line-height: 1;
1626
+ text-align: left;
1627
+ white-space: nowrap;
1628
+ }
1629
+
1630
+ .markdown-body .csv-data .blob-num {
1631
+ padding: 10px 8px 9px;
1632
+ text-align: right;
1633
+ background: #ffffff;
1634
+ border: 0;
1635
+ }
1636
+
1637
+ .markdown-body .csv-data tr {
1638
+ border-top: 0;
1639
+ }
1640
+
1641
+ .markdown-body .csv-data th {
1642
+ font-weight: 600;
1643
+ background: #f6f8fa;
1644
+ border-top: 0;
1645
+ }
1646
+
1647
+ .markdown-body [data-footnote-ref]::before {
1648
+ content: "[";
1649
+ }
1650
+
1651
+ .markdown-body [data-footnote-ref]::after {
1652
+ content: "]";
1653
+ }
1654
+
1655
+ .markdown-body .footnotes {
1656
+ font-size: 12px;
1657
+ color: #57606a;
1658
+ border-top: 1px solid #d0d7de;
1659
+ }
1660
+
1661
+ .markdown-body .footnotes ol {
1662
+ padding-left: 16px;
1663
+ }
1664
+
1665
+ .markdown-body .footnotes ol ul {
1666
+ display: inline-block;
1667
+ padding-left: 16px;
1668
+ margin-top: 16px;
1669
+ }
1670
+
1671
+ .markdown-body .footnotes li {
1672
+ position: relative;
1673
+ }
1674
+
1675
+ .markdown-body .footnotes li:target::before {
1676
+ position: absolute;
1677
+ top: -8px;
1678
+ right: -8px;
1679
+ bottom: -8px;
1680
+ left: -24px;
1681
+ pointer-events: none;
1682
+ content: "";
1683
+ border: 2px solid #0969da;
1684
+ border-radius: 6px;
1685
+ }
1686
+
1687
+ .markdown-body .footnotes li:target {
1688
+ color: #24292f;
1689
+ }
1690
+
1691
+ .markdown-body .footnotes .data-footnote-backref g-emoji {
1692
+ font-family: monospace;
1693
+ }
1694
+
1695
+ .markdown-body .pl-c {
1696
+ color: #6e7781;
1697
+ }
1698
+
1699
+ .markdown-body .pl-c1,
1700
+ .markdown-body .pl-s .pl-v {
1701
+ color: #0550ae;
1702
+ }
1703
+
1704
+ .markdown-body .pl-e,
1705
+ .markdown-body .pl-en {
1706
+ color: #8250df;
1707
+ }
1708
+
1709
+ .markdown-body .pl-smi,
1710
+ .markdown-body .pl-s .pl-s1 {
1711
+ color: #24292f;
1712
+ }
1713
+
1714
+ .markdown-body .pl-ent {
1715
+ color: #116329;
1716
+ }
1717
+
1718
+ .markdown-body .pl-k {
1719
+ color: #cf222e;
1720
+ }
1721
+
1722
+ .markdown-body .pl-s,
1723
+ .markdown-body .pl-pds,
1724
+ .markdown-body .pl-s .pl-pse .pl-s1,
1725
+ .markdown-body .pl-sr,
1726
+ .markdown-body .pl-sr .pl-cce,
1727
+ .markdown-body .pl-sr .pl-sre,
1728
+ .markdown-body .pl-sr .pl-sra {
1729
+ color: #0a3069;
1730
+ }
1731
+
1732
+ .markdown-body .pl-v,
1733
+ .markdown-body .pl-smw {
1734
+ color: #953800;
1735
+ }
1736
+
1737
+ .markdown-body .pl-bu {
1738
+ color: #82071e;
1739
+ }
1740
+
1741
+ .markdown-body .pl-ii {
1742
+ color: #f6f8fa;
1743
+ background-color: #82071e;
1744
+ }
1745
+
1746
+ .markdown-body .pl-c2 {
1747
+ color: #f6f8fa;
1748
+ background-color: #cf222e;
1749
+ }
1750
+
1751
+ .markdown-body .pl-sr .pl-cce {
1752
+ font-weight: bold;
1753
+ color: #116329;
1754
+ }
1755
+
1756
+ .markdown-body .pl-ml {
1757
+ color: #3b2300;
1758
+ }
1759
+
1760
+ .markdown-body .pl-mh,
1761
+ .markdown-body .pl-mh .pl-en,
1762
+ .markdown-body .pl-ms {
1763
+ font-weight: bold;
1764
+ color: #0550ae;
1765
+ }
1766
+
1767
+ .markdown-body .pl-mi {
1768
+ font-style: italic;
1769
+ color: #24292f;
1770
+ }
1771
+
1772
+ .markdown-body .pl-mb {
1773
+ font-weight: bold;
1774
+ color: #24292f;
1775
+ }
1776
+
1777
+ .markdown-body .pl-md {
1778
+ color: #82071e;
1779
+ background-color: #ffebe9;
1780
+ }
1781
+
1782
+ .markdown-body .pl-mi1 {
1783
+ color: #116329;
1784
+ background-color: #dafbe1;
1785
+ }
1786
+
1787
+ .markdown-body .pl-mc {
1788
+ color: #953800;
1789
+ background-color: #ffd8b5;
1790
+ }
1791
+
1792
+ .markdown-body .pl-mi2 {
1793
+ color: #eaeef2;
1794
+ background-color: #0550ae;
1795
+ }
1796
+
1797
+ .markdown-body .pl-mdr {
1798
+ font-weight: bold;
1799
+ color: #8250df;
1800
+ }
1801
+
1802
+ .markdown-body .pl-ba {
1803
+ color: #57606a;
1804
+ }
1805
+
1806
+ .markdown-body .pl-sg {
1807
+ color: #8c959f;
1808
+ }
1809
+
1810
+ .markdown-body .pl-corl {
1811
+ text-decoration: underline;
1812
+ color: #0a3069;
1813
+ }
1814
+
1815
+ .markdown-body g-emoji {
1816
+ display: inline-block;
1817
+ min-width: 1ch;
1818
+ font-family: "Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
1819
+ font-size: 1em;
1820
+ font-style: normal !important;
1821
+ font-weight: 400;
1822
+ line-height: 1;
1823
+ vertical-align: -0.075em;
1824
+ }
1825
+
1826
+ .markdown-body g-emoji img {
1827
+ width: 1em;
1828
+ height: 1em;
1829
+ }
1830
+
1831
+ .markdown-body .task-list-item {
1832
+ list-style-type: none;
1833
+ }
1834
+
1835
+ .markdown-body .task-list-item label {
1836
+ font-weight: 400;
1837
+ }
1838
+
1839
+ .markdown-body .task-list-item.enabled label {
1840
+ cursor: pointer;
1841
+ }
1842
+
1843
+ .markdown-body .task-list-item+.task-list-item {
1844
+ margin-top: 4px;
1845
+ }
1846
+
1847
+ .markdown-body .task-list-item .handle {
1848
+ display: none;
1849
+ }
1850
+
1851
+ .markdown-body .task-list-item-checkbox {
1852
+ margin: 0 .2em .25em -1.4em;
1853
+ vertical-align: middle;
1854
+ }
1855
+
1856
+ .markdown-body .contains-task-list:dir(rtl) .task-list-item-checkbox {
1857
+ margin: 0 -1.6em .25em .2em;
1858
+ }
1859
+
1860
+ .markdown-body .contains-task-list {
1861
+ position: relative;
1862
+ }
1863
+
1864
+ .markdown-body .contains-task-list:hover .task-list-item-convert-container,
1865
+ .markdown-body .contains-task-list:focus-within .task-list-item-convert-container {
1866
+ display: block;
1867
+ width: auto;
1868
+ height: 24px;
1869
+ overflow: visible;
1870
+ clip: auto;
1871
+ }
1872
+
1873
+ .markdown-body ::-webkit-calendar-picker-indicator {
1874
+ filter: invert(50%);
1405
1875
  }
1406
- .resize-observer[data-v-b329ee4c]{position:absolute;top:0;left:0;z-index:-1;width:100%;height:100%;border:none;background-color:transparent;pointer-events:none;display:block;overflow:hidden;opacity:0}.resize-observer[data-v-b329ee4c] object{display:block;position:absolute;top:0;left:0;height:100%;width:100%;overflow:hidden;pointer-events:none;z-index:-1}.v-popper__popper{z-index:10000;top:0;left:0;outline:none}.v-popper__popper.v-popper__popper--hidden{visibility:hidden;opacity:0;transition:opacity .15s,visibility .15s;pointer-events:none}.v-popper__popper.v-popper__popper--shown{visibility:visible;opacity:1;transition:opacity .15s}.v-popper__popper.v-popper__popper--skip-transition,.v-popper__popper.v-popper__popper--skip-transition>.v-popper__wrapper{transition:none!important}.v-popper__backdrop{position:absolute;top:0;left:0;width:100%;height:100%;display:none}.v-popper__inner{position:relative;box-sizing:border-box;overflow-y:auto}.v-popper__inner>div{position:relative;z-index:1;max-width:inherit;max-height:inherit}.v-popper__arrow-container{position:absolute;width:10px;height:10px}.v-popper__popper--arrow-overflow .v-popper__arrow-container,.v-popper__popper--no-positioning .v-popper__arrow-container{display:none}.v-popper__arrow-inner,.v-popper__arrow-outer{border-style:solid;position:absolute;top:0;left:0;width:0;height:0}.v-popper__arrow-inner{visibility:hidden;border-width:7px}.v-popper__arrow-outer{border-width:6px}.v-popper__popper[data-popper-placement^=top] .v-popper__arrow-inner,.v-popper__popper[data-popper-placement^=bottom] .v-popper__arrow-inner{left:-2px}.v-popper__popper[data-popper-placement^=top] .v-popper__arrow-outer,.v-popper__popper[data-popper-placement^=bottom] .v-popper__arrow-outer{left:-1px}.v-popper__popper[data-popper-placement^=top] .v-popper__arrow-inner,.v-popper__popper[data-popper-placement^=top] .v-popper__arrow-outer{border-bottom-width:0;border-left-color:transparent!important;border-right-color:transparent!important;border-bottom-color:transparent!important}.v-popper__popper[data-popper-placement^=top] .v-popper__arrow-inner{top:-2px}.v-popper__popper[data-popper-placement^=bottom] .v-popper__arrow-container{top:0}.v-popper__popper[data-popper-placement^=bottom] .v-popper__arrow-inner,.v-popper__popper[data-popper-placement^=bottom] .v-popper__arrow-outer{border-top-width:0;border-left-color:transparent!important;border-right-color:transparent!important;border-top-color:transparent!important}.v-popper__popper[data-popper-placement^=bottom] .v-popper__arrow-inner{top:-4px}.v-popper__popper[data-popper-placement^=bottom] .v-popper__arrow-outer{top:-6px}.v-popper__popper[data-popper-placement^=left] .v-popper__arrow-inner,.v-popper__popper[data-popper-placement^=right] .v-popper__arrow-inner{top:-2px}.v-popper__popper[data-popper-placement^=left] .v-popper__arrow-outer,.v-popper__popper[data-popper-placement^=right] .v-popper__arrow-outer{top:-1px}.v-popper__popper[data-popper-placement^=right] .v-popper__arrow-inner,.v-popper__popper[data-popper-placement^=right] .v-popper__arrow-outer{border-left-width:0;border-left-color:transparent!important;border-top-color:transparent!important;border-bottom-color:transparent!important}.v-popper__popper[data-popper-placement^=right] .v-popper__arrow-inner{left:-4px}.v-popper__popper[data-popper-placement^=right] .v-popper__arrow-outer{left:-6px}.v-popper__popper[data-popper-placement^=left] .v-popper__arrow-container{right:-10px}.v-popper__popper[data-popper-placement^=left] .v-popper__arrow-inner,.v-popper__popper[data-popper-placement^=left] .v-popper__arrow-outer{border-right-width:0;border-top-color:transparent!important;border-right-color:transparent!important;border-bottom-color:transparent!important}.v-popper__popper[data-popper-placement^=left] .v-popper__arrow-inner{left:-2px}.v-popper--theme-dropdown .v-popper__inner{background:#fff;color:#000;border-radius:6px;border:1px solid #ddd;box-shadow:0 6px 30px #0000001a}.v-popper--theme-dropdown .v-popper__arrow-inner{visibility:visible;border-color:#fff}.v-popper--theme-dropdown .v-popper__arrow-outer{border-color:#ddd}.v-popper--theme-tooltip .v-popper__inner{background:rgba(0,0,0,.8);color:#fff;border-radius:6px;padding:7px 12px 6px}.v-popper--theme-tooltip .v-popper__arrow-outer{border-color:#000c}
1407
1876
  pre code.hljs{display:block;overflow-x:auto;padding:1em}code.hljs{padding:3px 5px}/*!
1408
1877
  Theme: GitHub Dark
1409
1878
  Description: Dark theme as seen on github.com