From 0d0b5dc97d11daafa98e1d4cf6c6adb5d2848382 Mon Sep 17 00:00:00 2001 From: Pam Hiett Date: Thu, 24 Aug 2017 10:15:18 -0600 Subject: [PATCH] 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 QA-Review: Dan Sasaki Product-Review: Chris Hart --- app/stylesheets/pages/login/_ic-login.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/stylesheets/pages/login/_ic-login.scss b/app/stylesheets/pages/login/_ic-login.scss index a6ea0ad9b3a..bc45deb5d93 100644 --- a/app/stylesheets/pages/login/_ic-login.scss +++ b/app/stylesheets/pages/login/_ic-login.scss @@ -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 {