[dark] fix list-group-item font colour

This commit is contained in:
Avris 2021-08-25 08:56:36 +02:00
parent a3744a9cc9
commit 8327b72e3f
2 changed files with 2 additions and 2 deletions

View File

@ -104,7 +104,7 @@ body[data-theme="dark"] {
.list-group-item-action:hover,
.list-group-item-action:focus { color: #fff; background-color: #333; }
.list-group-item-action:active { color: #212529; background-color: #e9ecef; }
.list-group-item { background-color: #111; border: 1px solid #333; }
.list-group-item { color: #eee; background-color: #111; border: 1px solid #333; }
.list-group-item:not(:first-child) { border-top: none; }
.list-group-item.disabled,
.list-group-item:disabled { color: #fff; background-color: #000; }

View File

@ -171,7 +171,7 @@ router.get('/admin/reports', handleErrorAsync(async (req, res) => {
FROM reports
LEFT JOIN users sus ON reports.userId = sus.id
LEFT JOIN users reporter ON reports.reporterId = reporter.id
ORDER BY reports.isHandled ASC, reports.id ASC
ORDER BY reports.isHandled ASC, reports.id DESC
`));
}));