We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 769cc0a commit e839ef0Copy full SHA for e839ef0
src/renderer/html_handlebars/helpers/toc.rs
@@ -191,7 +191,7 @@ fn write_li_open_tag(
191
is_expanded: bool,
192
is_affix: bool,
193
) -> Result<(), std::io::Error> {
194
- let mut li = String::from("<li class=\"");
+ let mut li = String::from("<li class=\"chapter-item ");
195
if is_expanded {
196
li.push_str("expanded ");
197
}
src/theme/css/chrome.css
@@ -423,7 +423,7 @@ ul#searchresults span.teaser em {
423
display: none;
424
425
426
-.chapter li.expanded {
+.chapter li.chapter-item {
427
line-height: 1.5em;
428
margin-top: 0.6em;
429
0 commit comments