aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorjulia.kirschenheuter <julia.kirschenheuter@nextcloud.com>2023-07-12 12:35:32 +0200
committerjulia.kirschenheuter <julia.kirschenheuter@nextcloud.com>2023-08-16 13:22:13 +0200
commit9545826fc4439abb42415127a88f1586eff6dd51 (patch)
tree3ae1e2d97ceb9eb9649c4e2172238178f690d597 /apps
parentf3fa006484c6dc7f3dd2504ea005dc3689ed4d44 (diff)
downloadnextcloud-server-9545826fc4439abb42415127a88f1586eff6dd51.tar.gz
nextcloud-server-9545826fc4439abb42415127a88f1586eff6dd51.zip
Set double outline on checked state for radio buttons
Signed-off-by: julia.kirschenheuter <julia.kirschenheuter@nextcloud.com>
Diffstat (limited to 'apps')
-rw-r--r--apps/user_status/src/components/OnlineStatusSelect.vue11
1 files changed, 5 insertions, 6 deletions
diff --git a/apps/user_status/src/components/OnlineStatusSelect.vue b/apps/user_status/src/components/OnlineStatusSelect.vue
index 64f0b8e02df..934adf18d5e 100644
--- a/apps/user_status/src/components/OnlineStatusSelect.vue
+++ b/apps/user_status/src/components/OnlineStatusSelect.vue
@@ -109,14 +109,13 @@ $label-padding: 8px;
}
}
- &__input:checked + &__label,
- &__input:focus + &__label,
- &__label:hover {
- border-color: var(--color-primary-element);
+ &__input:checked + &__label {
+ outline: 2px solid var(--color-main-text);
+ box-shadow: 0 0 0 4px var(--color-main-background);
}
- &__label:active {
- border-color: var(--color-border-dark);
+ &__input:focus-visible + &__label {
+ outline: 2px solid var(--color-primary-element) !important;
}
&__subline {