Skip to content

Commit 03f66c4

Browse files
committed
Release 1.13.10
1 parent 4c92190 commit 03f66c4

File tree

6 files changed

+17
-16
lines changed

6 files changed

+17
-16
lines changed

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-bs4",
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 [Bootstrap4](https://getbootstrap.com/docs/4.6/getting-started/introduction/)",
54
"support": {

css/dataTables.bootstrap4.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: #0275d8;
129+
background: rgb(2, 117, 216);
128130
background: rgb(var(--dt-row-selected));
129131
animation-timing-function: cubic-bezier(0, 1, 1, 0);
130132
}
@@ -278,13 +280,13 @@ table.dataTable > tbody > tr {
278280
background-color: transparent;
279281
}
280282
table.dataTable > tbody > tr.selected > * {
281-
box-shadow: inset 0 0 0 9999px #0275d8;
283+
box-shadow: inset 0 0 0 9999px rgb(2, 117, 216);
282284
box-shadow: inset 0 0 0 9999px rgb(var(--dt-row-selected));
283-
color: white;
285+
color: rgb(255, 255, 255);
284286
color: rgb(var(--dt-row-selected-text));
285287
}
286288
table.dataTable > tbody > tr.selected a {
287-
color: #090a0b;
289+
color: rgb(9, 10, 11);
288290
color: rgb(var(--dt-row-selected-link));
289291
}
290292
table.dataTable.table-striped > tbody > tr.odd > * {
@@ -380,9 +382,9 @@ div.dataTables_scrollFoot > .dataTables_scrollFootInner > table {
380382

381383
@media screen and (max-width: 767px) {
382384
div.dataTables_wrapper div.dataTables_length,
383-
div.dataTables_wrapper div.dataTables_filter,
384-
div.dataTables_wrapper div.dataTables_info,
385-
div.dataTables_wrapper div.dataTables_paginate {
385+
div.dataTables_wrapper div.dataTables_filter,
386+
div.dataTables_wrapper div.dataTables_info,
387+
div.dataTables_wrapper div.dataTables_paginate {
386388
text-align: center;
387389
}
388390
div.dataTables_wrapper div.dataTables_paginate ul.pagination {

css/dataTables.bootstrap4.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.bootstrap4.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-bs4</id>
66
<description>This is DataTables with styling for [Bootstrap4](https://getbootstrap.com/docs/4.6/getting-started/introduction/)</description>
77
<repository type="git" url="https://github.com/DataTables/Dist-DataTables-Bootstrap4.git"/>

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"module": "js/dataTables.bootstrap4.mjs",
66
"style": "css/dataTables.bootstrap4.css",
77
"types": "./types/dataTables.bootstrap4.d.ts",
8-
"version": "1.13.8",
8+
"version": "1.13.10",
99
"files": [
1010
"css/**/*.css",
1111
"js/**/*.js",
@@ -47,4 +47,4 @@
4747
"type": "git",
4848
"url": "https://github.com/DataTables/Dist-DataTables-Bootstrap4.git"
4949
}
50-
}
50+
}

0 commit comments

Comments
 (0)