Skip to content

Commit

Permalink
doc: fix styles of the expandable TOC
Browse files Browse the repository at this point in the history
PR-URL: nodejs/node#56755
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com>
Reviewed-By: Claudio Wunder <cwunder@gnome.org>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
  • Loading branch information
aduh95 committed Jan 26, 2025
1 parent 9ebf29a commit c7d9e51
Showing 1 changed file with 11 additions and 23 deletions.
34 changes: 11 additions & 23 deletions src/generators/legacy-html/assets/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -599,38 +599,26 @@ hr {
.toc ul {
margin: 0;
}

.toc li a::before {
content: '■';
color: var(--color-text-primary);
padding-right: 1em;
font-size: 0.9em;
.toc > ul:first-child {
margin-left: 1rem;
}
.toc li {
display: list-item;
list-style: square;
}
.toc li a {
display: inline;
padding-left: 0;
}

.toc li a:hover::before {
color: var(--white);
}

.toc ul ul a {
.toc ul {
padding-left: 1rem;
}

.toc ul ul ul a {
padding-left: 2rem;
}

.toc ul ul ul ul a {
padding-left: 3rem;
}

.toc ul ul ul ul ul a {
padding-left: 4rem;
}

.toc ul ul ul ul ul ul a {
padding-left: 5rem;
}

#toc .stability_0::after,
.deprecated-inline::after {
background-color: var(--red2);
Expand Down

0 comments on commit c7d9e51

Please sign in to comment.