diff options
author | Christopher Ng <chrng8@gmail.com> | 2021-11-26 00:16:02 +0000 |
---|---|---|
committer | nextcloud-command <nextcloud-command@users.noreply.github.com> | 2021-11-26 00:26:20 +0000 |
commit | 7ad07d6aa6b891929d9f24124ba5ed2ed0ab6ca9 (patch) | |
tree | 39424d52685157ba61269876be2c104b860d01a8 /core/src/components | |
parent | 88129925eee39671d2b072eca793beeefef5e942 (diff) | |
download | nextcloud-server-7ad07d6aa6b891929d9f24124ba5ed2ed0ab6ca9.tar.gz nextcloud-server-7ad07d6aa6b891929d9f24124ba5ed2ed0ab6ca9.zip |
Improve accessibility
Signed-off-by: Christopher Ng <chrng8@gmail.com>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
Diffstat (limited to 'core/src/components')
-rw-r--r-- | core/src/components/Profile/PrimaryActionButton.vue | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/core/src/components/Profile/PrimaryActionButton.vue b/core/src/components/Profile/PrimaryActionButton.vue index 069463b060d..7cfff4bc664 100644 --- a/core/src/components/Profile/PrimaryActionButton.vue +++ b/core/src/components/Profile/PrimaryActionButton.vue @@ -96,7 +96,9 @@ export default { } } - &:hover { + &:hover, + &:focus, + &:active { background-color: var(--color-primary-element-light); } } |