[Rt-commit] rt branch, 5.0/fix-edit-cf-dropdown-color-dark-theme, created. rt-5.0.0beta1-1-g1036c9837f

Blaine Motsinger blaine at bestpractical.com
Mon Jun 8 17:21:20 EDT 2020


The branch, 5.0/fix-edit-cf-dropdown-color-dark-theme has been created
        at  1036c9837f3ef67c87c24037e4ab487153a7a2c5 (commit)

- Log -----------------------------------------------------------------
commit 1036c9837f3ef67c87c24037e4ab487153a7a2c5
Author: Blaine Motsinger <blaine at bestpractical.com>
Date:   Mon Jun 8 16:19:40 2020 -0500

    Fix edit CF dropdown color for dark theme
    
    This commit fixes the Custom Field select dropdown background color
    by adding in a missing form-control class.

diff --git a/share/html/Elements/EditCustomFieldSelect b/share/html/Elements/EditCustomFieldSelect
index edeebd410c..eccdbabd8f 100644
--- a/share/html/Elements/EditCustomFieldSelect
+++ b/share/html/Elements/EditCustomFieldSelect
@@ -94,7 +94,7 @@
 <select
   name="<%$name%>" id="<%$name%>"
 
-    class="CF-Edit CF-<%$CustomField->id%>-Edit <% $RenderType eq 'Dropdown' ? 'selectpicker' : 'form-control' %>"
+    class="CF-Edit CF-<%$CustomField->id%>-Edit form-control <% $RenderType eq 'Dropdown' ? 'selectpicker' : '' %>"
 %   if ( $use_chosen ) {
     data-live-search="true"
 %   }

-----------------------------------------------------------------------


More information about the rt-commit mailing list