From: Alexander Ebert Date: Thu, 29 Jan 2015 17:54:04 +0000 (+0100) Subject: Fix for potential overflow issue in user dropdown X-Git-Tag: 2.1.0_Beta_4~33 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=705edc67ce51cff4edc0e138c24ff02e9b0148ad;p=GitHub%2FWoltLab%2FWCF.git Fix for potential overflow issue in user dropdown --- diff --git a/wcfsetup/install/files/style/dropdown.less b/wcfsetup/install/files/style/dropdown.less index cff6ff99a8..a8c9c5ec41 100644 --- a/wcfsetup/install/files/style/dropdown.less +++ b/wcfsetup/install/files/style/dropdown.less @@ -514,9 +514,12 @@ min-width: 350px; > .interactiveDropdownItemsContainer { - overflow: hidden; position: relative; + &:not(.interactiveDropdownItemsUserMenu) { + overflow: hidden; + } + > .interactiveDropdownItems > li:not(.loading) { max-width: 400px; }