[CST-4659] Deque accessibility issues - 470001

This commit is contained in:
Davide Negretti
2021-09-30 18:11:24 +02:00
parent a2eb16d328
commit a80d9694d8
4 changed files with 26 additions and 6 deletions

View File

@@ -17,3 +17,23 @@
z-index: var(--ds-submission-footer-z-index);
}
.btn-link-focus {
// behave as btn-link but does not override box-shadow of btn-link:focus
font-weight: $font-weight-normal;
color: $link-color;
text-decoration: $link-decoration;
@include hover {
color: $link-hover-color;
text-decoration: $link-hover-decoration;
}
&:disabled,
&.disabled {
color: $btn-link-disabled-color;
pointer-events: none;
}
&:focus,
&.focus {
text-decoration: $link-hover-decoration;
}
}