From 21af3b3208d4b50083242ef39156f2d75b094936 Mon Sep 17 00:00:00 2001 From: Marcel Werk Date: Fri, 9 Dec 2016 12:08:21 +0100 Subject: [PATCH] Fixed link colors in notices --- wcfsetup/install/files/style/ui/alert.scss | 48 ++++++++++++++++++++++ 1 file changed, 48 insertions(+) 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; + } + } } -- 2.20.1