Fix styling on help page content list in sidebar.

This commit is contained in:
Andrew Manning 2017-08-03 01:56:54 +00:00
parent 2a34a497d5
commit a100c47f11
2 changed files with 9 additions and 0 deletions

View File

@ -85,6 +85,7 @@
tocUl.removeClass(); // Classes are automatically added to <ul> elements by something else
tocUl.toc({content: "#doco-content", headings: "h3"});
tocUl.addClass('toc-content');
tocUl.addClass('list-unstyled');
tocUl.attr('id', 'doco-side-toc');
}

View File

@ -19,3 +19,11 @@
#doco-top-toc li {
padding: 3px 0px;
}
#doco-side-toc li {
padding-left: 10px;
}
#doco-side-toc {
padding-top: 10px;
}