[scripts/markdown2htmldoc] always show header anchors on touchscreens

This commit is contained in:
Dmytro Meleshko 2021-06-03 13:17:20 +03:00
parent 81e6fa8a4f
commit 1a91687dd1
2 changed files with 9 additions and 3 deletions

File diff suppressed because one or more lines are too long

View file

@ -265,8 +265,14 @@ h6 {
} }
} }
&:hover .anchor { &:hover {
> * { .anchor > * {
visibility: visible;
}
}
@media (hover: none) {
.anchor > * {
visibility: visible; visibility: visible;
} }
} }