backup before mayor changes

This commit is contained in:
JakeBreath
2026-08-05 16:35:09 -05:00
parent f5954247fc
commit 203ff88af1
8 changed files with 145 additions and 15 deletions
+31 -6
View File
@@ -2054,6 +2054,31 @@ a.deletelink {
margin-top: 0;
font-size: 0.95rem;
}
.filter-group-toggle {
position: relative;
width: 100%; display: flex; align-items: center; gap: 6px;
background: none; border: none; color: inherit; cursor: pointer;
font-size: 0.95rem; font-weight: 600; padding: 4px 0; text-align: left;
}
.filter-group-toggle::before {
content: '';
position: absolute;
inset: 2px -16px;
border-radius: 8px;
background: transparent;
pointer-events: none;
}
.filter-group-toggle:hover,
.filter-group-toggle:focus-visible {
background: transparent;
}
.filter-group-toggle:hover::before,
.filter-group-toggle:focus-visible::before {
background: rgba(255, 255, 255, 0.07);
}
.filter-chevron { margin-left: auto; transition: transform 0.2s ease; }
.filter-group-toggle[aria-expanded="true"] .filter-chevron { transform: rotate(180deg); }
.filter-tags.collapsed { display: none; }
.filter-category {
display: flex;
flex-direction: column;
@@ -3797,7 +3822,7 @@ a.deletelink {
overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
color: var(--md-sys-color-on-surface, #cdd6f4);
}
.announce-item.announce-unread { outline: 1px solid var(--md-sys-color-primary, #89b4fa); }
.announce-item.announce-unread a { color: var(--ctp-mocha-blue, #1e66f5); font-weight: 600; }
.announce-meta {
color: var(--md-sys-color-on-surface-variant, #a6adc8);
font-size: 0.68rem; white-space: nowrap; flex-shrink: 0;
@@ -3837,11 +3862,11 @@ a.deletelink {
background: var(--md-sys-color-surface, #1e1e2e);
color: var(--md-sys-color-on-surface, #cdd6f4); font-family: inherit;
}
.notify-list { list-style: none; margin: 0; padding: 0; }
.notify-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.4rem; }
.notify-item {
padding: 0.6rem 0.5rem; border-bottom: 1px solid var(--md-sys-color-outline-variant, #45475a);
font-size: 0.85rem;
padding: 0.55rem 0.6rem; border-radius: 8px; font-size: 0.85rem;
background: var(--md-sys-color-surface-variant, #45475a);
}
.notify-item:last-child { border-bottom: none; }
.notify-item.notify-unread { background: var(--md-sys-color-surface-variant, #45475a); border-radius: 8px; }
.notify-item a { color: var(--md-sys-color-on-surface, #cdd6f4); }
.notify-item.notify-unread a { color: var(--ctp-mocha-blue, #1e66f5); font-weight: 600; }
.notify-new { color: var(--ctp-mocha-red); font-weight: 600; }