diff options
author | Carl Schwan <carl@carlschwan.eu> | 2022-09-08 14:02:37 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-08 14:02:37 +0200 |
commit | 58706dd5aa12ac5bbd0364e34fe07834a985bb99 (patch) | |
tree | 189da3cc4a19742dd3544c89689ec71106761f4c /core | |
parent | 6404e5b4aebda310bbc32ee9b72805cbc0ae7ac1 (diff) | |
parent | ebd96490a5d982c283dccca69c9365340affe846 (diff) | |
download | nextcloud-server-58706dd5aa12ac5bbd0364e34fe07834a985bb99.tar.gz nextcloud-server-58706dd5aa12ac5bbd0364e34fe07834a985bb99.zip |
Merge pull request #33937 from nextcloud/fix/menuitem-radiusv25.0.0beta5
Fix menuitem border radius
Diffstat (limited to 'core')
-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 80e2714b705..2f246a2426f 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 49148c1f3fd..175caff691e 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 40c72785eaa..5e0ce4279be 100644 --- a/core/css/server.css +++ b/core/css/server.css @@ -3839,7 +3839,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; |