Added accessibility report page
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
@mixin msfa__link($ignore-visited: false) {
|
||||
@mixin msfa__link($ignore-visited: false, $theme: 'dark') {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
@@ -7,11 +7,23 @@
|
||||
font-weight: var(--digi--typography--font-weight--semibold);
|
||||
gap: var(--digi--layout--gutter--xs);
|
||||
|
||||
@if ($theme == 'light') {
|
||||
color: var(--digi--typography--color--text--light);
|
||||
|
||||
&:visited {
|
||||
color: var(--digi--typography--color--text--light);
|
||||
|
||||
&:hover {
|
||||
color: var(--digi--typography--color--text--light);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
@if $ignore-visited {
|
||||
@if ($ignore-visited) {
|
||||
&:visited {
|
||||
color: var(--digi--typography--color--link);
|
||||
|
||||
|
||||
@@ -94,10 +94,10 @@ dl {
|
||||
}
|
||||
|
||||
&__link {
|
||||
@include msfa__link(false);
|
||||
@include msfa__link(false, 'light');
|
||||
|
||||
&--ignore-visited:visited {
|
||||
@include msfa__link(true);
|
||||
@include msfa__link(true, 'light');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user