Skip to content

Commit 30454f0

Browse files
committed
Release 1.13.10
1 parent ed871fb commit 30454f0

6 files changed

Lines changed: 17 additions & 16 deletions

File tree

composer.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"version": "1.12.1",
32
"name": "datatables.net/datatables.net-bs",
43
"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/)",
54
"support": {

css/dataTables.bootstrap.css

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,12 @@ table.dataTable tr.dt-hasChild td.dt-control:before {
2525
content: "▼";
2626
}
2727

28-
html.dark table.dataTable td.dt-control:before {
28+
html.dark table.dataTable td.dt-control:before,
29+
:root[data-bs-theme=dark] table.dataTable td.dt-control:before {
2930
color: rgba(255, 255, 255, 0.5);
3031
}
31-
html.dark table.dataTable tr.dt-hasChild td.dt-control:before {
32+
html.dark table.dataTable tr.dt-hasChild td.dt-control:before,
33+
:root[data-bs-theme=dark] table.dataTable tr.dt-hasChild td.dt-control:before {
3234
color: rgba(255, 255, 255, 0.5);
3335
}
3436

@@ -124,7 +126,7 @@ div.dataTables_processing > div:last-child > div {
124126
width: 13px;
125127
height: 13px;
126128
border-radius: 50%;
127-
background: #0088cc;
129+
background: rgb(0, 136, 204);
128130
background: rgb(var(--dt-row-selected));
129131
animation-timing-function: cubic-bezier(0, 1, 1, 0);
130132
}
@@ -277,13 +279,13 @@ table.dataTable > tbody > tr {
277279
background-color: transparent;
278280
}
279281
table.dataTable > tbody > tr.selected > * {
280-
box-shadow: inset 0 0 0 9999px #0088cc;
282+
box-shadow: inset 0 0 0 9999px rgb(0, 136, 204);
281283
box-shadow: inset 0 0 0 9999px rgb(var(--dt-row-selected));
282-
color: white;
284+
color: rgb(255, 255, 255);
283285
color: rgb(var(--dt-row-selected-text));
284286
}
285287
table.dataTable > tbody > tr.selected a {
286-
color: #090a0b;
288+
color: rgb(9, 10, 11);
287289
color: rgb(var(--dt-row-selected-link));
288290
}
289291
table.dataTable.table-striped > tbody > tr.odd > * {
@@ -376,9 +378,9 @@ div.dataTables_scrollFoot > .dataTables_scrollFootInner > table {
376378

377379
@media screen and (max-width: 767px) {
378380
div.dataTables_wrapper div.dataTables_length,
379-
div.dataTables_wrapper div.dataTables_filter,
380-
div.dataTables_wrapper div.dataTables_info,
381-
div.dataTables_wrapper div.dataTables_paginate {
381+
div.dataTables_wrapper div.dataTables_filter,
382+
div.dataTables_wrapper div.dataTables_info,
383+
div.dataTables_wrapper div.dataTables_paginate {
382384
text-align: center;
383385
}
384386
}

css/dataTables.bootstrap.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

datatables.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@
1313
"types/dataTables.bootstrap.d.ts"
1414
],
1515
"src-repo": "http://github.com/DataTables/DataTablesSrc",
16-
"last-tag": "1.13.8",
16+
"last-tag": "1.13.10",
1717
"last-sync": "d465757b36e0237b93a1fce05d553a3bb9ecd946"
18-
}
18+
}

nuget.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
33
<metadata>
4-
<version>1.13.8</version>
4+
<version>1.13.10</version>
55
<id>datatables.net-bs</id>
66
<description>This is DataTables with styling for [Bootstrap](https://getbootstrap.com/docs/3.3/)</description>
77
<repository type="git" url="https://github.com/DataTables/Dist-DataTables-Bootstrap.git"/>

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"sort"
2323
],
2424
"dependencies": {
25-
"datatables.net": "1.13.8",
25+
"datatables.net": "1.13.10",
2626
"jquery": ">=1.7"
2727
},
2828
"moduleType": [
@@ -46,4 +46,4 @@
4646
"type": "git",
4747
"url": "https://github.com/DataTables/Dist-DataTables-Bootstrap.git"
4848
}
49-
}
49+
}

0 commit comments

Comments
 (0)