Not sure if this is a "bug", but it was not the intended color. The area where the logo is should be white. To make it white, as intended, edit
with
This is how the color will be in the next release.
If you want to make white also the other area (the one with the login form), change:
(it's in .td_content { )
with
This second change, however, also impacts on the background color of the main area of the application, which will probably keep as it is in the next release, so it's better for you to add your style to modify styles_screen_custom.css instead.
css/styles_screen.css
and replace:
background: #f3f5ff;
with
background: #fff;
This is how the color will be in the next release.
If you want to make white also the other area (the one with the login form), change:
background: rgb(243,245,255); /* createx */
(it's in .td_content { )
with
background: #fff; /* createx */
This second change, however, also impacts on the background color of the main area of the application, which will probably keep as it is in the next release, so it's better for you to add your style to modify styles_screen_custom.css instead.
Last edited: