From 650f04149d61876954d985302aeaf6b90963df2b Mon Sep 17 00:00:00 2001 From: Alexander Ebert Date: Fri, 30 Jan 2015 19:18:01 +0100 Subject: [PATCH] Fixed interactive dropdown being incorrectly visible --- wcfsetup/install/files/style/dropdown.less | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wcfsetup/install/files/style/dropdown.less b/wcfsetup/install/files/style/dropdown.less index 43a8f036ac..ae4019370a 100644 --- a/wcfsetup/install/files/style/dropdown.less +++ b/wcfsetup/install/files/style/dropdown.less @@ -278,14 +278,14 @@ background-color: @wcfContainerAccentBackgroundColor; border: 1px solid @wcfDropdownBorderColor; color: @wcfDropdownColor; - display: none; + display: block; position: absolute; z-index: 450; .boxShadow(0, 3px, rgba(0, 0, 0, .25), 8px); - &.open { - display: block; + &:not(.open) { + display: none !important; } > .interactiveDropdownHeader { -- 2.20.1