Fixed link colors in notices
authorMarcel Werk <burntime@woltlab.com>
Fri, 9 Dec 2016 11:08:21 +0000 (12:08 +0100)
committerMarcel Werk <burntime@woltlab.com>
Fri, 9 Dec 2016 11:08:21 +0000 (12:08 +0100)
wcfsetup/install/files/style/ui/alert.scss

index f597ccbc780abe1892bf5d010d4e79a9437eae7a..d683ddb88858a2f0c5dabd09fad1886e9505eafb 100644 (file)
        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,
        &::before {
                border-bottom-color: rgb(242, 222, 222);
        }
+       
+       a {
+               color: $wcfStatusErrorLink;
+               
+               &:hover {
+                       color: $wcfStatusErrorLinkActive;
+               }
+       }
 }
 
 /* sticky footer notices */
        &::before {
                border-bottom-color: $wcfStatusInfoBorder;
        }
+       
+       a {
+               color: $wcfStatusInfoLink;
+               
+               &:hover {
+                       color: $wcfStatusInfoLinkActive;
+               }
+       }
 }