Skip to content

Commit f1a9a1c

Browse files
committed
Fix dropdown arrow
Resolves #2845
1 parent bbeed14 commit f1a9a1c

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ title: Changelog
1919
- TypeDoc will now consider symbols to be external only if all of their declarations are external
2020
so that declaration merged members with global symbols can be documented, #2844.
2121
- Fixed an issue where TypeDoc would constantly rebuild, #2844.
22+
- Fixed an issue where the dropdown arrow in the index group would not respect the state of the dropdown, #2845.
2223

2324
### Thanks!
2425

static/style.css

+5-4
Original file line numberDiff line numberDiff line change
@@ -991,14 +991,15 @@
991991
vertical-align: text-top;
992992
}
993993
/*
994-
We need to be careful to target the arrow indicating whether the accordion
995-
is open, but not any other SVGs included in the details element.
996-
*/
994+
* We need to be careful to target the arrow indicating whether the accordion
995+
* is open, but not any other SVGs included in the details element.
996+
*/
997997
.tsd-accordion:not([open]) > .tsd-accordion-summary > svg:first-child,
998998
.tsd-accordion:not([open]) > .tsd-accordion-summary > h1 > svg:first-child,
999999
.tsd-accordion:not([open]) > .tsd-accordion-summary > h2 > svg:first-child,
10001000
.tsd-accordion:not([open]) > .tsd-accordion-summary > h3 > svg:first-child,
1001-
.tsd-accordion:not([open]) > .tsd-accordion-summary > h4 > svg:first-child {
1001+
.tsd-accordion:not([open]) > .tsd-accordion-summary > h4 > svg:first-child,
1002+
.tsd-accordion:not([open]) > .tsd-accordion-summary > h5 > svg:first-child {
10021003
transform: rotate(-90deg);
10031004
}
10041005
.tsd-index-content > :not(:first-child) {

0 commit comments

Comments
 (0)