StylishThemes / Wikipedia-Dark

:mortar_board: Dark Wikipedia
https://github.com/StylishThemes/Wikipedia-Dark/raw/master/wikipedia-dark.user.css
Other
486 stars 31 forks source link

Mimi Pink becoms --brown-1 #176

Closed orbit-loona closed 3 years ago

orbit-loona commented 3 years ago
orbit-loona commented 3 years ago

So it turns out that the box has the style background:#FFDAE9;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.

orbit-loona commented 3 years ago

This is the template with the above piece of code removed (which might be breaking something else)

image

orbit-loona commented 3 years ago

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)