From: Marcel Werk Date: Fri, 9 Dec 2016 11:08:21 +0000 (+0100) Subject: Fixed link colors in notices X-Git-Tag: 3.0.0_RC_1~65 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=21af3b3208d4b50083242ef39156f2d75b094936;p=GitHub%2FWoltLab%2FWCF.git Fixed link colors in notices --- diff --git a/wcfsetup/install/files/style/ui/alert.scss b/wcfsetup/install/files/style/ui/alert.scss index f597ccbc78..d683ddb888 100644 --- a/wcfsetup/install/files/style/ui/alert.scss +++ b/wcfsetup/install/files/style/ui/alert.scss @@ -18,24 +18,56 @@ background-color: $wcfStatusErrorBackground; border-color: $wcfStatusErrorBorder; color: $wcfStatusErrorText; + + a { + color: $wcfStatusErrorLink; + + &:hover { + color: $wcfStatusErrorLinkActive; + } + } } .info { background-color: $wcfStatusInfoBackground; border-color: $wcfStatusInfoBorder; color: $wcfStatusInfoText; + + a { + color: $wcfStatusInfoLink; + + &:hover { + color: $wcfStatusInfoLinkActive; + } + } } .success { background-color: $wcfStatusSuccessBackground; border-color: $wcfStatusSuccessBorder; color: $wcfStatusSuccessText; + + a { + color: $wcfStatusSuccessLink; + + &:hover { + color: $wcfStatusSuccessLinkActive; + } + } } .warning { background-color: $wcfStatusWarningBackground; border-color: $wcfStatusWarningBorder; color: $wcfStatusWarningText; + + a { + color: $wcfStatusWarningLink; + + &:hover { + color: $wcfStatusWarningLinkActive; + } + } } .innerError, @@ -67,6 +99,14 @@ &::before { border-bottom-color: rgb(242, 222, 222); } + + a { + color: $wcfStatusErrorLink; + + &:hover { + color: $wcfStatusErrorLinkActive; + } + } } /* sticky footer notices */ @@ -129,4 +169,12 @@ &::before { border-bottom-color: $wcfStatusInfoBorder; } + + a { + color: $wcfStatusInfoLink; + + &:hover { + color: $wcfStatusInfoLinkActive; + } + } }