From ff758cea11f4e68b99b7ae7c909d890a51fbaeaa Mon Sep 17 00:00:00 2001 From: Robin Ward Date: Wed, 10 Dec 2014 10:25:35 -0500 Subject: [PATCH] FIX: Text in select2 dropdowns should not be variable since the background is always white. --- app/assets/stylesheets/common/base/combobox.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/assets/stylesheets/common/base/combobox.scss b/app/assets/stylesheets/common/base/combobox.scss index 93d0ae38a43..d6a478be7e3 100644 --- a/app/assets/stylesheets/common/base/combobox.scss +++ b/app/assets/stylesheets/common/base/combobox.scss @@ -11,7 +11,8 @@ color: $primary; } .category-desc { - color: scale-color($primary, $lightness: 45%); + /* leave this color as non-variable -- it is displayed on a white background in a dropdown */ + color: #333; margin: 6px 0 0 3px; font-size: 12px; line-height: 16px;