diff options
author | Carl Schwan <carl@carlschwan.eu> | 2022-09-07 12:34:18 +0200 |
---|---|---|
committer | Carl Schwan <carl@carlschwan.eu> | 2022-09-08 10:25:20 +0200 |
commit | ebd96490a5d982c283dccca69c9365340affe846 (patch) | |
tree | 631efae21a66d95a403ffe33eb8053d4b2081a8d /core/css/apps.scss | |
parent | f496e471e06d546179e3f12af1e6cc9319db9bb3 (diff) | |
download | nextcloud-server-ebd96490a5d982c283dccca69c9365340affe846.tar.gz nextcloud-server-ebd96490a5d982c283dccca69c9365340affe846.zip |
Fix menuitem border radius
Fix #33909
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
Diffstat (limited to 'core/css/apps.scss')
-rw-r--r-- | core/css/apps.scss | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/css/apps.scss b/core/css/apps.scss index c72bd0ae2f8..2fcabe11a10 100644 --- a/core/css/apps.scss +++ b/core/css/apps.scss @@ -1062,7 +1062,7 @@ $outter-margin: math.div($popoveritem-height - $popovericon-size, 2); cursor: pointer; line-height: $popoveritem-height; border: 0; - border-radius: 0; // otherwise Safari will cut the border-radius area + border-radius: var(--border-radius-large); background-color: transparent; display: flex; align-items: flex-start; |