mirror of
https://github.com/nextcloud/server.git
synced 2026-03-21 18:11:02 -04:00
Merge pull request #33937 from nextcloud/fix/menuitem-radius
Fix menuitem border radius
This commit is contained in:
commit
58706dd5aa
8 changed files with 5 additions and 8 deletions
|
|
@ -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
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue