From 1287836eeea0fc10935476865dba850b8a91fb13 Mon Sep 17 00:00:00 2001 From: eal Date: Thu, 17 Oct 2019 16:44:22 +0300 Subject: [PATCH] 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. --- src/components/status/status.vue | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/components/status/status.vue b/src/components/status/status.vue index 93f37a49..912f77d2 100644 --- a/src/components/status/status.vue +++ b/src/components/status/status.vue @@ -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; } }