diff --git a/lms/static/sass/views/_verification.scss b/lms/static/sass/views/_verification.scss index 6fa3b7bc50..3d0a26e842 100644 --- a/lms/static/sass/views/_verification.scss +++ b/lms/static/sass/views/_verification.scss @@ -368,16 +368,25 @@ .sts-track-value { @extend %copy-badge; - color: $white; + display: inline-block; background: $verified-color-lvl3; + color: $white; + font-weight: 600; .context { - margin-right: ($baseline/4); opacity: 0.80; color: $white; letter-spacing: 0.1rem; } } + + &.professional-ed { + + .sts-track-value { + background-color: $professional-color-lvl1; + } + + } } .sts-label { diff --git a/lms/templates/verify_student/_verification_header.html b/lms/templates/verify_student/_verification_header.html index 39a33e76eb..b3fdf46af8 100644 --- a/lms/templates/verify_student/_verification_header.html +++ b/lms/templates/verify_student/_verification_header.html @@ -22,17 +22,25 @@ ${course_name} + %if modes_dict and "professional" in modes_dict: + + + ${_("Professional Education")} + + + %else: %if upgrade: - ${_("Upgrading to:")} ${_("ID Verified")} + ${_("Upgrading to:")} ${_("Verified")} %elif reverify: - ${_("Re-verifying for:")} ${_("ID Verified")} + ${_("Re-verifying for:")} ${_("Verified")} %else: - ${_("Registering as: ")} ${_("ID Verified")} + ${_("Registering as: ")} ${_("Verified")} %endif + %endif @@ -58,11 +66,11 @@ %if upgrade: - ${_("Upgrading to:")} ${_("ID Verified")} + ${_("Upgrading to:")} ${_("Verified")} %elif reverify: - ${_("Re-verifying for:")} ${_("ID Verified")} + ${_("Re-verifying for:")} ${_("Verified")} %else: - ${_("Registering as: ")} ${_("ID Verified")} + ${_("Registering as: ")} ${_("Verified")} %endif