~edwargix/git.sr.ht

470f1029fcda81783c83c9ce02ce364d996e3c4c — Joram Schrijver 2 years ago b75d2f0
Fix send-email helper details color in dark mode

The collapsed summary color was low contrast, and the expanded summary
color was almost invisible (black on dark gray). There currently is no
uncolored text inside a details tag, but such text would also have been
black.
1 files changed, 12 insertions(+), 0 deletions(-)

M scss/main.scss
M scss/main.scss => scss/main.scss +12 -0
@@ 296,6 296,18 @@ img {
    li {
      margin-top: 1rem;
    }

    @media(prefers-color-scheme: dark) {
      color: $gray-500;

      &[open] {
        color: $gray-100;

        summary {
          color: $gray-100;
        }
      }
    }
  }

  .event-list {