diff options
author | Gusted <williamzijl7@hotmail.com> | 2022-07-28 20:40:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-28 20:40:23 +0200 |
commit | 9691d4310111e2754beb4bcb5406ef6eb2494b9f (patch) | |
tree | f234dacbac51f11a77090cb97e3b4c8a06f4dc37 /web_src/less/_base.less | |
parent | 8e3da0e27fd6da138b34b4a758c48f1d5e73df1f (diff) | |
download | gitea-9691d4310111e2754beb4bcb5406ef6eb2494b9f.tar.gz gitea-9691d4310111e2754beb4bcb5406ef6eb2494b9f.zip |
Fix dashboard switching on Mobile (#20238)
- 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.
Diffstat (limited to 'web_src/less/_base.less')
-rw-r--r-- | web_src/less/_base.less | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/web_src/less/_base.less b/web_src/less/_base.less index eb55ca8da8..0bf46497e3 100644 --- a/web_src/less/_base.less +++ b/web_src/less/_base.less @@ -2206,6 +2206,10 @@ table th[data-sortt-desc] { > .dropdown.item { position: initial; } + + .menu { + flex-direction: row; + } } } |