Created attachment 1259 [details] Webaccess fancy placeholder in Chrome Seen in ThinLinc version 4.18.0 in Chrome 132 on Fedora 41 and Chrome 131 on macOS 15.2 (M1). The bug appears at the webaccess login page when Chrome initially doesn't autofill both input fields properly for some reason, resulting in the password placeholder with a white background overlaid on a colored background -- see attached screenshot. As soon as you click the password field, it is filled and the placeholder jumps up as intended.
Cannot reproduce this in Firefox; haven't explored other browsers beyond these two.
The following CSS seems to fix this: > input:-webkit-autofill { > -webkit-text-fill-color: black !important; > -webkit-box-shadow: 0 0 0 30px white inset !important; > }
(In reply to Samuel Mannehed from comment #2) > The following CSS seems to fix this: > > > input:-webkit-autofill { > > -webkit-text-fill-color: black !important; > > -webkit-box-shadow: 0 0 0 30px white inset !important; > > } The above CSS makes the input white, even if the values therein were autofilled. It might be worth keeping Chrome's coloring to indicate that something has been autofilled. It's there for a reason. The real problem isn't the blue colors, it's the fact that "Password" appears in a white box in an ugly way on top of the blue. What would happen if we make the background of the fancy placeholder transparent when in the bottom position?