From 7c6422e28f5b97383c2f519e218b56b45902c9d8 Mon Sep 17 00:00:00 2001 From: "Ernest W. Durbin III" Date: Tue, 24 Nov 2020 13:27:45 -0500 Subject: [PATCH] hotfix for css issue introduced in #1687 --- static/sass/style.css | 5 +++-- static/sass/style.scss | 3 +++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/static/sass/style.css b/static/sass/style.css index fb44c1e64..b4775810c 100644 --- a/static/sass/style.css +++ b/static/sass/style.css @@ -3628,8 +3628,9 @@ span.highlighted { text-align: center; } #sponsorship_application_container form { margin-bottom: 0; } - #sponsorship_application_container form .package_only_label { - color: #666666; } + #sponsorship_application_container form { + .package_only_label { color: #666666; } + .active { color: #3776ab; } } #sponsorship_application_container #package_selection { display: inline-block; } #sponsorship_application_container #package_selection li { diff --git a/static/sass/style.scss b/static/sass/style.scss index c91501ead..a837ff17d 100644 --- a/static/sass/style.scss +++ b/static/sass/style.scss @@ -2410,6 +2410,9 @@ span.highlighted { .package_only_label { color: $grey; } + .active { + color: $blue; + } } #package_selection {