Skip to content
Snippets Groups Projects
Commit 01e8e691 authored by Kevin Paxman's avatar Kevin Paxman Committed by Eric Bremner
Browse files

ISTWCMS-7270: ensure footer link blocks links have white text when on no...

ISTWCMS-7270: ensure footer link blocks links have white text when on no background, and black text when on white background
parent b969383f
No related branches found
No related tags found
1 merge request!262ISTWCMS-7270: ensure footer link blocks links have white text when on no...
......@@ -245,6 +245,25 @@
}
.uw-link__link-color--#{$faculty} {
.uw-site-footer & a {
&.uw-link-list__related,
&.uw-link-list__navbar,
&.uw-link-list__option,
&.uw-link-list__quick {
@include link(
var(--uw-white),
var(--uw-white)
);
}
@if $faculty != org-default {
&.uw-link-list__buttons {
@include link(
var(--uw-white),
var(--uw-white)
);
}
}
}
@if $faculty == org-default {
a {
&.uw-link-list__buttons {
......@@ -489,6 +508,11 @@ a {
--link-color-2: var(--uw-white);
}
// Overrode background colour for black background links in the footer.
.uw-site-footer__content .uw-link__bg-color.uw-link__bg-color--org-default-b & {
--link-color-2: var(--uw-black);
}
// Force links black.
.uw-link__image-link-color--black-with &,
.uw-link__image-link-color--black-without &,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment