Skip to content

Commit

Permalink
Merge pull request #356 from afaneca/develop
Browse files Browse the repository at this point in the history
5.5.0
  • Loading branch information
afaneca authored Nov 4, 2023
2 parents f786157 + 90de0a6 commit 2d80f88
Show file tree
Hide file tree
Showing 14 changed files with 417 additions and 354 deletions.
4 changes: 4 additions & 0 deletions css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -1107,4 +1107,8 @@ svg:not(:root) {
.regular-link:hover {
text-decoration: none;
transition: 1s;
}

.dataTables_wrapper .dataTables_filter input {
margin-left: 0;
}
15 changes: 11 additions & 4 deletions css/themes/nord_nightfall_theme.css
Original file line number Diff line number Diff line change
@@ -1,24 +1,31 @@
:root {
/* Dark Gray theme */
/* Nord Nightfall theme */
--main-dark-background: #1f2d3d;
--main-light-gray-color: #c0ccda;
--main-dark-on-dark-background: #253649;
--main-blue-background: #192431;
}

tr {
border-bottom: 1px solid var(--main-dark-background);
}

table.dataTable tbody tr {
background-color: var(--main-dark-on-dark-background);
background-color: var(--main-body-background);
border-bottom: 1px solid var(--main-card-background);
}

table.dataTable thead th, table.dataTable thead td {
border-bottom: 1px solid white; /*var(--main-light-green);*/
border-bottom: 1px solid var(--main-body-background);
background: var(--main-blue-background);
}

table.dataTable.hover tbody tr:hover, table.dataTable.display tbody tr:hover {
background-color: #5a5a5a !important;
background-color: var(--main-blue-background) !important;
}

table.dataTable.stripe tbody tr.odd, table.dataTable.display tbody tr.odd {
background-color: var(--main-body-background);
}

/*
Expand Down
Loading

0 comments on commit 2d80f88

Please sign in to comment.