Merge pull request #33937 from nextcloud/fix/menuitem-radius

Fix menuitem border radius
This commit is contained in:
Carl Schwan 2022-09-08 14:02:37 +02:00 committed by GitHub
commit 58706dd5aa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 5 additions and 8 deletions

View file

@ -661,7 +661,6 @@ table td.selection {
/* fix position of bubble pointer for Files app */
.bubble,
#app-navigation .app-navigation-entry-menu {
border-top-right-radius: 3px;
min-width: 100px;
}

File diff suppressed because one or more lines are too long

View file

@ -559,7 +559,6 @@ table td.selection {
/* fix position of bubble pointer for Files app */
.bubble,
#app-navigation .app-navigation-entry-menu {
border-top-right-radius: 3px;
min-width: 100px;
}

View file

@ -661,7 +661,6 @@ table td.selection {
/* fix position of bubble pointer for Files app */
.bubble,
#app-navigation .app-navigation-entry-menu {
border-top-right-radius: 3px;
min-width: 100px;
}

File diff suppressed because one or more lines are too long

View file

@ -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;

View file

@ -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;

View file

@ -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;