diff options
author | Christopher Ng <chrng8@gmail.com> | 2023-08-18 18:01:12 -0700 |
---|---|---|
committer | Christopher Ng <chrng8@gmail.com> | 2023-08-21 16:24:55 -0700 |
commit | 32f5e0bd969b399255715f38e0a2a24085ec5b2f (patch) | |
tree | 3358fe08f26835d4c4734c757ac415c9c7d21cfd /core/css/inputs.scss | |
parent | f1c2dfc094f633953331850563d05b1581ec82e2 (diff) | |
download | nextcloud-server-32f5e0bd969b399255715f38e0a2a24085ec5b2f.tar.gz nextcloud-server-32f5e0bd969b399255715f38e0a2a24085ec5b2f.zip |
fix(settings): Keyboard focus outline for app nav button
Signed-off-by: Christopher Ng <chrng8@gmail.com>
Diffstat (limited to 'core/css/inputs.scss')
-rw-r--r-- | core/css/inputs.scss | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/css/inputs.scss b/core/css/inputs.scss index a5b9638d7ca..6c4ca51e05a 100644 --- a/core/css/inputs.scss +++ b/core/css/inputs.scss @@ -95,7 +95,8 @@ button:not( } } &:focus-visible { - box-shadow: 0 0 0 2px var(--color-primary-element); + box-shadow: 0 0 0 4px var(--color-main-background) !important; + outline: 2px solid var(--color-main-text) !important; } } &:disabled { |