[dark] fix list-group-item font colour
This commit is contained in:
parent
a3744a9cc9
commit
8327b72e3f
|
@ -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; }
|
||||
|
|
|
@ -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
|
||||
`));
|
||||
}));
|
||||
|
||||
|
|
Reference in New Issue