Skip to content

Commit

Permalink
Merge branch 'branches/rudder/8.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
Jenkins CI committed Aug 22, 2024
2 parents eb57dbd + 254d051 commit d928fff
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1336,7 +1336,6 @@ function createNodeTable(gridId, refresh, scores) {
, "title": "Compliance"
, "sSortDataType": "node-compliance"
, "type" : "numeric"
, "class" : "tw-bs"
, "createdCell" : function (nTd, sData, oData, iRow, iCol) {
var link = callbackElement(oData, true)
var complianceBar = "<span class='text-muted'>N/A</span>"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,41 +80,51 @@
/* </TABLE> */

/* <THEAD> */
.dataTable tr.head{
.dataTable tr.head,
.dataTables_scrollHead thead > tr {
border-bottom : 1px solid #d6deef;
font-size: 1.15em;
}
/* </THEAD> */

/* <TH> */
.dataTable tr.head th .DataTables_sort_wrapper {
.dataTable tr.head th .DataTables_sort_wrapper,
.dataTables_scrollHead thead > tr th .DataTables_sort_wrapper{
top: 1px;
position: relative;
padding-right: 4px;
}
.dataTable tr.head th .DataTables_sort_wrapper .DataTables_sort_icon{
.dataTable tr.head th .DataTables_sort_wrapper .DataTables_sort_icon,
.dataTables_scrollHead thead > tr th .DataTables_sort_wrapper .DataTables_sort_icon{
position: absolute;
}

.dataTable tr.head th{
.dataTable tr.head th,
.dataTables_scrollHead thead > tr th{
padding: 10px 6px;
outline: none !important;
cursor: pointer;
transition-duration: .2s;
}
.dataTable tr.head th.sorting,
.dataTable tr.head th.sorting_asc,
.dataTable tr.head th.sorting_desc{
.dataTable tr.head th.sorting_desc,
.dataTables_scrollHead thead > tr th.sorting,
.dataTables_scrollHead thead > tr th.sorting_asc,
.dataTables_scrollHead thead > tr th.sorting_desc{
white-space: pre;
}
.dataTable tr.head th.sorting:after{
.dataTable tr.head th.sorting:after,
.dataTables_scrollHead thead > tr th.sorting:after{
content: "";
display: inline-block;
min-width: 12px;
margin-left: 6px;
}
.dataTable tr.head th.sorting_asc:after,
.dataTable tr.head th.sorting_desc:after{
.dataTable tr.head th.sorting_desc:after,
.dataTables_scrollHead thead > tr th.sorting_asc:after,
.dataTables_scrollHead thead > tr th.sorting_desc:after{
display: inline-block;
min-width: 12px;
font-family: "Font Awesome 5 Free";
Expand All @@ -131,26 +141,34 @@
position: relative;
top: 1px;
}
.dataTable tr.head th.sorting_asc:after{
.dataTable tr.head th.sorting_asc:after,
.dataTables_scrollHead thead > tr th.sorting_asc:after{
content: "\f0d8";
}
.dataTable tr.head th.sorting_desc:after{
.dataTable tr.head th.sorting_desc:after,
.dataTables_scrollHead thead > tr th.sorting_desc:after{
content: "\f0d7";
}
.dataTable .dataTable tr.head th {
padding: 4px 6px;
font-size: 0.9em;
}
.dataTable tr.head th.sorting{
.dataTable tr.head th.sorting,
.dataTables_scrollHead thead > tr th.sorting{
color: #738195;
}
.dataTable tr.head th.sorting.sorting_desc,
.dataTable tr.head th.sorting.sorting_asc{
.dataTable tr.head th.sorting.sorting_asc,
.dataTables_scrollHead thead > tr th.sorting_asc,
.dataTables_scrollHead thead > tr th.sorting_desc{
color: #041922;
}
.dataTable tr.head th.sorting:hover,
.dataTable tr.head th.sorting.sorting_desc:hover,
.dataTable tr.head th.sorting.sorting_asc:hover{
.dataTable tr.head th.sorting.sorting_asc:hover,
.dataTables_scrollHead thead > tr th.sorting:hover,
.dataTables_scrollHead thead > tr th.sorting_asc:hover,
.dataTables_scrollHead thead > tr th.sorting_desc:hover{
cursor: pointer;
color: #0e5e9f;
}
Expand Down

0 comments on commit d928fff

Please sign in to comment.