forked from AkkomaGang/akkoma-fe
Fix reply arrow highlighting in some accessibility tools
The cursor style needs to be "pointer" even before hovering, since keyboard-driven browsing never hovers over the elements.
This commit is contained in:
parent
d2079ecef4
commit
1287836eee
1 changed files with 5 additions and 0 deletions
|
@ -840,6 +840,11 @@ $status-margin: 0.75em;
|
||||||
&.button-icon-active {
|
&.button-icon-active {
|
||||||
color: $fallback--cBlue;
|
color: $fallback--cBlue;
|
||||||
color: var(--cBlue, $fallback--cBlue);
|
color: var(--cBlue, $fallback--cBlue);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.button-icon.icon-reply {
|
||||||
|
&:not(.button-icon-disabled) {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue