@choice-ui/react 1.6.1 → 1.6.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/dialog/dist/index.d.ts +2 -1
- package/dist/components/dialog/dist/index.js +5 -1
- package/dist/components/dialog/src/dialog.d.ts +2 -1
- package/dist/components/dialog/src/dialog.js +5 -1
- package/dist/components/list/dist/index.d.ts +8 -3
- package/dist/components/list/src/components/list-content.d.ts +3 -2
- package/dist/components/list/src/components/list-content.js +2 -2
- package/dist/components/list/src/components/list-item.d.ts +3 -0
- package/dist/components/list/src/list.d.ts +2 -1
- package/dist/components/list/src/list.js +4 -2
- package/dist/components/md-render/dist/index.js +1 -1
- package/dist/components/md-render/src/tv.js +1 -1
- package/dist/components/modal/dist/index.d.ts +2 -1
- package/dist/components/modal/dist/index.js +2 -2
- package/dist/components/modal/src/modal.d.ts +2 -1
- package/dist/components/modal/src/modal.js +2 -2
- package/dist/components/popover/dist/index.d.ts +11 -10
- package/dist/components/popover/dist/index.js +5 -1
- package/dist/components/popover/src/popover.d.ts +2 -1
- package/dist/components/popover/src/popover.js +5 -1
- package/dist/components/scroll-area/dist/index.d.ts +6 -1
- package/dist/components/scroll-area/dist/index.js +2 -2
- package/dist/components/scroll-area/src/components/scroll-area-content.d.ts +4 -1
- package/dist/components/scroll-area/src/components/scroll-area-content.js +2 -2
- package/dist/components/scroll-area/src/scroll-area.d.ts +1 -1
- package/dist/components/virtual-select/dist/index.d.ts +48 -0
- package/dist/styles/components.css +220 -193
- package/dist/styles/markdown.css +362 -360
- package/package.json +1 -1
- package/dist/styles/preflight.css +0 -97
- package/dist/styles/stories.css +0 -5
- package/dist/styles/theme.css +0 -597
package/dist/styles/markdown.css
CHANGED
|
@@ -31,6 +31,55 @@
|
|
|
31
31
|
--text-message-table: 0.9em;
|
|
32
32
|
}
|
|
33
33
|
|
|
34
|
+
.dark,
|
|
35
|
+
[data-theme="dark"] {
|
|
36
|
+
--focus-outlineColor: #1f6feb;
|
|
37
|
+
--fgColor-default: #f0f6fc;
|
|
38
|
+
--fgColor-muted: #9198a1;
|
|
39
|
+
--fgColor-accent: #4493f8;
|
|
40
|
+
--fgColor-success: #3fb950;
|
|
41
|
+
--fgColor-attention: #d29922;
|
|
42
|
+
--fgColor-danger: #f85149;
|
|
43
|
+
--fgColor-done: #ab7df8;
|
|
44
|
+
--bgColor-default: #0d1117;
|
|
45
|
+
--bgColor-muted: #151b23;
|
|
46
|
+
--bgColor-neutral-muted: #656c7633;
|
|
47
|
+
--bgColor-attention-muted: #bb800926;
|
|
48
|
+
--borderColor-default: #3d444d;
|
|
49
|
+
--borderColor-muted: #3d444db3;
|
|
50
|
+
--borderColor-neutral-muted: #3d444db3;
|
|
51
|
+
--borderColor-accent-emphasis: #1f6feb;
|
|
52
|
+
--borderColor-success-emphasis: #238636;
|
|
53
|
+
--borderColor-attention-emphasis: #9e6a03;
|
|
54
|
+
--borderColor-danger-emphasis: #da3633;
|
|
55
|
+
--borderColor-done-emphasis: #8957e5;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.light,
|
|
59
|
+
[data-theme="light"] {
|
|
60
|
+
--focus-outlineColor: #0969da;
|
|
61
|
+
--fgColor-default: #1f2328;
|
|
62
|
+
--fgColor-muted: #59636e;
|
|
63
|
+
--fgColor-accent: #0969da;
|
|
64
|
+
--fgColor-success: #1a7f37;
|
|
65
|
+
--fgColor-attention: #9a6700;
|
|
66
|
+
--fgColor-danger: #d1242f;
|
|
67
|
+
--fgColor-done: #8250df;
|
|
68
|
+
--bgColor-default: #ffffff;
|
|
69
|
+
--bgColor-muted: #f6f8fa;
|
|
70
|
+
--bgColor-neutral-muted: #818b981f;
|
|
71
|
+
--bgColor-attention-muted: #fff8c5;
|
|
72
|
+
--borderColor-default: #d1d9e0;
|
|
73
|
+
--borderColor-muted: #d1d9e0b3;
|
|
74
|
+
--borderColor-neutral-muted: #d1d9e0b3;
|
|
75
|
+
--borderColor-accent-emphasis: #0969da;
|
|
76
|
+
--borderColor-success-emphasis: #1a7f37;
|
|
77
|
+
--borderColor-attention-emphasis: #9a6700;
|
|
78
|
+
--borderColor-danger-emphasis: #cf222e;
|
|
79
|
+
--borderColor-done-emphasis: #8250df;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
/* Default Markdown styles */
|
|
34
83
|
@layer components {
|
|
35
84
|
/* Markdown Component Styles */
|
|
36
85
|
.md {
|
|
@@ -609,56 +658,9 @@
|
|
|
609
658
|
}
|
|
610
659
|
}
|
|
611
660
|
|
|
612
|
-
|
|
613
|
-
[data-theme="dark"] {
|
|
614
|
-
--focus-outlineColor: #1f6feb;
|
|
615
|
-
--fgColor-default: #f0f6fc;
|
|
616
|
-
--fgColor-muted: #9198a1;
|
|
617
|
-
--fgColor-accent: #4493f8;
|
|
618
|
-
--fgColor-success: #3fb950;
|
|
619
|
-
--fgColor-attention: #d29922;
|
|
620
|
-
--fgColor-danger: #f85149;
|
|
621
|
-
--fgColor-done: #ab7df8;
|
|
622
|
-
--bgColor-default: #0d1117;
|
|
623
|
-
--bgColor-muted: #151b23;
|
|
624
|
-
--bgColor-neutral-muted: #656c7633;
|
|
625
|
-
--bgColor-attention-muted: #bb800926;
|
|
626
|
-
--borderColor-default: #3d444d;
|
|
627
|
-
--borderColor-muted: #3d444db3;
|
|
628
|
-
--borderColor-neutral-muted: #3d444db3;
|
|
629
|
-
--borderColor-accent-emphasis: #1f6feb;
|
|
630
|
-
--borderColor-success-emphasis: #238636;
|
|
631
|
-
--borderColor-attention-emphasis: #9e6a03;
|
|
632
|
-
--borderColor-danger-emphasis: #da3633;
|
|
633
|
-
--borderColor-done-emphasis: #8957e5;
|
|
634
|
-
}
|
|
635
|
-
|
|
636
|
-
.light,
|
|
637
|
-
[data-theme="light"] {
|
|
638
|
-
--focus-outlineColor: #0969da;
|
|
639
|
-
--fgColor-default: #1f2328;
|
|
640
|
-
--fgColor-muted: #59636e;
|
|
641
|
-
--fgColor-accent: #0969da;
|
|
642
|
-
--fgColor-success: #1a7f37;
|
|
643
|
-
--fgColor-attention: #9a6700;
|
|
644
|
-
--fgColor-danger: #d1242f;
|
|
645
|
-
--fgColor-done: #8250df;
|
|
646
|
-
--bgColor-default: #ffffff;
|
|
647
|
-
--bgColor-muted: #f6f8fa;
|
|
648
|
-
--bgColor-neutral-muted: #818b981f;
|
|
649
|
-
--bgColor-attention-muted: #fff8c5;
|
|
650
|
-
--borderColor-default: #d1d9e0;
|
|
651
|
-
--borderColor-muted: #d1d9e0b3;
|
|
652
|
-
--borderColor-neutral-muted: #d1d9e0b3;
|
|
653
|
-
--borderColor-accent-emphasis: #0969da;
|
|
654
|
-
--borderColor-success-emphasis: #1a7f37;
|
|
655
|
-
--borderColor-attention-emphasis: #9a6700;
|
|
656
|
-
--borderColor-danger-emphasis: #cf222e;
|
|
657
|
-
--borderColor-done-emphasis: #8250df;
|
|
658
|
-
}
|
|
659
|
-
|
|
661
|
+
/* GitHub Markdown styles */
|
|
660
662
|
@layer components {
|
|
661
|
-
.
|
|
663
|
+
.github-md {
|
|
662
664
|
--base-size-4: 0.25rem;
|
|
663
665
|
--base-size-8: 0.5rem;
|
|
664
666
|
--base-size-16: 1rem;
|
|
@@ -672,7 +674,7 @@
|
|
|
672
674
|
--fgColor-accent: var(--color-accent-foreground);
|
|
673
675
|
}
|
|
674
676
|
|
|
675
|
-
.
|
|
677
|
+
.github-md {
|
|
676
678
|
-ms-text-size-adjust: 100%;
|
|
677
679
|
-webkit-text-size-adjust: 100%;
|
|
678
680
|
margin: 0;
|
|
@@ -684,18 +686,18 @@
|
|
|
684
686
|
word-wrap: break-word;
|
|
685
687
|
}
|
|
686
688
|
|
|
687
|
-
.
|
|
689
|
+
.github-md .octicon {
|
|
688
690
|
display: inline-block;
|
|
689
691
|
vertical-align: text-bottom;
|
|
690
692
|
fill: currentColor;
|
|
691
693
|
}
|
|
692
694
|
|
|
693
|
-
.
|
|
694
|
-
.
|
|
695
|
-
.
|
|
696
|
-
.
|
|
697
|
-
.
|
|
698
|
-
.
|
|
695
|
+
.github-md h1:hover .anchor .octicon-link:before,
|
|
696
|
+
.github-md h2:hover .anchor .octicon-link:before,
|
|
697
|
+
.github-md h3:hover .anchor .octicon-link:before,
|
|
698
|
+
.github-md h4:hover .anchor .octicon-link:before,
|
|
699
|
+
.github-md h5:hover .anchor .octicon-link:before,
|
|
700
|
+
.github-md h6:hover .anchor .octicon-link:before {
|
|
699
701
|
display: inline-block;
|
|
700
702
|
-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>");
|
|
701
703
|
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>");
|
|
@@ -705,42 +707,42 @@
|
|
|
705
707
|
content: " ";
|
|
706
708
|
}
|
|
707
709
|
|
|
708
|
-
.
|
|
709
|
-
.
|
|
710
|
-
.
|
|
710
|
+
.github-md details,
|
|
711
|
+
.github-md figcaption,
|
|
712
|
+
.github-md figure {
|
|
711
713
|
display: block;
|
|
712
714
|
}
|
|
713
715
|
|
|
714
|
-
.
|
|
716
|
+
.github-md summary {
|
|
715
717
|
display: list-item;
|
|
716
718
|
}
|
|
717
719
|
|
|
718
|
-
.
|
|
720
|
+
.github-md [hidden] {
|
|
719
721
|
display: none !important;
|
|
720
722
|
}
|
|
721
723
|
|
|
722
|
-
.
|
|
724
|
+
.github-md a {
|
|
723
725
|
background-color: transparent;
|
|
724
726
|
color: var(--fgColor-accent);
|
|
725
727
|
text-decoration: none;
|
|
726
728
|
}
|
|
727
729
|
|
|
728
|
-
.
|
|
730
|
+
.github-md abbr[title] {
|
|
729
731
|
border-bottom: none;
|
|
730
732
|
-webkit-text-decoration: underline dotted;
|
|
731
733
|
text-decoration: underline dotted;
|
|
732
734
|
}
|
|
733
735
|
|
|
734
|
-
.
|
|
735
|
-
.
|
|
736
|
+
.github-md b,
|
|
737
|
+
.github-md strong {
|
|
736
738
|
font-weight: var(--base-text-weight-semibold, 600);
|
|
737
739
|
}
|
|
738
740
|
|
|
739
|
-
.
|
|
741
|
+
.github-md dfn {
|
|
740
742
|
font-style: italic;
|
|
741
743
|
}
|
|
742
744
|
|
|
743
|
-
.
|
|
745
|
+
.github-md h1 {
|
|
744
746
|
margin: 0.67em 0;
|
|
745
747
|
border-bottom: 1px solid var(--borderColor-muted);
|
|
746
748
|
padding-bottom: 0.3em;
|
|
@@ -748,50 +750,50 @@
|
|
|
748
750
|
font-size: 2em;
|
|
749
751
|
}
|
|
750
752
|
|
|
751
|
-
.
|
|
753
|
+
.github-md mark {
|
|
752
754
|
background-color: var(--bgColor-attention-muted);
|
|
753
755
|
color: var(--fgColor-default);
|
|
754
756
|
}
|
|
755
757
|
|
|
756
|
-
.
|
|
758
|
+
.github-md small {
|
|
757
759
|
font-size: 90%;
|
|
758
760
|
}
|
|
759
761
|
|
|
760
|
-
.
|
|
761
|
-
.
|
|
762
|
+
.github-md sub,
|
|
763
|
+
.github-md sup {
|
|
762
764
|
position: relative;
|
|
763
765
|
vertical-align: baseline;
|
|
764
766
|
font-size: 75%;
|
|
765
767
|
line-height: 0;
|
|
766
768
|
}
|
|
767
769
|
|
|
768
|
-
.
|
|
770
|
+
.github-md sub {
|
|
769
771
|
bottom: -0.25em;
|
|
770
772
|
}
|
|
771
773
|
|
|
772
|
-
.
|
|
774
|
+
.github-md sup {
|
|
773
775
|
top: -0.5em;
|
|
774
776
|
}
|
|
775
777
|
|
|
776
|
-
.
|
|
778
|
+
.github-md img {
|
|
777
779
|
box-sizing: content-box;
|
|
778
780
|
border-style: none;
|
|
779
781
|
max-width: 100%;
|
|
780
782
|
}
|
|
781
783
|
|
|
782
|
-
.
|
|
783
|
-
.
|
|
784
|
-
.
|
|
785
|
-
.
|
|
784
|
+
.github-md code,
|
|
785
|
+
.github-md kbd,
|
|
786
|
+
.github-md pre,
|
|
787
|
+
.github-md samp {
|
|
786
788
|
font-size: 1em;
|
|
787
789
|
font-family: monospace;
|
|
788
790
|
}
|
|
789
791
|
|
|
790
|
-
.
|
|
792
|
+
.github-md figure {
|
|
791
793
|
margin: 1em var(--base-size-40);
|
|
792
794
|
}
|
|
793
795
|
|
|
794
|
-
.
|
|
796
|
+
.github-md hr {
|
|
795
797
|
box-sizing: content-box;
|
|
796
798
|
margin: var(--base-size-24) 0;
|
|
797
799
|
border-bottom: 1px solid var(--borderColor-muted);
|
|
@@ -803,7 +805,7 @@
|
|
|
803
805
|
overflow: hidden;
|
|
804
806
|
}
|
|
805
807
|
|
|
806
|
-
.
|
|
808
|
+
.github-md input {
|
|
807
809
|
margin: 0;
|
|
808
810
|
overflow: visible;
|
|
809
811
|
font: inherit;
|
|
@@ -812,62 +814,62 @@
|
|
|
812
814
|
font-family: inherit;
|
|
813
815
|
}
|
|
814
816
|
|
|
815
|
-
.
|
|
816
|
-
.
|
|
817
|
-
.
|
|
817
|
+
.github-md [type="button"],
|
|
818
|
+
.github-md [type="reset"],
|
|
819
|
+
.github-md [type="submit"] {
|
|
818
820
|
-webkit-appearance: button;
|
|
819
821
|
appearance: button;
|
|
820
822
|
}
|
|
821
823
|
|
|
822
|
-
.
|
|
823
|
-
.
|
|
824
|
+
.github-md [type="checkbox"],
|
|
825
|
+
.github-md [type="radio"] {
|
|
824
826
|
box-sizing: border-box;
|
|
825
827
|
padding: 0;
|
|
826
828
|
}
|
|
827
829
|
|
|
828
|
-
.
|
|
829
|
-
.
|
|
830
|
+
.github-md [type="number"]::-webkit-inner-spin-button,
|
|
831
|
+
.github-md [type="number"]::-webkit-outer-spin-button {
|
|
830
832
|
height: auto;
|
|
831
833
|
}
|
|
832
834
|
|
|
833
|
-
.
|
|
834
|
-
.
|
|
835
|
+
.github-md [type="search"]::-webkit-search-cancel-button,
|
|
836
|
+
.github-md [type="search"]::-webkit-search-decoration {
|
|
835
837
|
-webkit-appearance: none;
|
|
836
838
|
appearance: none;
|
|
837
839
|
}
|
|
838
840
|
|
|
839
|
-
.
|
|
841
|
+
.github-md ::-webkit-input-placeholder {
|
|
840
842
|
opacity: 0.54;
|
|
841
843
|
color: inherit;
|
|
842
844
|
}
|
|
843
845
|
|
|
844
|
-
.
|
|
846
|
+
.github-md ::-webkit-file-upload-button {
|
|
845
847
|
-webkit-appearance: button;
|
|
846
848
|
appearance: button;
|
|
847
849
|
font: inherit;
|
|
848
850
|
}
|
|
849
851
|
|
|
850
|
-
.
|
|
852
|
+
.github-md a:hover {
|
|
851
853
|
text-decoration: underline;
|
|
852
854
|
}
|
|
853
855
|
|
|
854
|
-
.
|
|
856
|
+
.github-md ::placeholder {
|
|
855
857
|
opacity: 1;
|
|
856
858
|
color: var(--fgColor-muted);
|
|
857
859
|
}
|
|
858
860
|
|
|
859
|
-
.
|
|
861
|
+
.github-md hr::before {
|
|
860
862
|
display: table;
|
|
861
863
|
content: "";
|
|
862
864
|
}
|
|
863
865
|
|
|
864
|
-
.
|
|
866
|
+
.github-md hr::after {
|
|
865
867
|
display: table;
|
|
866
868
|
clear: both;
|
|
867
869
|
content: "";
|
|
868
870
|
}
|
|
869
871
|
|
|
870
|
-
.
|
|
872
|
+
.github-md table {
|
|
871
873
|
display: block;
|
|
872
874
|
border-collapse: collapse;
|
|
873
875
|
border-spacing: 0;
|
|
@@ -877,50 +879,50 @@
|
|
|
877
879
|
font-variant: tabular-nums;
|
|
878
880
|
}
|
|
879
881
|
|
|
880
|
-
.
|
|
881
|
-
.
|
|
882
|
+
.github-md td,
|
|
883
|
+
.github-md th {
|
|
882
884
|
padding: 0;
|
|
883
885
|
}
|
|
884
886
|
|
|
885
|
-
.
|
|
887
|
+
.github-md details summary {
|
|
886
888
|
cursor: pointer;
|
|
887
889
|
}
|
|
888
890
|
|
|
889
|
-
.
|
|
890
|
-
.
|
|
891
|
-
.
|
|
892
|
-
.
|
|
891
|
+
.github-md a:focus,
|
|
892
|
+
.github-md [role="button"]:focus,
|
|
893
|
+
.github-md input[type="radio"]:focus,
|
|
894
|
+
.github-md input[type="checkbox"]:focus {
|
|
893
895
|
outline: 2px solid var(--focus-outlineColor);
|
|
894
896
|
outline-offset: -2px;
|
|
895
897
|
box-shadow: none;
|
|
896
898
|
}
|
|
897
899
|
|
|
898
|
-
.
|
|
899
|
-
.
|
|
900
|
-
.
|
|
901
|
-
.
|
|
900
|
+
.github-md a:focus:not(:focus-visible),
|
|
901
|
+
.github-md [role="button"]:focus:not(:focus-visible),
|
|
902
|
+
.github-md input[type="radio"]:focus:not(:focus-visible),
|
|
903
|
+
.github-md input[type="checkbox"]:focus:not(:focus-visible) {
|
|
902
904
|
outline: solid 1px transparent;
|
|
903
905
|
}
|
|
904
906
|
|
|
905
|
-
.
|
|
906
|
-
.
|
|
907
|
-
.
|
|
908
|
-
.
|
|
907
|
+
.github-md a:focus-visible,
|
|
908
|
+
.github-md [role="button"]:focus-visible,
|
|
909
|
+
.github-md input[type="radio"]:focus-visible,
|
|
910
|
+
.github-md input[type="checkbox"]:focus-visible {
|
|
909
911
|
outline: 2px solid var(--focus-outlineColor);
|
|
910
912
|
outline-offset: -2px;
|
|
911
913
|
box-shadow: none;
|
|
912
914
|
}
|
|
913
915
|
|
|
914
|
-
.
|
|
915
|
-
.
|
|
916
|
-
.
|
|
917
|
-
.
|
|
918
|
-
.
|
|
919
|
-
.
|
|
916
|
+
.github-md a:not([class]):focus,
|
|
917
|
+
.github-md a:not([class]):focus-visible,
|
|
918
|
+
.github-md input[type="radio"]:focus,
|
|
919
|
+
.github-md input[type="radio"]:focus-visible,
|
|
920
|
+
.github-md input[type="checkbox"]:focus,
|
|
921
|
+
.github-md input[type="checkbox"]:focus-visible {
|
|
920
922
|
outline-offset: 0;
|
|
921
923
|
}
|
|
922
924
|
|
|
923
|
-
.
|
|
925
|
+
.github-md kbd {
|
|
924
926
|
display: inline-block;
|
|
925
927
|
vertical-align: middle;
|
|
926
928
|
box-shadow: inset 0 -1px 0 var(--borderColor-neutral-muted);
|
|
@@ -944,84 +946,84 @@
|
|
|
944
946
|
line-height: 10px;
|
|
945
947
|
}
|
|
946
948
|
|
|
947
|
-
.
|
|
948
|
-
.
|
|
949
|
-
.
|
|
950
|
-
.
|
|
951
|
-
.
|
|
952
|
-
.
|
|
949
|
+
.github-md h1,
|
|
950
|
+
.github-md h2,
|
|
951
|
+
.github-md h3,
|
|
952
|
+
.github-md h4,
|
|
953
|
+
.github-md h5,
|
|
954
|
+
.github-md h6 {
|
|
953
955
|
margin-top: var(--base-size-24);
|
|
954
956
|
margin-bottom: var(--base-size-16);
|
|
955
957
|
font-weight: var(--base-text-weight-semibold, 600);
|
|
956
958
|
line-height: 1.25;
|
|
957
959
|
}
|
|
958
960
|
|
|
959
|
-
.
|
|
961
|
+
.github-md h2 {
|
|
960
962
|
border-bottom: 1px solid var(--borderColor-muted);
|
|
961
963
|
padding-bottom: 0.3em;
|
|
962
964
|
font-weight: var(--base-text-weight-semibold, 600);
|
|
963
965
|
font-size: 1.5em;
|
|
964
966
|
}
|
|
965
967
|
|
|
966
|
-
.
|
|
968
|
+
.github-md h3 {
|
|
967
969
|
font-weight: var(--base-text-weight-semibold, 600);
|
|
968
970
|
font-size: 1.25em;
|
|
969
971
|
}
|
|
970
972
|
|
|
971
|
-
.
|
|
973
|
+
.github-md h4 {
|
|
972
974
|
font-weight: var(--base-text-weight-semibold, 600);
|
|
973
975
|
font-size: 1em;
|
|
974
976
|
}
|
|
975
977
|
|
|
976
|
-
.
|
|
978
|
+
.github-md h5 {
|
|
977
979
|
font-weight: var(--base-text-weight-semibold, 600);
|
|
978
980
|
font-size: 0.875em;
|
|
979
981
|
}
|
|
980
982
|
|
|
981
|
-
.
|
|
983
|
+
.github-md h6 {
|
|
982
984
|
color: var(--fgColor-muted);
|
|
983
985
|
font-weight: var(--base-text-weight-semibold, 600);
|
|
984
986
|
font-size: 0.85em;
|
|
985
987
|
}
|
|
986
988
|
|
|
987
|
-
.
|
|
989
|
+
.github-md p {
|
|
988
990
|
margin-top: 0;
|
|
989
991
|
margin-bottom: 10px;
|
|
990
992
|
}
|
|
991
993
|
|
|
992
|
-
.
|
|
994
|
+
.github-md blockquote {
|
|
993
995
|
margin: 0;
|
|
994
996
|
border-left: 0.25em solid var(--borderColor-default);
|
|
995
997
|
padding: 0 1em;
|
|
996
998
|
color: var(--fgColor-muted);
|
|
997
999
|
}
|
|
998
1000
|
|
|
999
|
-
.
|
|
1000
|
-
.
|
|
1001
|
+
.github-md ul,
|
|
1002
|
+
.github-md ol {
|
|
1001
1003
|
margin-top: 0;
|
|
1002
1004
|
margin-bottom: 0;
|
|
1003
1005
|
padding-left: 2em;
|
|
1004
1006
|
}
|
|
1005
1007
|
|
|
1006
|
-
.
|
|
1007
|
-
.
|
|
1008
|
+
.github-md ol ol,
|
|
1009
|
+
.github-md ul ol {
|
|
1008
1010
|
list-style-type: lower-roman;
|
|
1009
1011
|
}
|
|
1010
1012
|
|
|
1011
|
-
.
|
|
1012
|
-
.
|
|
1013
|
-
.
|
|
1014
|
-
.
|
|
1013
|
+
.github-md ul ul ol,
|
|
1014
|
+
.github-md ul ol ol,
|
|
1015
|
+
.github-md ol ul ol,
|
|
1016
|
+
.github-md ol ol ol {
|
|
1015
1017
|
list-style-type: lower-alpha;
|
|
1016
1018
|
}
|
|
1017
1019
|
|
|
1018
|
-
.
|
|
1020
|
+
.github-md dd {
|
|
1019
1021
|
margin-left: 0;
|
|
1020
1022
|
}
|
|
1021
1023
|
|
|
1022
|
-
.
|
|
1023
|
-
.
|
|
1024
|
-
.
|
|
1024
|
+
.github-md tt,
|
|
1025
|
+
.github-md code,
|
|
1026
|
+
.github-md samp {
|
|
1025
1027
|
font-size: 12px;
|
|
1026
1028
|
font-family: var(
|
|
1027
1029
|
--fontStack-monospace,
|
|
@@ -1035,7 +1037,7 @@
|
|
|
1035
1037
|
);
|
|
1036
1038
|
}
|
|
1037
1039
|
|
|
1038
|
-
.
|
|
1040
|
+
.github-md pre {
|
|
1039
1041
|
margin-top: 0;
|
|
1040
1042
|
margin-bottom: 0;
|
|
1041
1043
|
font-size: 12px;
|
|
@@ -1052,210 +1054,210 @@
|
|
|
1052
1054
|
word-wrap: normal;
|
|
1053
1055
|
}
|
|
1054
1056
|
|
|
1055
|
-
.
|
|
1057
|
+
.github-md .octicon {
|
|
1056
1058
|
display: inline-block;
|
|
1057
1059
|
vertical-align: text-bottom;
|
|
1058
1060
|
fill: currentColor;
|
|
1059
1061
|
overflow: visible !important;
|
|
1060
1062
|
}
|
|
1061
1063
|
|
|
1062
|
-
.
|
|
1063
|
-
.
|
|
1064
|
+
.github-md input::-webkit-outer-spin-button,
|
|
1065
|
+
.github-md input::-webkit-inner-spin-button {
|
|
1064
1066
|
appearance: none;
|
|
1065
1067
|
margin: 0;
|
|
1066
1068
|
}
|
|
1067
1069
|
|
|
1068
|
-
.
|
|
1070
|
+
.github-md .mr-2 {
|
|
1069
1071
|
margin-right: var(--base-size-8, 8px) !important;
|
|
1070
1072
|
}
|
|
1071
1073
|
|
|
1072
|
-
.
|
|
1074
|
+
.github-md::before {
|
|
1073
1075
|
display: table;
|
|
1074
1076
|
content: "";
|
|
1075
1077
|
}
|
|
1076
1078
|
|
|
1077
|
-
.
|
|
1079
|
+
.github-md::after {
|
|
1078
1080
|
display: table;
|
|
1079
1081
|
clear: both;
|
|
1080
1082
|
content: "";
|
|
1081
1083
|
}
|
|
1082
1084
|
|
|
1083
|
-
.
|
|
1085
|
+
.github-md > *:first-child {
|
|
1084
1086
|
margin-top: 0 !important;
|
|
1085
1087
|
}
|
|
1086
1088
|
|
|
1087
|
-
.
|
|
1089
|
+
.github-md > *:last-child {
|
|
1088
1090
|
margin-bottom: 0 !important;
|
|
1089
1091
|
}
|
|
1090
1092
|
|
|
1091
|
-
.
|
|
1093
|
+
.github-md a:not([href]) {
|
|
1092
1094
|
color: inherit;
|
|
1093
1095
|
text-decoration: none;
|
|
1094
1096
|
}
|
|
1095
1097
|
|
|
1096
|
-
.
|
|
1098
|
+
.github-md .absent {
|
|
1097
1099
|
color: var(--fgColor-danger);
|
|
1098
1100
|
}
|
|
1099
1101
|
|
|
1100
|
-
.
|
|
1102
|
+
.github-md .anchor {
|
|
1101
1103
|
float: left;
|
|
1102
1104
|
margin-left: -20px;
|
|
1103
1105
|
padding-right: var(--base-size-4);
|
|
1104
1106
|
line-height: 1;
|
|
1105
1107
|
}
|
|
1106
1108
|
|
|
1107
|
-
.
|
|
1109
|
+
.github-md .anchor:focus {
|
|
1108
1110
|
outline: none;
|
|
1109
1111
|
}
|
|
1110
1112
|
|
|
1111
|
-
.
|
|
1112
|
-
.
|
|
1113
|
-
.
|
|
1114
|
-
.
|
|
1115
|
-
.
|
|
1116
|
-
.
|
|
1117
|
-
.
|
|
1118
|
-
.
|
|
1113
|
+
.github-md p,
|
|
1114
|
+
.github-md blockquote,
|
|
1115
|
+
.github-md ul,
|
|
1116
|
+
.github-md ol,
|
|
1117
|
+
.github-md dl,
|
|
1118
|
+
.github-md .table-wrapper,
|
|
1119
|
+
.github-md pre,
|
|
1120
|
+
.github-md details {
|
|
1119
1121
|
margin-top: 0;
|
|
1120
1122
|
margin-bottom: var(--base-size-16);
|
|
1121
1123
|
}
|
|
1122
1124
|
|
|
1123
|
-
.
|
|
1125
|
+
.github-md blockquote > :first-child {
|
|
1124
1126
|
margin-top: 0;
|
|
1125
1127
|
}
|
|
1126
1128
|
|
|
1127
|
-
.
|
|
1129
|
+
.github-md blockquote > :last-child {
|
|
1128
1130
|
margin-bottom: 0;
|
|
1129
1131
|
}
|
|
1130
1132
|
|
|
1131
|
-
.
|
|
1132
|
-
.
|
|
1133
|
-
.
|
|
1134
|
-
.
|
|
1135
|
-
.
|
|
1136
|
-
.
|
|
1133
|
+
.github-md h1 .octicon-link,
|
|
1134
|
+
.github-md h2 .octicon-link,
|
|
1135
|
+
.github-md h3 .octicon-link,
|
|
1136
|
+
.github-md h4 .octicon-link,
|
|
1137
|
+
.github-md h5 .octicon-link,
|
|
1138
|
+
.github-md h6 .octicon-link {
|
|
1137
1139
|
vertical-align: middle;
|
|
1138
1140
|
visibility: hidden;
|
|
1139
1141
|
color: var(--fgColor-default);
|
|
1140
1142
|
}
|
|
1141
1143
|
|
|
1142
|
-
.
|
|
1143
|
-
.
|
|
1144
|
-
.
|
|
1145
|
-
.
|
|
1146
|
-
.
|
|
1147
|
-
.
|
|
1144
|
+
.github-md h1:hover .anchor,
|
|
1145
|
+
.github-md h2:hover .anchor,
|
|
1146
|
+
.github-md h3:hover .anchor,
|
|
1147
|
+
.github-md h4:hover .anchor,
|
|
1148
|
+
.github-md h5:hover .anchor,
|
|
1149
|
+
.github-md h6:hover .anchor {
|
|
1148
1150
|
text-decoration: none;
|
|
1149
1151
|
}
|
|
1150
1152
|
|
|
1151
|
-
.
|
|
1152
|
-
.
|
|
1153
|
-
.
|
|
1154
|
-
.
|
|
1155
|
-
.
|
|
1156
|
-
.
|
|
1153
|
+
.github-md h1:hover .anchor .octicon-link,
|
|
1154
|
+
.github-md h2:hover .anchor .octicon-link,
|
|
1155
|
+
.github-md h3:hover .anchor .octicon-link,
|
|
1156
|
+
.github-md h4:hover .anchor .octicon-link,
|
|
1157
|
+
.github-md h5:hover .anchor .octicon-link,
|
|
1158
|
+
.github-md h6:hover .anchor .octicon-link {
|
|
1157
1159
|
visibility: visible;
|
|
1158
1160
|
}
|
|
1159
1161
|
|
|
1160
|
-
.
|
|
1161
|
-
.
|
|
1162
|
-
.
|
|
1163
|
-
.
|
|
1164
|
-
.
|
|
1165
|
-
.
|
|
1166
|
-
.
|
|
1167
|
-
.
|
|
1168
|
-
.
|
|
1169
|
-
.
|
|
1170
|
-
.
|
|
1171
|
-
.
|
|
1162
|
+
.github-md h1 tt,
|
|
1163
|
+
.github-md h1 code,
|
|
1164
|
+
.github-md h2 tt,
|
|
1165
|
+
.github-md h2 code,
|
|
1166
|
+
.github-md h3 tt,
|
|
1167
|
+
.github-md h3 code,
|
|
1168
|
+
.github-md h4 tt,
|
|
1169
|
+
.github-md h4 code,
|
|
1170
|
+
.github-md h5 tt,
|
|
1171
|
+
.github-md h5 code,
|
|
1172
|
+
.github-md h6 tt,
|
|
1173
|
+
.github-md h6 code {
|
|
1172
1174
|
padding: 0 0.2em;
|
|
1173
1175
|
font-size: inherit;
|
|
1174
1176
|
}
|
|
1175
1177
|
|
|
1176
|
-
.
|
|
1177
|
-
.
|
|
1178
|
-
.
|
|
1179
|
-
.
|
|
1180
|
-
.
|
|
1181
|
-
.
|
|
1178
|
+
.github-md summary h1,
|
|
1179
|
+
.github-md summary h2,
|
|
1180
|
+
.github-md summary h3,
|
|
1181
|
+
.github-md summary h4,
|
|
1182
|
+
.github-md summary h5,
|
|
1183
|
+
.github-md summary h6 {
|
|
1182
1184
|
display: inline-block;
|
|
1183
1185
|
}
|
|
1184
1186
|
|
|
1185
|
-
.
|
|
1186
|
-
.
|
|
1187
|
-
.
|
|
1188
|
-
.
|
|
1189
|
-
.
|
|
1190
|
-
.
|
|
1187
|
+
.github-md summary h1 .anchor,
|
|
1188
|
+
.github-md summary h2 .anchor,
|
|
1189
|
+
.github-md summary h3 .anchor,
|
|
1190
|
+
.github-md summary h4 .anchor,
|
|
1191
|
+
.github-md summary h5 .anchor,
|
|
1192
|
+
.github-md summary h6 .anchor {
|
|
1191
1193
|
margin-left: -40px;
|
|
1192
1194
|
}
|
|
1193
1195
|
|
|
1194
|
-
.
|
|
1195
|
-
.
|
|
1196
|
+
.github-md summary h1,
|
|
1197
|
+
.github-md summary h2 {
|
|
1196
1198
|
border-bottom: 0;
|
|
1197
1199
|
padding-bottom: 0;
|
|
1198
1200
|
}
|
|
1199
1201
|
|
|
1200
|
-
.
|
|
1202
|
+
.github-md ol {
|
|
1201
1203
|
list-style-type: decimal;
|
|
1202
1204
|
}
|
|
1203
1205
|
|
|
1204
|
-
.
|
|
1206
|
+
.github-md ul {
|
|
1205
1207
|
list-style-type: disc;
|
|
1206
1208
|
}
|
|
1207
1209
|
|
|
1208
|
-
.
|
|
1209
|
-
.
|
|
1210
|
+
.github-md ul.no-list,
|
|
1211
|
+
.github-md ol.no-list {
|
|
1210
1212
|
padding: 0;
|
|
1211
1213
|
list-style-type: none;
|
|
1212
1214
|
}
|
|
1213
1215
|
|
|
1214
|
-
.
|
|
1216
|
+
.github-md ol[type="a s"] {
|
|
1215
1217
|
list-style-type: lower-alpha;
|
|
1216
1218
|
}
|
|
1217
1219
|
|
|
1218
|
-
.
|
|
1220
|
+
.github-md ol[type="A s"] {
|
|
1219
1221
|
list-style-type: upper-alpha;
|
|
1220
1222
|
}
|
|
1221
1223
|
|
|
1222
|
-
.
|
|
1224
|
+
.github-md ol[type="i s"] {
|
|
1223
1225
|
list-style-type: lower-roman;
|
|
1224
1226
|
}
|
|
1225
1227
|
|
|
1226
|
-
.
|
|
1228
|
+
.github-md ol[type="I s"] {
|
|
1227
1229
|
list-style-type: upper-roman;
|
|
1228
1230
|
}
|
|
1229
1231
|
|
|
1230
|
-
.
|
|
1232
|
+
.github-md ol[type="1"] {
|
|
1231
1233
|
list-style-type: decimal;
|
|
1232
1234
|
}
|
|
1233
1235
|
|
|
1234
|
-
.
|
|
1236
|
+
.github-md div > ol:not([type]) {
|
|
1235
1237
|
list-style-type: decimal;
|
|
1236
1238
|
}
|
|
1237
1239
|
|
|
1238
|
-
.
|
|
1239
|
-
.
|
|
1240
|
-
.
|
|
1241
|
-
.
|
|
1240
|
+
.github-md ul ul,
|
|
1241
|
+
.github-md ul ol,
|
|
1242
|
+
.github-md ol ol,
|
|
1243
|
+
.github-md ol ul {
|
|
1242
1244
|
margin-top: 0;
|
|
1243
1245
|
margin-bottom: 0;
|
|
1244
1246
|
}
|
|
1245
1247
|
|
|
1246
|
-
.
|
|
1248
|
+
.github-md li > p {
|
|
1247
1249
|
margin-top: var(--base-size-16);
|
|
1248
1250
|
}
|
|
1249
1251
|
|
|
1250
|
-
.
|
|
1252
|
+
.github-md li + li {
|
|
1251
1253
|
margin-top: 0.25em;
|
|
1252
1254
|
}
|
|
1253
1255
|
|
|
1254
|
-
.
|
|
1256
|
+
.github-md dl {
|
|
1255
1257
|
padding: 0;
|
|
1256
1258
|
}
|
|
1257
1259
|
|
|
1258
|
-
.
|
|
1260
|
+
.github-md dl dt {
|
|
1259
1261
|
margin-top: var(--base-size-16);
|
|
1260
1262
|
padding: 0;
|
|
1261
1263
|
font-style: italic;
|
|
@@ -1263,56 +1265,56 @@
|
|
|
1263
1265
|
font-size: 1em;
|
|
1264
1266
|
}
|
|
1265
1267
|
|
|
1266
|
-
.
|
|
1268
|
+
.github-md dl dd {
|
|
1267
1269
|
margin-bottom: var(--base-size-16);
|
|
1268
1270
|
padding: 0 var(--base-size-16);
|
|
1269
1271
|
}
|
|
1270
1272
|
|
|
1271
|
-
.
|
|
1273
|
+
.github-md table th {
|
|
1272
1274
|
font-weight: var(--base-text-weight-semibold, 600);
|
|
1273
1275
|
}
|
|
1274
1276
|
|
|
1275
|
-
.
|
|
1276
|
-
.
|
|
1277
|
+
.github-md table th,
|
|
1278
|
+
.github-md table td {
|
|
1277
1279
|
border: 1px solid var(--borderColor-default);
|
|
1278
1280
|
padding: 6px 13px;
|
|
1279
1281
|
}
|
|
1280
1282
|
|
|
1281
|
-
.
|
|
1283
|
+
.github-md table td > :last-child {
|
|
1282
1284
|
margin-bottom: 0;
|
|
1283
1285
|
}
|
|
1284
1286
|
|
|
1285
|
-
.
|
|
1287
|
+
.github-md table tr {
|
|
1286
1288
|
border-top: 1px solid var(--borderColor-muted);
|
|
1287
1289
|
}
|
|
1288
1290
|
|
|
1289
|
-
.
|
|
1291
|
+
.github-md table tr:nth-child(2n) {
|
|
1290
1292
|
}
|
|
1291
1293
|
|
|
1292
|
-
.
|
|
1294
|
+
.github-md table img {
|
|
1293
1295
|
background-color: transparent;
|
|
1294
1296
|
}
|
|
1295
1297
|
|
|
1296
|
-
.
|
|
1298
|
+
.github-md img[align="right"] {
|
|
1297
1299
|
padding-left: 20px;
|
|
1298
1300
|
}
|
|
1299
1301
|
|
|
1300
|
-
.
|
|
1302
|
+
.github-md img[align="left"] {
|
|
1301
1303
|
padding-right: 20px;
|
|
1302
1304
|
}
|
|
1303
1305
|
|
|
1304
|
-
.
|
|
1306
|
+
.github-md .emoji {
|
|
1305
1307
|
vertical-align: text-top;
|
|
1306
1308
|
background-color: transparent;
|
|
1307
1309
|
max-width: none;
|
|
1308
1310
|
}
|
|
1309
1311
|
|
|
1310
|
-
.
|
|
1312
|
+
.github-md span.frame {
|
|
1311
1313
|
display: block;
|
|
1312
1314
|
overflow: hidden;
|
|
1313
1315
|
}
|
|
1314
1316
|
|
|
1315
|
-
.
|
|
1317
|
+
.github-md span.frame > span {
|
|
1316
1318
|
display: block;
|
|
1317
1319
|
float: left;
|
|
1318
1320
|
margin: 13px 0 0;
|
|
@@ -1322,81 +1324,81 @@
|
|
|
1322
1324
|
overflow: hidden;
|
|
1323
1325
|
}
|
|
1324
1326
|
|
|
1325
|
-
.
|
|
1327
|
+
.github-md span.frame span img {
|
|
1326
1328
|
display: block;
|
|
1327
1329
|
float: left;
|
|
1328
1330
|
}
|
|
1329
1331
|
|
|
1330
|
-
.
|
|
1332
|
+
.github-md span.frame span span {
|
|
1331
1333
|
display: block;
|
|
1332
1334
|
clear: both;
|
|
1333
1335
|
padding: 5px 0 0;
|
|
1334
1336
|
color: var(--fgColor-default);
|
|
1335
1337
|
}
|
|
1336
1338
|
|
|
1337
|
-
.
|
|
1339
|
+
.github-md span.align-center {
|
|
1338
1340
|
display: block;
|
|
1339
1341
|
clear: both;
|
|
1340
1342
|
overflow: hidden;
|
|
1341
1343
|
}
|
|
1342
1344
|
|
|
1343
|
-
.
|
|
1345
|
+
.github-md span.align-center > span {
|
|
1344
1346
|
display: block;
|
|
1345
1347
|
margin: 13px auto 0;
|
|
1346
1348
|
overflow: hidden;
|
|
1347
1349
|
text-align: center;
|
|
1348
1350
|
}
|
|
1349
1351
|
|
|
1350
|
-
.
|
|
1352
|
+
.github-md span.align-center span img {
|
|
1351
1353
|
margin: 0 auto;
|
|
1352
1354
|
text-align: center;
|
|
1353
1355
|
}
|
|
1354
1356
|
|
|
1355
|
-
.
|
|
1357
|
+
.github-md span.align-right {
|
|
1356
1358
|
display: block;
|
|
1357
1359
|
clear: both;
|
|
1358
1360
|
overflow: hidden;
|
|
1359
1361
|
}
|
|
1360
1362
|
|
|
1361
|
-
.
|
|
1363
|
+
.github-md span.align-right > span {
|
|
1362
1364
|
display: block;
|
|
1363
1365
|
margin: 13px 0 0;
|
|
1364
1366
|
overflow: hidden;
|
|
1365
1367
|
text-align: right;
|
|
1366
1368
|
}
|
|
1367
1369
|
|
|
1368
|
-
.
|
|
1370
|
+
.github-md span.align-right span img {
|
|
1369
1371
|
margin: 0;
|
|
1370
1372
|
text-align: right;
|
|
1371
1373
|
}
|
|
1372
1374
|
|
|
1373
|
-
.
|
|
1375
|
+
.github-md span.float-left {
|
|
1374
1376
|
display: block;
|
|
1375
1377
|
float: left;
|
|
1376
1378
|
margin-right: 13px;
|
|
1377
1379
|
overflow: hidden;
|
|
1378
1380
|
}
|
|
1379
1381
|
|
|
1380
|
-
.
|
|
1382
|
+
.github-md span.float-left span {
|
|
1381
1383
|
margin: 13px 0 0;
|
|
1382
1384
|
}
|
|
1383
1385
|
|
|
1384
|
-
.
|
|
1386
|
+
.github-md span.float-right {
|
|
1385
1387
|
display: block;
|
|
1386
1388
|
float: right;
|
|
1387
1389
|
margin-left: 13px;
|
|
1388
1390
|
overflow: hidden;
|
|
1389
1391
|
}
|
|
1390
1392
|
|
|
1391
|
-
.
|
|
1393
|
+
.github-md span.float-right > span {
|
|
1392
1394
|
display: block;
|
|
1393
1395
|
margin: 13px auto 0;
|
|
1394
1396
|
overflow: hidden;
|
|
1395
1397
|
text-align: right;
|
|
1396
1398
|
}
|
|
1397
1399
|
|
|
1398
|
-
.
|
|
1399
|
-
.
|
|
1400
|
+
.github-md code,
|
|
1401
|
+
.github-md tt {
|
|
1400
1402
|
margin: 0;
|
|
1401
1403
|
border-radius: 6px;
|
|
1402
1404
|
background-color: var(--bgColor-neutral-muted);
|
|
@@ -1405,40 +1407,40 @@
|
|
|
1405
1407
|
white-space: break-spaces;
|
|
1406
1408
|
}
|
|
1407
1409
|
|
|
1408
|
-
.
|
|
1409
|
-
.
|
|
1410
|
+
.github-md code br,
|
|
1411
|
+
.github-md tt br {
|
|
1410
1412
|
display: none;
|
|
1411
1413
|
}
|
|
1412
1414
|
|
|
1413
|
-
.
|
|
1415
|
+
.github-md em {
|
|
1414
1416
|
font-style: italic;
|
|
1415
1417
|
}
|
|
1416
1418
|
|
|
1417
|
-
.
|
|
1419
|
+
.github-md s {
|
|
1418
1420
|
text-decoration: line-through;
|
|
1419
1421
|
}
|
|
1420
1422
|
|
|
1421
|
-
.
|
|
1423
|
+
.github-md u {
|
|
1422
1424
|
text-decoration: underline;
|
|
1423
1425
|
}
|
|
1424
1426
|
|
|
1425
|
-
.
|
|
1427
|
+
.github-md del code {
|
|
1426
1428
|
text-decoration: inherit;
|
|
1427
1429
|
}
|
|
1428
1430
|
|
|
1429
|
-
.
|
|
1431
|
+
.github-md del code {
|
|
1430
1432
|
text-decoration: inherit;
|
|
1431
1433
|
}
|
|
1432
1434
|
|
|
1433
|
-
.
|
|
1435
|
+
.github-md samp {
|
|
1434
1436
|
font-size: 85%;
|
|
1435
1437
|
}
|
|
1436
1438
|
|
|
1437
|
-
.
|
|
1439
|
+
.github-md pre code {
|
|
1438
1440
|
font-size: 100%;
|
|
1439
1441
|
}
|
|
1440
1442
|
|
|
1441
|
-
.
|
|
1443
|
+
.github-md pre > code {
|
|
1442
1444
|
margin: 0;
|
|
1443
1445
|
border: 0;
|
|
1444
1446
|
background: transparent;
|
|
@@ -1447,17 +1449,17 @@
|
|
|
1447
1449
|
word-break: normal;
|
|
1448
1450
|
}
|
|
1449
1451
|
|
|
1450
|
-
.
|
|
1452
|
+
.github-md .highlight {
|
|
1451
1453
|
margin-bottom: var(--base-size-16);
|
|
1452
1454
|
}
|
|
1453
1455
|
|
|
1454
|
-
.
|
|
1456
|
+
.github-md .highlight pre {
|
|
1455
1457
|
margin-bottom: 0;
|
|
1456
1458
|
word-break: normal;
|
|
1457
1459
|
}
|
|
1458
1460
|
|
|
1459
|
-
.
|
|
1460
|
-
.
|
|
1461
|
+
.github-md .highlight pre,
|
|
1462
|
+
.github-md pre {
|
|
1461
1463
|
border-radius: 6px;
|
|
1462
1464
|
background-color: var(--bgColor-muted);
|
|
1463
1465
|
/* padding: var(--base-size-16); */
|
|
@@ -1467,8 +1469,8 @@
|
|
|
1467
1469
|
line-height: 1.45;
|
|
1468
1470
|
}
|
|
1469
1471
|
|
|
1470
|
-
.
|
|
1471
|
-
.
|
|
1472
|
+
.github-md pre code,
|
|
1473
|
+
.github-md pre tt {
|
|
1472
1474
|
display: inline;
|
|
1473
1475
|
margin: 0;
|
|
1474
1476
|
padding: 0;
|
|
@@ -1480,8 +1482,8 @@
|
|
|
1480
1482
|
background-color: transparent;
|
|
1481
1483
|
}
|
|
1482
1484
|
|
|
1483
|
-
.
|
|
1484
|
-
.
|
|
1485
|
+
.github-md .csv-data td,
|
|
1486
|
+
.github-md .csv-data th {
|
|
1485
1487
|
padding: 5px;
|
|
1486
1488
|
overflow: hidden;
|
|
1487
1489
|
font-size: 12px;
|
|
@@ -1490,52 +1492,52 @@
|
|
|
1490
1492
|
white-space: nowrap;
|
|
1491
1493
|
}
|
|
1492
1494
|
|
|
1493
|
-
.
|
|
1495
|
+
.github-md .csv-data .blob-num {
|
|
1494
1496
|
border: 0;
|
|
1495
1497
|
background: var(--bgColor-default);
|
|
1496
1498
|
padding: 10px var(--base-size-8) 9px;
|
|
1497
1499
|
text-align: right;
|
|
1498
1500
|
}
|
|
1499
1501
|
|
|
1500
|
-
.
|
|
1502
|
+
.github-md .csv-data tr {
|
|
1501
1503
|
border-top: 0;
|
|
1502
1504
|
}
|
|
1503
1505
|
|
|
1504
|
-
.
|
|
1506
|
+
.github-md .csv-data th {
|
|
1505
1507
|
border-top: 0;
|
|
1506
1508
|
background: var(--bgColor-muted);
|
|
1507
1509
|
font-weight: var(--base-text-weight-semibold, 600);
|
|
1508
1510
|
}
|
|
1509
1511
|
|
|
1510
|
-
.
|
|
1512
|
+
.github-md [data-footnote-ref]::before {
|
|
1511
1513
|
content: "[";
|
|
1512
1514
|
}
|
|
1513
1515
|
|
|
1514
|
-
.
|
|
1516
|
+
.github-md [data-footnote-ref]::after {
|
|
1515
1517
|
content: "]";
|
|
1516
1518
|
}
|
|
1517
1519
|
|
|
1518
|
-
.
|
|
1520
|
+
.github-md .footnotes {
|
|
1519
1521
|
border-top: 1px solid var(--borderColor-default);
|
|
1520
1522
|
color: var(--fgColor-muted);
|
|
1521
1523
|
font-size: 12px;
|
|
1522
1524
|
}
|
|
1523
1525
|
|
|
1524
|
-
.
|
|
1526
|
+
.github-md .footnotes ol {
|
|
1525
1527
|
padding-left: var(--base-size-16);
|
|
1526
1528
|
}
|
|
1527
1529
|
|
|
1528
|
-
.
|
|
1530
|
+
.github-md .footnotes ol ul {
|
|
1529
1531
|
display: inline-block;
|
|
1530
1532
|
margin-top: var(--base-size-16);
|
|
1531
1533
|
padding-left: var(--base-size-16);
|
|
1532
1534
|
}
|
|
1533
1535
|
|
|
1534
|
-
.
|
|
1536
|
+
.github-md .footnotes li {
|
|
1535
1537
|
position: relative;
|
|
1536
1538
|
}
|
|
1537
1539
|
|
|
1538
|
-
.
|
|
1540
|
+
.github-md .footnotes li:target::before {
|
|
1539
1541
|
position: absolute;
|
|
1540
1542
|
top: calc(var(--base-size-8) * -1);
|
|
1541
1543
|
right: calc(var(--base-size-8) * -1);
|
|
@@ -1547,153 +1549,153 @@
|
|
|
1547
1549
|
content: "";
|
|
1548
1550
|
}
|
|
1549
1551
|
|
|
1550
|
-
.
|
|
1552
|
+
.github-md .footnotes li:target {
|
|
1551
1553
|
color: var(--fgColor-default);
|
|
1552
1554
|
}
|
|
1553
1555
|
|
|
1554
|
-
.
|
|
1556
|
+
.github-md .footnotes .data-footnote-backref g-emoji {
|
|
1555
1557
|
font-family: monospace;
|
|
1556
1558
|
}
|
|
1557
1559
|
|
|
1558
|
-
.
|
|
1560
|
+
.github-md body:has(:modal) {
|
|
1559
1561
|
padding-right: var(--dialog-scrollgutter) !important;
|
|
1560
1562
|
}
|
|
1561
1563
|
|
|
1562
|
-
.
|
|
1564
|
+
.github-md .pl-c {
|
|
1563
1565
|
color: var(--color-prettylights-syntax-comment);
|
|
1564
1566
|
}
|
|
1565
1567
|
|
|
1566
|
-
.
|
|
1567
|
-
.
|
|
1568
|
+
.github-md .pl-c1,
|
|
1569
|
+
.github-md .pl-s .pl-v {
|
|
1568
1570
|
color: var(--color-prettylights-syntax-constant);
|
|
1569
1571
|
}
|
|
1570
1572
|
|
|
1571
|
-
.
|
|
1572
|
-
.
|
|
1573
|
+
.github-md .pl-e,
|
|
1574
|
+
.github-md .pl-en {
|
|
1573
1575
|
color: var(--color-prettylights-syntax-entity);
|
|
1574
1576
|
}
|
|
1575
1577
|
|
|
1576
|
-
.
|
|
1577
|
-
.
|
|
1578
|
+
.github-md .pl-smi,
|
|
1579
|
+
.github-md .pl-s .pl-s1 {
|
|
1578
1580
|
color: var(--color-prettylights-syntax-storage-modifier-import);
|
|
1579
1581
|
}
|
|
1580
1582
|
|
|
1581
|
-
.
|
|
1583
|
+
.github-md .pl-ent {
|
|
1582
1584
|
color: var(--color-prettylights-syntax-entity-tag);
|
|
1583
1585
|
}
|
|
1584
1586
|
|
|
1585
|
-
.
|
|
1587
|
+
.github-md .pl-k {
|
|
1586
1588
|
color: var(--color-prettylights-syntax-keyword);
|
|
1587
1589
|
}
|
|
1588
1590
|
|
|
1589
|
-
.
|
|
1590
|
-
.
|
|
1591
|
-
.
|
|
1592
|
-
.
|
|
1593
|
-
.
|
|
1594
|
-
.
|
|
1595
|
-
.
|
|
1591
|
+
.github-md .pl-s,
|
|
1592
|
+
.github-md .pl-pds,
|
|
1593
|
+
.github-md .pl-s .pl-pse .pl-s1,
|
|
1594
|
+
.github-md .pl-sr,
|
|
1595
|
+
.github-md .pl-sr .pl-cce,
|
|
1596
|
+
.github-md .pl-sr .pl-sre,
|
|
1597
|
+
.github-md .pl-sr .pl-sra {
|
|
1596
1598
|
color: var(--color-prettylights-syntax-string);
|
|
1597
1599
|
}
|
|
1598
1600
|
|
|
1599
|
-
.
|
|
1600
|
-
.
|
|
1601
|
+
.github-md .pl-v,
|
|
1602
|
+
.github-md .pl-smw {
|
|
1601
1603
|
color: var(--color-prettylights-syntax-variable);
|
|
1602
1604
|
}
|
|
1603
1605
|
|
|
1604
|
-
.
|
|
1606
|
+
.github-md .pl-bu {
|
|
1605
1607
|
color: var(--color-prettylights-syntax-brackethighlighter-unmatched);
|
|
1606
1608
|
}
|
|
1607
1609
|
|
|
1608
|
-
.
|
|
1610
|
+
.github-md .pl-ii {
|
|
1609
1611
|
background-color: var(--color-prettylights-syntax-invalid-illegal-bg);
|
|
1610
1612
|
color: var(--color-prettylights-syntax-invalid-illegal-text);
|
|
1611
1613
|
}
|
|
1612
1614
|
|
|
1613
|
-
.
|
|
1615
|
+
.github-md .pl-c2 {
|
|
1614
1616
|
background-color: var(--color-prettylights-syntax-carriage-return-bg);
|
|
1615
1617
|
color: var(--color-prettylights-syntax-carriage-return-text);
|
|
1616
1618
|
}
|
|
1617
1619
|
|
|
1618
|
-
.
|
|
1620
|
+
.github-md .pl-sr .pl-cce {
|
|
1619
1621
|
color: var(--color-prettylights-syntax-string-regexp);
|
|
1620
1622
|
font-weight: bold;
|
|
1621
1623
|
}
|
|
1622
1624
|
|
|
1623
|
-
.
|
|
1625
|
+
.github-md .pl-ml {
|
|
1624
1626
|
color: var(--color-prettylights-syntax-markup-list);
|
|
1625
1627
|
}
|
|
1626
1628
|
|
|
1627
|
-
.
|
|
1628
|
-
.
|
|
1629
|
-
.
|
|
1629
|
+
.github-md .pl-mh,
|
|
1630
|
+
.github-md .pl-mh .pl-en,
|
|
1631
|
+
.github-md .pl-ms {
|
|
1630
1632
|
color: var(--color-prettylights-syntax-markup-heading);
|
|
1631
1633
|
font-weight: bold;
|
|
1632
1634
|
}
|
|
1633
1635
|
|
|
1634
|
-
.
|
|
1636
|
+
.github-md .pl-mi {
|
|
1635
1637
|
color: var(--color-prettylights-syntax-markup-italic);
|
|
1636
1638
|
font-style: italic;
|
|
1637
1639
|
}
|
|
1638
1640
|
|
|
1639
|
-
.
|
|
1641
|
+
.github-md .pl-mb {
|
|
1640
1642
|
color: var(--color-prettylights-syntax-markup-bold);
|
|
1641
1643
|
font-weight: bold;
|
|
1642
1644
|
}
|
|
1643
1645
|
|
|
1644
|
-
.
|
|
1646
|
+
.github-md .pl-md {
|
|
1645
1647
|
background-color: var(--color-prettylights-syntax-markup-deleted-bg);
|
|
1646
1648
|
color: var(--color-prettylights-syntax-markup-deleted-text);
|
|
1647
1649
|
}
|
|
1648
1650
|
|
|
1649
|
-
.
|
|
1651
|
+
.github-md .pl-mi1 {
|
|
1650
1652
|
background-color: var(--color-prettylights-syntax-markup-inserted-bg);
|
|
1651
1653
|
color: var(--color-prettylights-syntax-markup-inserted-text);
|
|
1652
1654
|
}
|
|
1653
1655
|
|
|
1654
|
-
.
|
|
1656
|
+
.github-md .pl-mc {
|
|
1655
1657
|
background-color: var(--color-prettylights-syntax-markup-changed-bg);
|
|
1656
1658
|
color: var(--color-prettylights-syntax-markup-changed-text);
|
|
1657
1659
|
}
|
|
1658
1660
|
|
|
1659
|
-
.
|
|
1661
|
+
.github-md .pl-mi2 {
|
|
1660
1662
|
background-color: var(--color-prettylights-syntax-markup-ignored-bg);
|
|
1661
1663
|
color: var(--color-prettylights-syntax-markup-ignored-text);
|
|
1662
1664
|
}
|
|
1663
1665
|
|
|
1664
|
-
.
|
|
1666
|
+
.github-md .pl-mdr {
|
|
1665
1667
|
color: var(--color-prettylights-syntax-meta-diff-range);
|
|
1666
1668
|
font-weight: bold;
|
|
1667
1669
|
}
|
|
1668
1670
|
|
|
1669
|
-
.
|
|
1671
|
+
.github-md .pl-ba {
|
|
1670
1672
|
color: var(--color-prettylights-syntax-brackethighlighter-angle);
|
|
1671
1673
|
}
|
|
1672
1674
|
|
|
1673
|
-
.
|
|
1675
|
+
.github-md .pl-sg {
|
|
1674
1676
|
color: var(--color-prettylights-syntax-sublimelinter-gutter-mark);
|
|
1675
1677
|
}
|
|
1676
1678
|
|
|
1677
|
-
.
|
|
1679
|
+
.github-md .pl-corl {
|
|
1678
1680
|
color: var(--color-prettylights-syntax-constant-other-reference-link);
|
|
1679
1681
|
text-decoration: underline;
|
|
1680
1682
|
}
|
|
1681
1683
|
|
|
1682
|
-
.
|
|
1683
|
-
.
|
|
1684
|
-
.
|
|
1685
|
-
.
|
|
1686
|
-
.
|
|
1684
|
+
.github-md [role="button"]:focus:not(:focus-visible),
|
|
1685
|
+
.github-md [role="tabpanel"][tabindex="0"]:focus:not(:focus-visible),
|
|
1686
|
+
.github-md button:focus:not(:focus-visible),
|
|
1687
|
+
.github-md summary:focus:not(:focus-visible),
|
|
1688
|
+
.github-md a:focus:not(:focus-visible) {
|
|
1687
1689
|
outline: none;
|
|
1688
1690
|
box-shadow: none;
|
|
1689
1691
|
}
|
|
1690
1692
|
|
|
1691
|
-
.
|
|
1692
|
-
.
|
|
1693
|
+
.github-md [tabindex="0"]:focus:not(:focus-visible),
|
|
1694
|
+
.github-md details-dialog:focus:not(:focus-visible) {
|
|
1693
1695
|
outline: none;
|
|
1694
1696
|
}
|
|
1695
1697
|
|
|
1696
|
-
.
|
|
1698
|
+
.github-md g-emoji {
|
|
1697
1699
|
display: inline-block;
|
|
1698
1700
|
vertical-align: -0.075em;
|
|
1699
1701
|
min-width: 1ch;
|
|
@@ -1704,46 +1706,46 @@
|
|
|
1704
1706
|
font-family: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
|
1705
1707
|
}
|
|
1706
1708
|
|
|
1707
|
-
.
|
|
1709
|
+
.github-md g-emoji img {
|
|
1708
1710
|
width: 1em;
|
|
1709
1711
|
height: 1em;
|
|
1710
1712
|
}
|
|
1711
1713
|
|
|
1712
|
-
.
|
|
1714
|
+
.github-md .task-list-item {
|
|
1713
1715
|
list-style-type: none;
|
|
1714
1716
|
}
|
|
1715
1717
|
|
|
1716
|
-
.
|
|
1718
|
+
.github-md .task-list-item label {
|
|
1717
1719
|
font-weight: var(--base-text-weight-normal, 400);
|
|
1718
1720
|
}
|
|
1719
1721
|
|
|
1720
|
-
.
|
|
1722
|
+
.github-md .task-list-item.enabled label {
|
|
1721
1723
|
cursor: pointer;
|
|
1722
1724
|
}
|
|
1723
1725
|
|
|
1724
|
-
.
|
|
1726
|
+
.github-md .task-list-item + .task-list-item {
|
|
1725
1727
|
margin-top: var(--base-size-4);
|
|
1726
1728
|
}
|
|
1727
1729
|
|
|
1728
|
-
.
|
|
1730
|
+
.github-md .task-list-item .handle {
|
|
1729
1731
|
display: none;
|
|
1730
1732
|
}
|
|
1731
1733
|
|
|
1732
|
-
.
|
|
1734
|
+
.github-md .task-list-item-checkbox {
|
|
1733
1735
|
vertical-align: middle;
|
|
1734
1736
|
margin: 0 0.2em 0.25em -1.4em;
|
|
1735
1737
|
}
|
|
1736
1738
|
|
|
1737
|
-
.
|
|
1739
|
+
.github-md ul:dir(rtl) .task-list-item-checkbox {
|
|
1738
1740
|
margin: 0 -1.6em 0.25em 0.2em;
|
|
1739
1741
|
}
|
|
1740
1742
|
|
|
1741
|
-
.
|
|
1743
|
+
.github-md ol:dir(rtl) .task-list-item-checkbox {
|
|
1742
1744
|
margin: 0 -1.6em 0.25em 0.2em;
|
|
1743
1745
|
}
|
|
1744
1746
|
|
|
1745
|
-
.
|
|
1746
|
-
.
|
|
1747
|
+
.github-md .contains-task-list:hover .task-list-item-convert-container,
|
|
1748
|
+
.github-md .contains-task-list:focus-within .task-list-item-convert-container {
|
|
1747
1749
|
display: block;
|
|
1748
1750
|
width: auto;
|
|
1749
1751
|
height: 24px;
|
|
@@ -1751,77 +1753,77 @@
|
|
|
1751
1753
|
clip: auto;
|
|
1752
1754
|
}
|
|
1753
1755
|
|
|
1754
|
-
.
|
|
1756
|
+
.github-md ::-webkit-calendar-picker-indicator {
|
|
1755
1757
|
filter: invert(50%);
|
|
1756
1758
|
}
|
|
1757
1759
|
|
|
1758
|
-
.
|
|
1760
|
+
.github-md .markdown-alert {
|
|
1759
1761
|
margin-bottom: var(--base-size-16);
|
|
1760
1762
|
border-left: 0.25em solid var(--borderColor-default);
|
|
1761
1763
|
padding: var(--base-size-8) var(--base-size-16);
|
|
1762
1764
|
color: inherit;
|
|
1763
1765
|
}
|
|
1764
1766
|
|
|
1765
|
-
.
|
|
1767
|
+
.github-md .markdown-alert > :first-child {
|
|
1766
1768
|
margin-top: 0;
|
|
1767
1769
|
}
|
|
1768
1770
|
|
|
1769
|
-
.
|
|
1771
|
+
.github-md .markdown-alert > :last-child {
|
|
1770
1772
|
margin-bottom: 0;
|
|
1771
1773
|
}
|
|
1772
1774
|
|
|
1773
|
-
.
|
|
1775
|
+
.github-md .markdown-alert .markdown-alert-title {
|
|
1774
1776
|
display: flex;
|
|
1775
1777
|
align-items: center;
|
|
1776
1778
|
font-weight: var(--base-text-weight-medium, 500);
|
|
1777
1779
|
line-height: 1;
|
|
1778
1780
|
}
|
|
1779
1781
|
|
|
1780
|
-
.
|
|
1782
|
+
.github-md .markdown-alert.markdown-alert-note {
|
|
1781
1783
|
border-left-color: var(--borderColor-accent-emphasis);
|
|
1782
1784
|
}
|
|
1783
1785
|
|
|
1784
|
-
.
|
|
1786
|
+
.github-md .markdown-alert.markdown-alert-note .markdown-alert-title {
|
|
1785
1787
|
color: var(--fgColor-accent);
|
|
1786
1788
|
}
|
|
1787
1789
|
|
|
1788
|
-
.
|
|
1790
|
+
.github-md .markdown-alert.markdown-alert-important {
|
|
1789
1791
|
border-left-color: var(--borderColor-done-emphasis);
|
|
1790
1792
|
}
|
|
1791
1793
|
|
|
1792
|
-
.
|
|
1794
|
+
.github-md .markdown-alert.markdown-alert-important .markdown-alert-title {
|
|
1793
1795
|
color: var(--fgColor-done);
|
|
1794
1796
|
}
|
|
1795
1797
|
|
|
1796
|
-
.
|
|
1798
|
+
.github-md .markdown-alert.markdown-alert-warning {
|
|
1797
1799
|
border-left-color: var(--borderColor-attention-emphasis);
|
|
1798
1800
|
}
|
|
1799
1801
|
|
|
1800
|
-
.
|
|
1802
|
+
.github-md .markdown-alert.markdown-alert-warning .markdown-alert-title {
|
|
1801
1803
|
color: var(--fgColor-attention);
|
|
1802
1804
|
}
|
|
1803
1805
|
|
|
1804
|
-
.
|
|
1806
|
+
.github-md .markdown-alert.markdown-alert-tip {
|
|
1805
1807
|
border-left-color: var(--borderColor-success-emphasis);
|
|
1806
1808
|
}
|
|
1807
1809
|
|
|
1808
|
-
.
|
|
1810
|
+
.github-md .markdown-alert.markdown-alert-tip .markdown-alert-title {
|
|
1809
1811
|
color: var(--fgColor-success);
|
|
1810
1812
|
}
|
|
1811
1813
|
|
|
1812
|
-
.
|
|
1814
|
+
.github-md .markdown-alert.markdown-alert-caution {
|
|
1813
1815
|
border-left-color: var(--borderColor-danger-emphasis);
|
|
1814
1816
|
}
|
|
1815
1817
|
|
|
1816
|
-
.
|
|
1818
|
+
.github-md .markdown-alert.markdown-alert-caution .markdown-alert-title {
|
|
1817
1819
|
color: var(--fgColor-danger);
|
|
1818
1820
|
}
|
|
1819
1821
|
|
|
1820
|
-
.
|
|
1822
|
+
.github-md > *:first-child > .heading-element:first-child {
|
|
1821
1823
|
margin-top: 0 !important;
|
|
1822
1824
|
}
|
|
1823
1825
|
|
|
1824
|
-
.
|
|
1826
|
+
.github-md .highlight pre:has(+ .zeroclipboard-container) {
|
|
1825
1827
|
min-height: 52px;
|
|
1826
1828
|
}
|
|
1827
1829
|
}
|