Template:Plant Update/styles.css

Revision as of 22:21, 21 April 2026 by MTRNord (talk | contribs) (Created page with "Plant Update Log Styles - Dark/Light Theme Support: .plant-update { width: 100%; margin: 1em 0; border-collapse: collapse; border: 1px solid #a2a9b1; background: #ffffff; } .plant-update th, .plant-update td { border: 1px solid #a2a9b1; padding: 0.75em; } .plant-update-date { font-weight: bold; width: 150px; background: #e8f5e9; color: #202122; } .plant-update-status { font-weight: bold; background: #e8f5e9; color: #202122; } .plant-...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
/* Plant Update Log Styles - Dark/Light Theme Support */

.plant-update {
  width: 100%;
  margin: 1em 0;
  border-collapse: collapse;
  border: 1px solid #a2a9b1;
  background: #ffffff;
}

.plant-update th,
.plant-update td {
  border: 1px solid #a2a9b1;
  padding: 0.75em;
}

.plant-update-date {
  font-weight: bold;
  width: 150px;
  background: #e8f5e9;
  color: #202122;
}

.plant-update-status {
  font-weight: bold;
  background: #e8f5e9;
  color: #202122;
}

.plant-update-notes {
  margin-top: 0.5em;
  padding-top: 0.5em;
  border-top: 1px solid #eaecf0;
  color: #202122;
}

@media (prefers-color-scheme: dark) {
  .plant-update {
    background: #202122;
  }

  .plant-update th,
  .plant-update td {
    border-color: #595959;
  }

  .plant-update-date,
  .plant-update-status {
    background: rgba(76, 174, 80, 0.15);
    color: #eaecf0;
  }

  .plant-update-notes {
    border-top-color: #404244;
    color: #eaecf0;
  }
}

.plant-update strong {
  color: inherit;
}

.plant-update img {
  max-width: 100%;
  height: auto;
  margin: 0.5em 0;
  border-radius: 4px;
  border: 1px solid #eaecf0;
}

@media (prefers-color-scheme: dark) {
  .plant-update img {
    border-color: #404244;
  }
}