Is there an easy fix for this? The faint lastpass icon is displayed underneath my own icon which looks pretty bad.
Asked
Active
Viewed 408 times
-1
-
Change CSS for one of icons. E.g. `input{background-postion: 50% 50% !important}` – Justinas Jun 08 '20 at 10:41
-
give your own icon a white background – Gerard Jun 08 '20 at 10:43
1 Answers
0
You can use this selector to move your own icon to the left.
input[style*='background-image: url("data:image/png'].icon {
left: 40px;
}
It's little bit hacky but it gets the job done.

Arno Tenkink
- 1,480
- 2
- 9
- 16
-
.icon should be your own icon class and have a position absolute or relative. – Arno Tenkink Jun 08 '20 at 11:09