Implementa múltipla seleção de tags via pills e suporte a Relatório Global com a opção todas as crianças

This commit is contained in:
2026-05-28 16:41:44 +00:00
parent 9fde9251f4
commit 999ca2e448
4 changed files with 72 additions and 23 deletions
+26
View File
@@ -3012,3 +3012,29 @@ code {
background-color: rgba(255, 255, 255, 0.1);
transform: scale(1.05);
}
/* Estilo para pills interativas de tags */
.tag-pill {
background: rgba(255, 255, 255, 0.05);
border: 1px solid var(--border-light);
color: var(--text-secondary, #a3a3a3);
padding: 6px 14px;
border-radius: 20px;
font-size: 0.8rem;
font-weight: 500;
cursor: pointer;
transition: all 0.2s ease;
user-select: none;
}
.tag-pill:hover {
background: rgba(255, 255, 255, 0.1);
color: var(--text-primary, #ffffff);
}
.tag-pill.active {
background: rgba(16, 163, 127, 0.2);
border-color: var(--brand-green, #10a37f);
color: var(--brand-green, #10a37f);
font-weight: 600;
}