Skip to content

Commit

Permalink
Release 1.13.10
Browse files Browse the repository at this point in the history
  • Loading branch information
AllanJard committed Feb 9, 2024
1 parent 5ae5ea5 commit bd243be
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 13 deletions.
1 change: 0 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
{
"version": "1.12.1",
"name": "datatables.net/datatables.net-se",
"description": "DataTables is a plug-in for the jQuery Javascript library. It is a highly flexible tool, based upon the foundations of progressive enhancement, which will add advanced interaction controls to any HTML table. This is DataTables with styling for [SemanticUI](https://semantic-ui.com/)",
"support": {
Expand Down
14 changes: 8 additions & 6 deletions css/dataTables.semanticui.css
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,12 @@ table.dataTable tr.dt-hasChild td.dt-control:before {
content: "▼";
}

html.dark table.dataTable td.dt-control:before {
html.dark table.dataTable td.dt-control:before,
:root[data-bs-theme=dark] table.dataTable td.dt-control:before {
color: rgba(255, 255, 255, 0.5);
}
html.dark table.dataTable tr.dt-hasChild td.dt-control:before {
html.dark table.dataTable tr.dt-hasChild td.dt-control:before,
:root[data-bs-theme=dark] table.dataTable tr.dt-hasChild td.dt-control:before {
color: rgba(255, 255, 255, 0.5);
}

Expand Down Expand Up @@ -124,7 +126,7 @@ div.dataTables_processing > div:last-child > div {
width: 13px;
height: 13px;
border-radius: 50%;
background: #e0e0e0;
background: rgb(224, 224, 224);
background: rgb(var(--dt-row-selected));
animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
Expand Down Expand Up @@ -276,13 +278,13 @@ table.dataTable.table > tbody > tr {
background-color: transparent;
}
table.dataTable.table > tbody > tr.selected > * {
box-shadow: inset 0 0 0 9999px #e0e0e0;
box-shadow: inset 0 0 0 9999px rgb(224, 224, 224);
box-shadow: inset 0 0 0 9999px rgb(var(--dt-row-selected));
color: black;
color: rgb(0, 0, 0);
color: rgb(var(--dt-row-selected-text));
}
table.dataTable.table > tbody > tr.selected a {
color: #090a0b;
color: rgb(9, 10, 11);
color: rgb(var(--dt-row-selected-link));
}
table.dataTable.table.striped > tbody > tr.odd > * {
Expand Down
Loading

0 comments on commit bd243be

Please sign in to comment.