style: underline contributor links + timezone select placeholder color

- join.vue: underline links inside .checkbox-label
- profile.vue: underline .posts-empty-link by default; remove hover-only
  underline rule; tint timezone select placeholder via :deep slot
This commit is contained in:
Jennie Robinson Faber 2026-04-26 17:55:54 +01:00
parent 0f841912e2
commit 0c489cf2c3
2 changed files with 4 additions and 3 deletions

View file

@ -1017,6 +1017,7 @@ onUnmounted(() => {
.checkbox-label a, .checkbox-label a,
.checkbox-label :deep(a) { .checkbox-label :deep(a) {
color: var(--candle); color: var(--candle);
text-decoration: underline;
} }
/* ---- ERROR & SUCCESS BOXES ---- */ /* ---- ERROR & SUCCESS BOXES ---- */

View file

@ -712,11 +712,11 @@ useHead({
.posts-empty-link { .posts-empty-link {
color: var(--candle); color: var(--candle);
text-decoration: none; text-decoration: underline;
} }
.posts-empty-link:hover { .timezone-select :deep([data-slot="placeholder"]) {
text-decoration: underline; color: var(--text-dim);
} }
.posts-list { .posts-list {