FIXED DaDaBIK 12.0, wrong background color for login form

eugenio

Administrator
Staff member
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 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:

ChrisG

Member
The first change you mentioned. I do not find it in css/styles_screen.css to replace. What am I missing?
replace background: #f3f5ff;
with
background: #fff;
 

eugenio

Administrator
Staff member
The first change you mentioned. I do not find it in css/styles_screen.css to replace. What am I missing?
replace background: #f3f5ff;
with
background: #fff;
I would say it's impossible, it must be there unless you changed that file.
 

deep64blue

DaDaBIK Guru
This is the whole context on line 475-480 of a fresh copy of styles_screen.css

.table_interface_container_tr_logo_login > td { /* hack, new */
background: #0b0f19; /* createx */
background: #f3f5ff;
text-align:center; /* createx */
border:1px solid #cbced9 !important; /* createx */
}
 
Top