Bootstrap-select: How can i use material icons in multiple select?

Created on 1 Feb 2017  路  1Comment  路  Source: snapappointments/bootstrap-select

How can i use material icons in multiple selects?
<i class="material-icons">check</i> for example.

When i try to set in options
iconBase: 'material-icons', tickIcon: 'check',
it's render
<span class="material-icons check check-mark"></span>.

But material icon must be <i class="material-icons">check</i>

Most helpful comment

Bootstrap-select doesn't support ligatures. You'll either need to create a custom stylesheet for the font or a different Material icon font.

e.g.

```css
.check:after {
content: 'check';
}

>All comments

Bootstrap-select doesn't support ligatures. You'll either need to create a custom stylesheet for the font or a different Material icon font.

e.g.

```css
.check:after {
content: 'check';
}

Was this page helpful?
0 / 5 - 0 ratings