Also hide function name adornments when printing

This commit is contained in:
Adrian Welcker 2022-05-02 12:10:57 +02:00
parent 2e141423c7
commit 26a91efeb0
2 changed files with 15 additions and 2 deletions

View file

@ -25,8 +25,15 @@ body {
-webkit-font-smoothing: antialiased;
}
a.function-link:link, a.function-link:visited {
@media screen {
a.function-link:link, a.function-link:visited {
text-decoration: black solid underline;
}
}
@media print {
a.function-link {
text-decoration: none;
}
}
a.function-link:active, a.function-link:hover {
font-weight: 700

View file

@ -9,6 +9,12 @@
user-select: none;
}
@media print {
.popup {
display: none;
}
}
/* The actual popup */
.popup .popuptext {
visibility: hidden;