aboutsummaryrefslogtreecommitdiffstats
path: root/core/css/apps.scss
diff options
context:
space:
mode:
authorjulia.kirschenheuter <julia.kirschenheuter@nextcloud.com>2023-07-04 09:10:50 +0200
committerjulia.kirschenheuter <julia.kirschenheuter@nextcloud.com>2023-07-11 11:22:39 +0200
commit34bbb4ed48fea55fb3c3bae409eb8a326bfca8f2 (patch)
tree749c07a813dbced4e04815efd43831bd0bace82f /core/css/apps.scss
parent12ee2581aa943da93054f7839fecc8f83eb3cee1 (diff)
downloadnextcloud-server-34bbb4ed48fea55fb3c3bae409eb8a326bfca8f2.tar.gz
nextcloud-server-34bbb4ed48fea55fb3c3bae409eb8a326bfca8f2.zip
Set double outline to buttons in focus state
Signed-off-by: julia.kirschenheuter <julia.kirschenheuter@nextcloud.com>
Diffstat (limited to 'core/css/apps.scss')
-rw-r--r--core/css/apps.scss6
1 files changed, 5 insertions, 1 deletions
diff --git a/core/css/apps.scss b/core/css/apps.scss
index aad7eaff631..5209d089f08 100644
--- a/core/css/apps.scss
+++ b/core/css/apps.scss
@@ -731,7 +731,7 @@ $min-content-width: variables.$breakpoint-mobile - variables.$navigation-width -
}
}
}
-
+
&::-webkit-scrollbar-button {
height: var(--body-container-radius);
}
@@ -1430,3 +1430,7 @@ $outter-margin: math.div($popoveritem-height - $popovericon-size, 2);
display: flex;
}
}
+.button.primary.skip-navigation:focus-visible {
+ box-shadow: 0 0 0 4px var(--color-main-background) !important;
+ outline: 2px solid var(--color-main-text) !important;
+}