We’ve recently updated … from 0.34 to 7.4.2
Our sort indicators used to be
.handsontable .sorted-column-header-desc::after,
.handsontable .columnSorting.descending::after {
cursor: pointer;
content: '\25BC';
color: #5f5f5f;
}
.handsontable .sorted-column-header-asc::after,
.handsontable .columnSorting.ascending::after {
cursor: pointer;
content: '\25B2';
color: #5f5f5f;
}
Now they show as this, and I cannot seem to force them back. Is there a config option that I am missing?
.handsontable span.colHeader.columnSorting.ascending::before { /* arrow up; 20 x 40 px, scaled to 5 x 10 px; base64 size: 0.3kB */ background-image: url("data:image/png;base64,[snip]");}
.handsontable span.colHeader.columnSorting.descending::before { /* arrow down; 20 x 40 px, scaled to 5 x 10 px; base64 size: 0.3kB */ background-image: url("data:image/png;base64,[snip]");}