From: Marcel Werk Date: Thu, 1 Sep 2016 09:06:30 +0000 (+0200) Subject: Fixed overflow in popovers X-Git-Tag: 3.0.0_Beta_1~371 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=9c7c30c4ad97863d42520226cd87ebaca0fd0c8e;p=GitHub%2FWoltLab%2FWCF.git Fixed overflow in popovers --- diff --git a/wcfsetup/install/files/style/ui/popover.scss b/wcfsetup/install/files/style/ui/popover.scss index 4cdd72697f..5026c14e67 100644 --- a/wcfsetup/install/files/style/ui/popover.scss +++ b/wcfsetup/install/files/style/ui/popover.scss @@ -42,11 +42,14 @@ background-color: $wcfContentBackground; border-radius: 3px; color: $wcfContentText; - max-height: 320px; - min-height: 36px; - overflow: hidden; padding: 15px; + > div { + max-height: 290px; + min-height: 36px; + overflow: hidden; + } + a { color: $wcfContentLink;