Test Group

A place to test all kind of things.
[Random entry]

 tags  journal  gallery  playlist  RSS

11.4.2021 11:10:03

Workaround for oversized group popup menu when following of too many groups

Adding this to CSS code for group/user/etc styles would just do that.

@media screen and (min-width:1024px) {
.navbar-dropdown {
overflow: auto;
max-height: calc(100vh - 3.25rem)
}
}

Edit: updated code to be compatible with the menu shown for smaller screens, should no longer affect items shown in this menu.


reposted by webdev
6.2.2021 20:28:20

Groups menu does not fit into screen when too many groups are followed, also not being able to scroll the list and access all the items is annoying too. Workaround: css shown below (add this to user/group/etc custom css until this gets added to main site code)

@media screen and (min-width:1024px) {
    .navbar-dropdown {
        overflow: auto;
        max-height: calc(100vh - 3.25rem)
    }
}

 

Timeline speed: 0.95 posts per month

 

You have reached the end...

THE END

login