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:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user