Skip to content

Commit

Permalink
Merge pull request #1519 from hydephp/make-invisible-permalinks-hidden
Browse files Browse the repository at this point in the history
Make heading permalink hashes hidden when not hovered
  • Loading branch information
caendesilva authored Feb 2, 2024
2 parents 0aca811 + 85177f4 commit ec26cfa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ This serves two purposes:

### Fixed
- Fixed icons not being considered as images by dashboard viewer in https://github.com/hydephp/develop/pull/1512
- HydeFront: Fixed bug where heading permalink buttons were included in text represented output in https://github.com/hydephp/develop/pull/1519

### Security
- in case of vulnerabilities.
2 changes: 2 additions & 0 deletions packages/hydefront/sass/docs/heading-permalinks.scss
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,14 @@

.heading-permalink {
opacity: 0;
visibility: hidden;
margin-left: 0.25rem;
transition: opacity 0.3s ease;
padding: 0 0.25rem;
scroll-margin: 1rem;
&:hover, &:focus {
opacity: 1;
visibility: visible;
filter: unset;
}
}
Expand Down

0 comments on commit ec26cfa

Please sign in to comment.