mirror of
https://github.com/wekan/wekan.git
synced 2026-03-01 19:30:15 +01:00
Merge pull request #6106 from AymenHassini19/fix/member-settings-scroll-overflow
Reduce Member Settings Overflow for Better UI
This commit is contained in:
commit
218855eebf
1 changed files with 19 additions and 0 deletions
|
|
@ -93,6 +93,25 @@
|
||||||
max-height: inherit;
|
max-height: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Fix overflow in the Member Settings (member menu) popup:
|
||||||
|
the popup itself gets a max-height inline style, but the header consumes space.
|
||||||
|
Make the header overlay the scrollable area so the list can't spill out. */
|
||||||
|
.pop-over[data-popup="memberMenuPopup"] {
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
.pop-over[data-popup="memberMenuPopup"] > .header {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
margin-bottom: 0;
|
||||||
|
z-index: 1;
|
||||||
|
}
|
||||||
|
.pop-over[data-popup="memberMenuPopup"] > .content-wrapper {
|
||||||
|
padding-top: calc(4.5vh + 1vh);
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
/* Admin edit popups: use full height */
|
/* Admin edit popups: use full height */
|
||||||
.pop-over[data-popup="editUserPopup"],
|
.pop-over[data-popup="editUserPopup"],
|
||||||
.pop-over[data-popup="editOrgPopup"],
|
.pop-over[data-popup="editOrgPopup"],
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue