cache fix on details page, small css fixes

This commit is contained in:
jokob-sk
2025-07-29 20:01:50 +10:00
parent 4b4b2f914f
commit a84f0d4faf
17 changed files with 70 additions and 36 deletions

View File

@@ -659,8 +659,14 @@ input[type="password"]::-webkit-caps-lock-indicator {
border-color: #888888;
}
.table-hover tbody tr:hover td, .table-hover tbody tr:hover th {
background-color: rgb(189,192,198);
color: #444;
background-color: var(--datatable-bgcolor);
color: var(--fbc-white);
}
table.dataTable tbody tr.selected, table.dataTable tbody tr .selected
{
background-color: var(--datatable-bgcolor);
color: var(--fbc-white);
}
.db_info_table_cell:nth-child(1) {background: #272c30}

View File

@@ -20,7 +20,7 @@
--color-yellow: #f39c12;
--color-red: #dd4b39;
--color-gray: #8c8c8c;
}
}
:root {
--datatable-bgcolor: rgba(64, 76, 88, 0.8);