Skip to content

Commit

Permalink
Flip chevrons when subtree is expanded (#1584)
Browse files Browse the repository at this point in the history
  • Loading branch information
gabalafou committed Dec 6, 2023
1 parent 370db00 commit 2714005
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -40,15 +40,15 @@
~ ul {
display: none;
}
~ label i {
~ label .fa-chevron-down {
transform: rotate(0deg);
}
}
.toctree-checkbox:checked {
~ ul {
display: block;
}
~ label i {
~ label .fa-chevron-down {
transform: rotate(180deg);
}
}
Expand Down

0 comments on commit 2714005

Please sign in to comment.