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 ed871fb commit 30454f0
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 16 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-bs",
"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 [Bootstrap](https://getbootstrap.com/docs/3.3/)",
"support": {
Expand Down
20 changes: 11 additions & 9 deletions css/dataTables.bootstrap.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: #0088cc;
background: rgb(0, 136, 204);
background: rgb(var(--dt-row-selected));
animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
Expand Down Expand Up @@ -277,13 +279,13 @@ table.dataTable > tbody > tr {
background-color: transparent;
}
table.dataTable > tbody > tr.selected > * {
box-shadow: inset 0 0 0 9999px #0088cc;
box-shadow: inset 0 0 0 9999px rgb(0, 136, 204);
box-shadow: inset 0 0 0 9999px rgb(var(--dt-row-selected));
color: white;
color: rgb(255, 255, 255);
color: rgb(var(--dt-row-selected-text));
}
table.dataTable > 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 Expand Up @@ -376,9 +378,9 @@ div.dataTables_scrollFoot > .dataTables_scrollFootInner > table {

@media screen and (max-width: 767px) {
div.dataTables_wrapper div.dataTables_length,
div.dataTables_wrapper div.dataTables_filter,
div.dataTables_wrapper div.dataTables_info,
div.dataTables_wrapper div.dataTables_paginate {
div.dataTables_wrapper div.dataTables_filter,
div.dataTables_wrapper div.dataTables_info,
div.dataTables_wrapper div.dataTables_paginate {
text-align: center;
}
}
Expand Down
2 changes: 1 addition & 1 deletion css/dataTables.bootstrap.min.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions datatables.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@
"types/dataTables.bootstrap.d.ts"
],
"src-repo": "http://github.com/DataTables/DataTablesSrc",
"last-tag": "1.13.8",
"last-tag": "1.13.10",
"last-sync": "d465757b36e0237b93a1fce05d553a3bb9ecd946"
}
}
2 changes: 1 addition & 1 deletion nuget.nuspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<version>1.13.8</version>
<version>1.13.10</version>
<id>datatables.net-bs</id>
<description>This is DataTables with styling for [Bootstrap](https://getbootstrap.com/docs/3.3/)</description>
<repository type="git" url="https://github.com/DataTables/Dist-DataTables-Bootstrap.git"/>
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"sort"
],
"dependencies": {
"datatables.net": "1.13.8",
"datatables.net": "1.13.10",
"jquery": ">=1.7"
},
"moduleType": [
Expand All @@ -46,4 +46,4 @@
"type": "git",
"url": "https://github.com/DataTables/Dist-DataTables-Bootstrap.git"
}
}
}

0 comments on commit 30454f0

Please sign in to comment.