diff options
| author | eal <eal@waifu.club> | 2019-10-17 16:44:22 +0300 |
|---|---|---|
| committer | eal <eal@waifu.club> | 2019-10-17 16:44:22 +0300 |
| commit | 1287836eeea0fc10935476865dba850b8a91fb13 (patch) | |
| tree | 5cb13af30afdec8d7465c87ba480657bb247c2a6 /src | |
| parent | d2079ecef496047e114591b1aaf8f6a0a3474c91 (diff) | |
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.
Diffstat (limited to 'src')
| -rw-r--r-- | src/components/status/status.vue | 5 |
1 files changed, 5 insertions, 0 deletions
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; } } |
