Roundcube Community Forum

 

fix font problem for login and password with Google Chrome autocomplete

Started by mv43, March 19, 2020, 12:51:33 PM

Previous topic - Next topic

mv43

Hello,

To keep the correct appearance inside the HTML input of the login and the password when you have several login/password in the Google Chrome autocomplete popup,  I just added this to my Roundcube installation :

#rcmloginuser:-webkit-autofill, #rcmloginuser:-webkit-autofill:hover, #rcmloginuser:-webkit-autofill:first-line,
#rcmloginpwd:-webkit-autofill,  #rcmloginpwd:-webkit-autofill:hover, #rcmloginpwd:-webkit-autofill:first-line
{
    font-family: 'Roboto', sans-serif !important;
    font-size: 1.25rem !important;
    font-weight: 400 !important;
}


Works fine for me.

Thanks.