I'm using Griddle with pagination, filter and local plugin, with useGriddleStyles = false so that I can use custom styles defined externally. I'm trying to style the ascending/descending icons of the header to those from fontawesome. I'm doing this by overriding the griddle-heading-ascending and griddle-heading-descending classes like this:
.griddle-heading-ascending:before {
content: "\f15d";
font-family: FontAwesome;
}
However griddle just uses the built-in up/down arrow icons. Looking at the elements via Chrome, it seems that there are no griddle-heading-ascending and griddle-heading-descending classes generated. It just creates an inline <span> inside the <th> with the griddle-table-heading-cell classname:

Is there supposed to be griddle-heading-ascending and griddle-heading-descending span classes generated?
BTW using Griddle 1.6.0
I'm using Griddle with pagination, filter and local plugin, with useGriddleStyles = false so that I can use custom styles defined externally. I'm trying to style the ascending/descending icons of the header to those from fontawesome. I'm doing this by overriding the griddle-heading-ascending and griddle-heading-descending classes like this:
However griddle just uses the built-in up/down arrow icons. Looking at the elements via Chrome, it seems that there are no griddle-heading-ascending and griddle-heading-descending classes generated. It just creates an inline
<span>inside the<th>with the griddle-table-heading-cell classname:Is there supposed to be griddle-heading-ascending and griddle-heading-descending span classes generated?
BTW using Griddle 1.6.0