Fixed: Text in lines that refer to torrents actions such as "torrent restored/ torrent stopped/ torrent resumed" in log, is not visible unless cursor hover over these lines.

This commit is contained in:
Carve 2024-11-17 01:37:22 -05:00
parent 190cf07093
commit 843837f1b9

View File

@ -55,21 +55,21 @@
font-style: italic; font-style: italic;
} }
.logTableRowlogNormal { .dynamicTable tbody tr.logTableRowlogNormal {
color: var(--color-text-default); color: var(--darkmode-text);
} }
.logTableRowlogInfo { .dynamicTable tbody tr.logTableRowlogInfo {
color: var(--color-text-blue); color: var(--highlight-color--blue);
} }
.logTableRowlogWarning { .dynamicTable tbody tr.logTableRowlogWarning {
color: var(--color-text-orange); color: var(--highlight-color--orange);
} }
.logTableRowlogCritical, .dynamicTable tbody tr.logTableRowlogCritical,
.logTableRowpeerBlocked { .dynamicTable tbody tr.logTableRowpeerBlocked {
color: var(--color-text-red); color: var(--highlight-color--red);
} }
.vsb-main>button { .vsb-main>button {