Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorCarl Schwan <carl@carlschwan.eu>2022-09-08 15:02:37 +0300
committerGitHub <noreply@github.com>2022-09-08 15:02:37 +0300
commit58706dd5aa12ac5bbd0364e34fe07834a985bb99 (patch)
tree189da3cc4a19742dd3544c89689ec71106761f4c /core
parent6404e5b4aebda310bbc32ee9b72805cbc0ae7ac1 (diff)
parentebd96490a5d982c283dccca69c9365340affe846 (diff)
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.css2
-rw-r--r--core/css/apps.scss2
-rw-r--r--core/css/server.css2
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;