-
Notifications
You must be signed in to change notification settings - Fork 121
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
db93a41
commit 9e97f78
Showing
16 changed files
with
1,096 additions
and
211 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/*! | ||
* Responsive Tables v6.0.2 (http://gergeo.se/RWD-Table-Patterns) | ||
* Responsive Tables v6.1.0 (http://gergeo.se/RWD-Table-Patterns) | ||
* This is an awesome solution for responsive tables with complex data. | ||
* Authors: Nadan Gergeo <[email protected]> (www.blimp.se), Lucas Wiener <[email protected]> & "Maggie Wachs (www.filamentgroup.com)" | ||
* Licensed under MIT (https://github.com/nadangergeo/RWD-Table-Patterns/blob/master/LICENSE-MIT) | ||
|
@@ -109,6 +109,14 @@ | |
.table-responsive[data-pattern="priority-columns"] > .table { | ||
margin-bottom: 0; | ||
} | ||
.table-responsive[data-pattern="priority-columns"] > .table > thead > tr > th, | ||
.table-responsive[data-pattern="priority-columns"] > .table > tbody > tr > th, | ||
.table-responsive[data-pattern="priority-columns"] > .table > tfoot > tr > th, | ||
.table-responsive[data-pattern="priority-columns"] > .table > thead > tr > td, | ||
.table-responsive[data-pattern="priority-columns"] > .table > tbody > tr > td, | ||
.table-responsive[data-pattern="priority-columns"] > .table > tfoot > tr > td { | ||
position: relative; | ||
} | ||
.table-responsive[data-pattern="priority-columns"] > .table-tighten > thead > tr > th, | ||
.table-responsive[data-pattern="priority-columns"] > .table-tighten > tbody > tr > th, | ||
.table-responsive[data-pattern="priority-columns"] > .table-tighten > tfoot > tr > th, | ||
|
@@ -378,6 +386,7 @@ table.focus-on tfoot tr.focused td { | |
.sticky-table-header > .table > tbody > tr > td, | ||
.sticky-table-header > .table > tfoot > tr > td { | ||
border-color: var(--bs-border-color); | ||
position: relative; | ||
} | ||
.sticky-table-header > .table-tighten > thead > tr > th, | ||
.sticky-table-header > .table-tighten > tbody > tr > th, | ||
|
@@ -412,3 +421,25 @@ table.focus-on tfoot tr.focused td { | |
.sticky-table-header > .table-bordered > tfoot > tr:last-child > td { | ||
border-bottom: 0; | ||
} | ||
.table-responsive[data-sorting-active=true] thead th:not([colSpan]), | ||
.table-responsive[data-sorting-active=true] thead th[colSpan="1"] { | ||
cursor: pointer; | ||
padding-right: 1.5rem; | ||
} | ||
.table-responsive[data-sorting-active=true] thead th:not([colSpan])[data-sorted]:after, | ||
.table-responsive[data-sorting-active=true] thead th[colSpan="1"][data-sorted]:after { | ||
display: block; | ||
width: auto; | ||
height: auto; | ||
position: absolute; | ||
right: 5px; | ||
bottom: 0.5rem; | ||
} | ||
.table-responsive[data-sorting-active=true] thead th:not([colSpan])[data-sorted="asc"]:after, | ||
.table-responsive[data-sorting-active=true] thead th[colSpan="1"][data-sorted="asc"]:after { | ||
content: '↑'; | ||
} | ||
.table-responsive[data-sorting-active=true] thead th:not([colSpan])[data-sorted="desc"]:after, | ||
.table-responsive[data-sorting-active=true] thead th[colSpan="1"][data-sorted="desc"]:after { | ||
content: '↓'; | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.