style/inline title: fix icon hover color

This commit is contained in:
Adorian Doran 2025-12-17 01:03:01 +02:00
parent 08730dd821
commit 84f7ae9f05

View File

@ -87,7 +87,7 @@ body.experimental-feature-new-layout {
background: transparent !important;
&, &:hover {
border-radius: 50%;
border-radius: 50%;
}
/* The icon */
@ -106,6 +106,12 @@ body.experimental-feature-new-layout {
background: var(--note-icon-button-background-color);
}
&:hover::after {
background: var(--note-icon-button-hover-background-color);
transition: background 200ms ease-out;
}
&:focus-visible {
outline: 2px solid var(--note-icon-button-color);
}