Skip to content

Commit bc40438

Browse files
authored
Merge pull request #337 from legumeinfo/linkout-cleanup
Remove queryString and service properties from linkout element
2 parents 68becb6 + 9ae37de commit bc40438

File tree

61 files changed

+3182
-3056
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+3182
-3056
lines changed

Diff for: docs/assets/main.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: docs/assets/navigation.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: docs/assets/search.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: docs/assets/style.css

+35-15
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
--light-color-ts-constructor-signature: var(--light-color-ts-constructor);
3030
--light-color-ts-parameter: var(--light-color-ts-variable);
3131
/* type literal not included as links will never be generated to it */
32-
--light-color-ts-type-parameter: var(--light-color-ts-type-alias);
32+
--light-color-ts-type-parameter: #a55c0e;
3333
--light-color-ts-accessor: var(--light-color-ts-property);
3434
--light-color-ts-get-signature: var(--light-color-ts-accessor);
3535
--light-color-ts-set-signature: var(--light-color-ts-accessor);
@@ -69,7 +69,7 @@
6969
--dark-color-ts-constructor-signature: var(--dark-color-ts-constructor);
7070
--dark-color-ts-parameter: var(--dark-color-ts-variable);
7171
/* type literal not included as links will never be generated to it */
72-
--dark-color-ts-type-parameter: var(--dark-color-ts-type-alias);
72+
--dark-color-ts-type-parameter: #e07d13;
7373
--dark-color-ts-accessor: var(--dark-color-ts-property);
7474
--dark-color-ts-get-signature: var(--dark-color-ts-accessor);
7575
--dark-color-ts-set-signature: var(--dark-color-ts-accessor);
@@ -266,12 +266,12 @@ h6 {
266266
line-height: 1.2;
267267
}
268268

269-
h1 > a,
270-
h2 > a,
271-
h3 > a,
272-
h4 > a,
273-
h5 > a,
274-
h6 > a {
269+
h1 > a:not(.link),
270+
h2 > a:not(.link),
271+
h3 > a:not(.link),
272+
h4 > a:not(.link),
273+
h5 > a:not(.link),
274+
h6 > a:not(.link) {
275275
text-decoration: none;
276276
color: var(--color-text);
277277
}
@@ -649,6 +649,28 @@ input[type="checkbox"]:checked ~ svg .tsd-checkbox-checkmark {
649649
font-weight: bold;
650650
}
651651

652+
.tsd-full-hierarchy:not(:last-child) {
653+
margin-bottom: 1em;
654+
padding-bottom: 1em;
655+
border-bottom: 1px solid var(--color-accent);
656+
}
657+
.tsd-full-hierarchy,
658+
.tsd-full-hierarchy ul {
659+
list-style: none;
660+
margin: 0;
661+
padding: 0;
662+
}
663+
.tsd-full-hierarchy ul {
664+
padding-left: 1.5rem;
665+
}
666+
.tsd-full-hierarchy a {
667+
padding: 0.25rem 0 !important;
668+
font-size: 1rem;
669+
display: inline-flex;
670+
align-items: center;
671+
color: var(--color-text);
672+
}
673+
652674
.tsd-panel-group.tsd-index-group {
653675
margin-bottom: 0;
654676
}
@@ -714,12 +736,15 @@ input[type="checkbox"]:checked ~ svg .tsd-checkbox-checkmark {
714736
}
715737
.tsd-navigation > a,
716738
.tsd-navigation .tsd-accordion-summary {
717-
width: calc(100% - 0.5rem);
739+
width: calc(100% - 0.25rem);
740+
display: flex;
741+
align-items: center;
718742
}
719743
.tsd-navigation a,
720744
.tsd-navigation summary > span,
721745
.tsd-page-navigation a {
722-
display: inline-flex;
746+
display: flex;
747+
width: calc(100% - 0.25rem);
723748
align-items: center;
724749
padding: 0.25rem;
725750
color: var(--color-text);
@@ -759,11 +784,6 @@ input[type="checkbox"]:checked ~ svg .tsd-checkbox-checkmark {
759784
margin-left: -1.5rem;
760785
}
761786

762-
.tsd-nested-navigation > li > a,
763-
.tsd-nested-navigation > li > span {
764-
width: calc(100% - 1.75rem - 0.5rem);
765-
}
766-
767787
.tsd-page-navigation ul {
768788
padding-left: 1.75rem;
769789
}

0 commit comments

Comments
 (0)