- This is a regression of improving mobile experience on Gitea, currently organization dashboard aren't readable and the popup won't show up when you want to switch between users/organization(as we saw in #19978). - This patch fixes that, by allowing the popup to allocate the required pixels(for some absurd reason, z-index doesn't work on the popup, so it's not able to render over the existing elements, we can investigate later of why this is). And also remove the additional dropdown menu for the pages link, so it's one unified list which then can be displayed as rows.
This commit is contained in:
parent
a9a440e600
commit
648ec3cfed
2 changed files with 10 additions and 0 deletions
|
@ -2204,5 +2204,9 @@ table th[data-sortt-desc] {
|
|||
> .dropdown.item {
|
||||
position: initial;
|
||||
}
|
||||
|
||||
.menu {
|
||||
flex-direction: row;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -81,6 +81,12 @@
|
|||
|
||||
.ui.dropdown {
|
||||
max-width: 100%;
|
||||
|
||||
@media @mediaSm {
|
||||
> .menu {
|
||||
position: static;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Reference in a new issue