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:
eal 2019-10-17 16:44:22 +03:00
parent d2079ecef4
commit 1287836eee

View file

@ -840,6 +840,11 @@ $status-margin: 0.75em;
&.button-icon-active {
color: $fallback--cBlue;
color: var(--cBlue, $fallback--cBlue);
}
}
.button-icon.icon-reply {
&:not(.button-icon-disabled) {
cursor: pointer;
}
}