StylishThemes / StackOverflow-Dark

📚 Dark theme for Stack Overflow & most Stack Exchange network sites
https://github.com/StylishThemes/StackOverflow-Dark/raw/master/stackoverflow-dark.user.css
Other
686 stars 43 forks source link

Remove `.message.message-error a` from `color: #ddd !important;` #251

Closed God-damnit-all closed 10 months ago

God-damnit-all commented 10 months ago

.message.message-error sets background-color to --red-500 which is hsl(0,90%,88%) ... so making its a tags be the color #dddddd just didn't make any sense.

Before: image

After: image

Relevant HTML:

<div class="message message-error message-dismissable" style="position: absolute; display: block;">
  <div class="message-inner">
    <div title="close this message (or hit Esc)" class="message-close">×</div>
    <div class="message-text" style="padding-right: 48px;">
      There are
      <a href="https://meta.stackexchange.com/questions/84362/whats-the-fixed-size-of-the-suggested-edit-queue">
        too many pending edits
      </a>
      on Stack Overflow. Please try again later.
    </div>
  </div>
</div>
Mottie commented 10 months ago

Thanks!