support search icon in mx_textinput, use in memberlist

This commit is contained in:
Bruno Windels 2018-11-05 09:34:58 +01:00
parent 46389457e3
commit 064662380f
3 changed files with 17 additions and 26 deletions

View file

@ -244,6 +244,17 @@ input[type=search] {
}
}
input[type=text].mx_textinput_icon,
input[type=search].mx_textinput_icon {
padding-left: 30px;
background-repeat: no-repeat;
background-position: 10px center;
}
input[type=text].mx_textinput_icon.mx_textinput_search,
input[type=search].mx_textinput_icon.mx_textinput_search {
background-image: url('../../img/icons-search-copy.svg');
}
// dont search UI as not all browsers support it,
// we implement it ourselves where needed instead