BloomFeed Addons v0.22

This commit is contained in:
Esteban
2026-07-04 20:22:16 +02:00
parent c4d1308497
commit d58f2195f5
22 changed files with 832 additions and 7 deletions
+34
View File
@@ -1195,6 +1195,40 @@ h1, h2, h3 {
z-index: 30;
}
/* ---------- Notifiers ---------- */
.notifier-form .form-group {
margin-bottom: var(--space-3);
}
.notifier-feed-picker {
background: var(--surface-alt);
border-radius: var(--radius-sm);
padding: var(--space-3);
display: flex;
flex-direction: column;
gap: 6px;
max-height: 180px;
overflow-y: auto;
}
.notifier-feed-picker[hidden] {
display: none;
}
.notifier-feed-checkbox {
display: flex;
align-items: center;
gap: 8px;
font-size: var(--font-sm);
font-weight: 400;
cursor: pointer;
}
.notifier-card summary::-webkit-details-marker {
color: var(--text-muted);
}
/* ---------- Responsive ---------- */
@media (max-width: 720px) {
+12
View File
@@ -83,4 +83,16 @@
applyFilters();
});
});
// Notifiers: show/hide the per-feed picker depending on the chosen scope
document.addEventListener('change', function (event) {
var select = event.target.closest('[data-scope-select]');
if (!select) {
return;
}
var picker = select.closest('form').querySelector('[data-scope-feeds]');
if (picker) {
picker.hidden = select.value !== 'feeds';
}
});
})();