Author Topic: fix font problem for login and password with Google Chrome autocomplete  (Read 4692 times)

Offline mv43

  • Newbie
  • *
  • Posts: 2
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.