Roundcube Community Forum

Release Support => Requests => Topic started by: mv43 on March 19, 2020, 12:51:33 PM

Title: fix font problem for login and password with Google Chrome autocomplete
Post by: mv43 on March 19, 2020, 12:51:33 PM
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 :

Code: [Select]
#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.