bug fix: Login Link Color not updating all login links
Fixes: CNVS-38823 test plan: - as an admin using default canvas theme ensure the "Forgot Password" link on the login page is white vs link blue - next navigate to theme editor to test that switching the "Login Link Color" is respected and sticks :D example: https://screencast.com/t/ibeH0Uvrp Change-Id: Iff5c4a8318cdbaa8921e06365a93758c03887d60 Reviewed-on: https://gerrit.instructure.com/123828 Tested-by: Jenkins Reviewed-by: Chris Hart <chart@instructure.com> QA-Review: Dan Sasaki <dsasaki@instructure.com> Product-Review: Chris Hart <chart@instructure.com>
This commit is contained in:
parent
94a72d26b4
commit
0d0b5dc97d
|
@ -104,10 +104,10 @@ body.ic-Login-Body { // apply the background to the body element so that you don
|
|||
// these have !important because Canvas specificity on labels and
|
||||
// links will override these if we don't
|
||||
.ic-Form-control--login .ic-Label {
|
||||
color: var(--ic-brand-Login-Content-label-text-color !important);
|
||||
color: var(--ic-brand-Login-Content-label-text-color) !important;
|
||||
}
|
||||
.ic-Login__link {
|
||||
color: var(--ic-brand-Login-Content-password-text-color !important);
|
||||
color: var(--ic-brand-Login-Content-password-text-color) !important;
|
||||
text-decoration: underline;
|
||||
}
|
||||
.ic-Login__body__error {
|
||||
|
|
Loading…
Reference in New Issue