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 2937d6d commit 7e60b61
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 14 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-bm",
"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 [Bulma](https://bulma.io/)",
"support": {
Expand Down
14 changes: 8 additions & 6 deletions css/dataTables.bulma.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: #00d1b2;
background: rgb(0, 209, 178);
background: rgb(var(--dt-row-selected));
animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
Expand Down Expand Up @@ -281,13 +283,13 @@ table.dataTable > tbody > tr {
background-color: transparent;
}
table.dataTable > tbody > tr.selected > * {
box-shadow: inset 0 0 0 9999px #00d1b2;
box-shadow: inset 0 0 0 9999px rgb(0, 209, 178);
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.is-striped > tbody > tr.odd > * {
Expand Down
4 changes: 2 additions & 2 deletions css/dataTables.bulma.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.bulma.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-bm</id>
<description>This is DataTables with styling for [Bulma](https://bulma.io/)</description>
<repository type="git" url="https://github.com/DataTables/Dist-DataTables-Bulma.git"/>
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"module": "js/dataTables.bulma.mjs",
"style": "css/dataTables.bulma.css",
"types": "./types/dataTables.bulma.d.ts",
"version": "1.13.8",
"version": "1.13.10",
"files": [
"css/**/*.css",
"js/**/*.js",
Expand Down Expand Up @@ -46,4 +46,4 @@
"type": "git",
"url": "https://github.com/DataTables/Dist-DataTables-Bulma.git"
}
}
}

0 comments on commit 7e60b61

Please sign in to comment.