Adrian
Adrian

Reputation: 2656

Change sort icon in Bootstrap Table

It is possible to change sort icon to this: enter image description here

In the new demo and from default the Bootstrap Table comes with ugly non-retina icons:

http://issues.wenzhixin.net.cn/bootstrap-table/

Upvotes: 0

Views: 5057

Answers (1)

wenyi
wenyi

Reputation: 1384

You can try to custom your css style, for example like this:

.fixed-table-container thead th .both {
    background-image: none;
}

.fixed-table-container thead th .asc {
    background-image: url(asc.png);
}

.fixed-table-container thead th .desc {
    background-image: url(desc.png);
}

jsFiddle link: http://jsfiddle.net/e3nk137y/3258/

Upvotes: 0

Related Questions