<!-- If you want your bug report * to be more difficult to process and understand * to have many unnecessary follow-up questions * to take longer to fix then necessary don’t use this issue template. If you want your bug report * to be concise and easy to understand * to not have any (or very few) follow-up questions * to take faster to fix use this issue template. Thank you. --> ### Short description of the issue Jquery overrides for background color on AdminThemeUiKit settings. ### Expected behavior Should be able to style using LESS or CSS but the jquery call overrides. ### Actual behavior Jquery call overrides background color style. ### Optional: Screenshots/Links that demonstrate the issue  ### Optional: Suggestion for a possible fix Either eliminate or replace this code in \wire\modules\AdminTheme\AdminThemeUikit\config-field.js:: ``` $(document).ready(function() { $('#_adminTheme').find('input[type=radio],input[type=checkbox]').change(function() { updateAdminThemeUikitExample(); }); $('#_adminTheme, #_adminTheme > *').css('background-color', '#fff'); // <--- This seems to be the culprit. updateAdminThemeUikitExample(); initAdminThemeUikitColumnWidth(); }); ``` * ProcessWire version: 3.0.213