2

Using Vaadin 8 I want to display the Vaadin search icon inside the TextField on the left side.

    TextField search = new TextField("");
    search.setPlaceholder("Search target");
    search.setIcon(VaadinIcons.SEARCH);
    search.addStyleName("search");

With this code the icon is displayed above the TextField. I think I need to add some CSS code in the mytheme.scss file such as

    .v-icon-search {
       display: inline;
}

But this did not do anything.

Anna Koskinen
  • 1,362
  • 3
  • 22
Natalie
  • 445
  • 2
  • 5
  • 18

1 Answers1

3

There is a predefined styles in ValoTheme for this purpose:

search.addStyleName(ValoTheme.TEXTFIELD_INLINE_ICON);
ollitietavainen
  • 3,900
  • 13
  • 30
Tatu Lund
  • 9,949
  • 1
  • 12
  • 26