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 | |
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')
-rw-r--r-- | core/css/apps.css | 2 | ||||
-rw-r--r-- | core/css/apps.scss | 2 | ||||
-rw-r--r-- | core/css/server.css | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/core/css/apps.css b/core/css/apps.css index 0a1ff5a344f..c52b2ccfd6a 100644 --- a/core/css/apps.css +++ b/core/css/apps.css @@ -1059,7 +1059,7 @@ kbd { cursor: pointer; line-height: 44px; border: 0; - border-radius: 0; + border-radius: var(--border-radius-large); background-color: transparent; display: flex; align-items: flex-start; 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; diff --git a/core/css/server.css b/core/css/server.css index 5fabbc7fc5b..0e7bc072a83 100644 --- a/core/css/server.css +++ b/core/css/server.css @@ -3832,7 +3832,7 @@ kbd { cursor: pointer; line-height: 44px; border: 0; - border-radius: 0; + border-radius: var(--border-radius-large); background-color: transparent; display: flex; align-items: flex-start; |