Skip to content

Commit

Permalink
528e66bbd5a050d9c83f720d19864c40410326bf Fix: CSS output is ASCII onl…
Browse files Browse the repository at this point in the history
…y now - unicode characters are encoded

Sync to source repo @528e66bbd5a050d9c83f720d19864c40410326bf
  • Loading branch information
dtbuild committed Jan 29, 2025
1 parent e7341f7 commit 4cb4de8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions css/dataTables.foundation.css
Original file line number Diff line number Diff line change
Expand Up @@ -80,17 +80,17 @@ table.dataTable thead > tr > td.dt-ordering-asc span.dt-column-order:before {
position: absolute;
display: block;
bottom: 50%;
content: "";
content: ""/"";
content: "\25B2";
content: "\25B2"/"";
}
table.dataTable thead > tr > th.dt-orderable-desc span.dt-column-order:after, table.dataTable thead > tr > th.dt-ordering-desc span.dt-column-order:after,
table.dataTable thead > tr > td.dt-orderable-desc span.dt-column-order:after,
table.dataTable thead > tr > td.dt-ordering-desc span.dt-column-order:after {
position: absolute;
display: block;
top: 50%;
content: "";
content: ""/"";
content: "\25BC";
content: "\25BC"/"";
}
table.dataTable thead > tr > th.dt-orderable-asc, table.dataTable thead > tr > th.dt-orderable-desc, table.dataTable thead > tr > th.dt-ordering-asc, table.dataTable thead > tr > th.dt-ordering-desc,
table.dataTable thead > tr > td.dt-orderable-asc,
Expand Down
2 changes: 1 addition & 1 deletion datatables.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@
],
"src-repo": "http://github.com/DataTables/DataTablesSrc",
"last-tag": "2.2.1",
"last-sync": "990aa13065b2e3264ff1e2c82240f2db977b0762"
"last-sync": "528e66bbd5a050d9c83f720d19864c40410326bf"
}

0 comments on commit 4cb4de8

Please sign in to comment.