Closed orbit-loona closed 3 years ago
So it turns out that the box has the style background:#FFD
AE9;border:1px solid;
, and the code
.table-partial, tr[style*="background:orange" i],
td[style*="background:#ffd" i] {
background-color: var(--brown-1) !important;
}
makes it brown.
I don't know if the box can be un-browned without breaking something else.
This is the template with the above piece of code removed (which might be breaking something else)
I just "fixed" it for myself by appending
td[style*="background:#FFDAE9"] {
background: #FFDAE9 !important;
}
(probably don't do this for every possible color that could be affected, this is very minor anyway)