clarkwinkelmann I thought it was only on actual mobile devices but, I'm on a Chromebook right now, opened the dev console, put it into mobile viewport mode, and it happens. The following fixes it:
.dropdown-backdrop {
position: fixed;
left: 0;
right: 0;
bottom: 0;
top: 0;
z-index: 999;
}
By default, at least for me, that z-index is set to 1020. 1020 seems to be too high for the user directory. Or, this also fixes it of course, doing the opposite. Changing the z-index on the menu itself from 999 to 1000+...
.UserDirectoryList .UserCard--directory .Dropdown-menu {
z-index: 1020;
}
I'm going to go with the 2nd option for now. I'll put the following in my custom css.
.UserDirectoryList .UserCard--directory .Dropdown-menu {
z-index: 1020 !important;
}