From 5a7ae5f9c6b7756d699340dee674c9548225420e Mon Sep 17 00:00:00 2001 From: Glenn Rice Date: Thu, 7 Jul 2022 07:24:40 -0500 Subject: [PATCH] Tweak the styles for lables, text inputs, selects, and textareas in problems. This removes the font size and from these elements. It also removes the font-family that was set on selects. The font family still applies to textreas and text inputs. --- htdocs/js/apps/Problem/problem.scss | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/htdocs/js/apps/Problem/problem.scss b/htdocs/js/apps/Problem/problem.scss index d85a39204e..1073c66f15 100644 --- a/htdocs/js/apps/Problem/problem.scss +++ b/htdocs/js/apps/Problem/problem.scss @@ -34,7 +34,6 @@ /* Problem elements */ label, input[type=text], select, textarea { - font-size: 16px; font-weight: normal; line-height: 18px; width: auto; @@ -48,10 +47,13 @@ vertical-align: middle; border: 1px solid #ccc; border-radius: 4px; - font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; background-color: white; } + textarea, input[type=text] { + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + } + input[type=text] { height: 30px; font-size: 14px;