0

I upgraded my Android project to ST 2.2 and it is now using the new Pictos fonts for icons instead of images and webkit masks. I am having an issue where the icon for the searchfield repeats in the searchfield. How can I fix this? See below for the icon and the css.

enter image description hereenter image description here

M Azam
  • 518
  • 1
  • 7
  • 28

1 Answers1

0

Fixed with this:

.x-field-search .x-field-input::before {
    background-color: white;
    background-repeat: no-repeat;
}
M Azam
  • 518
  • 1
  • 7
  • 28