forked from remote/pelican
fix: visibility
This commit is contained in:
parent
d8620e24dc
commit
a378b21bf0
2 changed files with 7 additions and 1 deletions
|
|
@ -72,7 +72,8 @@
|
|||
/*Hide heading anchor links unless hovering over them*/
|
||||
.headerlink {
|
||||
/*@apply no-underline text-rp-dawn-love ml-1 md:ml-2 hover:no-underline;*/
|
||||
@apply no-underline text-rp-dawn-love ml-1 md:ml-2 hover:no-underline opacity-0 transition-opacity duration-150 visibility: hidden;
|
||||
@apply no-underline text-rp-dawn-love ml-1 md:ml-2 hover:no-underline opacity-0 transition-opacity duration-150;
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
h1:hover .headerlink,
|
||||
|
|
|
|||
|
|
@ -1577,6 +1577,10 @@ code {
|
|||
}
|
||||
}
|
||||
|
||||
.headerlink {
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
h1:hover .headerlink,
|
||||
h2:hover .headerlink,
|
||||
h3:hover .headerlink,
|
||||
|
|
@ -1585,6 +1589,7 @@ h5:hover .headerlink,
|
|||
h6:hover .headerlink,
|
||||
.headerlink:focus-visible {
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.note {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue