main.css: fix stat styling on dark mode

This commit is contained in:
Nicolas F 2019-05-20 16:02:04 +02:00
parent 8614da6322
commit 90607d6993
1 changed files with 6 additions and 2 deletions

View File

@ -99,10 +99,14 @@ table.torrent-list td:first-child {
table.torrent-list td:nth-child(4) {
white-space: nowrap;
}
table.torrent-list td:nth-child(6) {
table.torrent-list td:nth-child(6),
body.dark table.torrent-list > tbody > tr.success > td:nth-child(6),
body.dark table.torrent-list > tbody > tr.danger > td:nth-child(6) {
color: green;
}
table.torrent-list td:nth-child(7) {
table.torrent-list td:nth-child(7),
body.dark table.torrent-list > tbody > tr.success > td:nth-child(7),
body.dark table.torrent-list > tbody > tr.danger > td:nth-child(7) {
color: red;
}