You're most welcome Marcus.
We did updated some of the HTML structure in Easysocial 3.x, it might affected this but it won't remove your custom css from this section backend > Easysocial > theme > custom css
By the way, you can apply this following css to load back previous login page styling :
Find these codes :
#es .btn-es-primary:hover {
color:#f3eeed !important;
background-color: #72724c !important;
border-color: #72724c !important;
}
#es .btn-es-primary-o {
color: #428bca !important;
/* KD 2018-05-19 background-color: #fff !important; */
border-color: #ddd !important; /* KD 2018-05-19 */
text-transform: uppercase!important; /* KD 2018-05-19 */
}
Replace with
#es .btn-es-primary:hover {
color:#72724c !important;
background-color: #f3eeed !important;
border-color: #72724c !important;
}
#es .btn-es-primary-o {
color: #72724c !important;
/* KD 2018-05-19 background-color: #fff !important; */
border-color: #ddd !important; /* KD 2018-05-19 */
text-transform: uppercase!important; /* KD 2018-05-19 */
}