Dark mode - more colour fixes

pull/1184/head^2
dgtlmoon 2 years ago
parent 69662ff91c
commit a048e4a02d

@ -125,6 +125,8 @@ html[data-darkmode="true"] {
opacity: 0.4; } opacity: 0.4; }
html[data-darkmode="true"] .watch-table .unviewed { html[data-darkmode="true"] .watch-table .unviewed {
color: #fff; } color: #fff; }
html[data-darkmode="true"] .watch-table .unviewed.error {
color: var(--color-watch-table-error); }
html[data-darkmode="true"] .icon-spread { html[data-darkmode="true"] .icon-spread {
filter: hue-rotate(-10deg) brightness(1.5); } filter: hue-rotate(-10deg) brightness(1.5); }
html[data-darkmode="true"] .watch-table .title-col a[target="_blank"]::after, html[data-darkmode="true"] .watch-table .title-col a[target="_blank"]::after,

@ -148,7 +148,11 @@ html[data-darkmode="true"] {
} }
.watch-table .unviewed { .watch-table .unviewed {
color: #fff; color: #fff;
&.error {
color: var(--color-watch-table-error);
} }
}
.icon-spread { .icon-spread {
filter: hue-rotate(-10deg) brightness(1.5); filter: hue-rotate(-10deg) brightness(1.5);
} }

@ -125,22 +125,21 @@ code {
&.unviewed { &.unviewed {
font-weight: bold; font-weight: bold;
} }
&.error {
color: var(--color-watch-table-error);
}
color: var(--color-watch-table-row-text); color: var(--color-watch-table-row-text);
} }
.error {
color: var(--color-watch-table-error);
}
td { td {
white-space: nowrap; white-space: nowrap;
} &.title-col {
td.title-col {
word-break: break-all; word-break: break-all;
white-space: normal; white-space: normal;
} }
}
th { th {
white-space: nowrap; white-space: nowrap;

@ -128,6 +128,8 @@ html[data-darkmode="true"] {
opacity: 0.4; } opacity: 0.4; }
html[data-darkmode="true"] .watch-table .unviewed { html[data-darkmode="true"] .watch-table .unviewed {
color: #fff; } color: #fff; }
html[data-darkmode="true"] .watch-table .unviewed.error {
color: var(--color-watch-table-error); }
html[data-darkmode="true"] .icon-spread { html[data-darkmode="true"] .icon-spread {
filter: hue-rotate(-10deg) brightness(1.5); } filter: hue-rotate(-10deg) brightness(1.5); }
html[data-darkmode="true"] .watch-table .title-col a[target="_blank"]::after, html[data-darkmode="true"] .watch-table .title-col a[target="_blank"]::after,
@ -343,7 +345,7 @@ code {
color: var(--color-watch-table-row-text); } color: var(--color-watch-table-row-text); }
.watch-table tr.unviewed { .watch-table tr.unviewed {
font-weight: bold; } font-weight: bold; }
.watch-table .error { .watch-table tr.error {
color: var(--color-watch-table-error); } color: var(--color-watch-table-error); }
.watch-table td { .watch-table td {
white-space: nowrap; } white-space: nowrap; }

Loading…
Cancel
Save