diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 1ff22ed94ac..fe36a7ede9e 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -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. diff --git a/packages/hydefront/sass/docs/heading-permalinks.scss b/packages/hydefront/sass/docs/heading-permalinks.scss index d7e6396afa5..52ba4baef32 100644 --- a/packages/hydefront/sass/docs/heading-permalinks.scss +++ b/packages/hydefront/sass/docs/heading-permalinks.scss @@ -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; } }