0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-01-30 22:52:24 +01:00

style the markdown toc a bit to hide the first item (the contents heading)

This commit is contained in:
Mark Otto 2015-05-29 01:59:20 -07:00
parent b455ed8def
commit 719afd48ac

View File

@ -78,3 +78,13 @@
}
}
}
//
// Markdown generated ToC
//
// Hide the first child li because it's always going to be "Contents".
#markdown-toc > li:first-child {
display: none;
}