Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make heading permalink hashes hidden when not hovered #1519

Merged
merged 3 commits into from
Feb 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading