jquery tablesorter CSS arrow icons

后端 未结 6 1392
离开以前
离开以前 2021-01-06 19:24

This is really more of a CSS question than a jQuery question. I\'m using the tablesorter jQuery plugin to sort tables dynamically.

Here\'s what it looks like curren

6条回答
  •  粉色の甜心
    2021-01-06 19:53

    In my case, this worked:

    table.tablesorter th.tablesorter-headerSortUp {
      background-image: url(../images/asc.gif);
    }
    
    table.tablesorter th.tablesorter-headerSortDown {
      background-image: url(../images/desc.gif);
    }
    

    Style.css downloaded from web cantained only headerSOrtUp class, but this works only with tablesorted-headerSortUp class, so they must have changed it.

    Hope it saves some time to someone.

提交回复
热议问题