Remove underlines from H2 headers that are links

The `contents::` directive in Sphinx causes the headers of referred
sections to become links back to the line in the table of
contents. This causes the headers to use the default attributes for
links, including underlines. The latter makes the header style out of
line with the rest of the documentation. A single `text-decoration:
none` in the custom CSS file fixes this (note: only for H2 headers
currently: these were the offending ones).
pull/428/head
Evert Rol 2018-10-10 14:51:10 +02:00
rodzic 3703750b8f
commit d7cee53419
1 zmienionych plików z 4 dodań i 0 usunięć

Wyświetl plik

@ -5,3 +5,7 @@ img.logo {
div.body p.caption {
font-size: 1.5em;
}
h2 a.toc-backref {
text-decoration: none;
}