Remove dead code in app and XBRL loader

This commit is contained in:
2026-03-21 13:03:12 -04:00
parent 7d2816e3c4
commit dd289968b8
22 changed files with 22 additions and 796 deletions

View File

@@ -331,47 +331,6 @@ textarea {
color: #ff9f9f;
}
.filter-chip {
display: inline-flex;
align-items: center;
gap: 0.375rem;
padding: 0.25rem 0.5rem;
border-radius: 0.5rem;
border: 1px solid var(--line-weak);
background: var(--panel-soft);
font-size: 0.6875rem;
font-family: var(--font-mono), monospace;
letter-spacing: 0.06em;
text-transform: uppercase;
color: var(--terminal-bright);
transition:
border-color 0.15s,
background-color 0.15s;
}
.filter-chip:hover {
border-color: var(--line-strong);
}
.filter-chip .remove {
display: flex;
align-items: center;
justify-content: center;
width: 14px;
height: 14px;
border-radius: 3px;
cursor: pointer;
opacity: 0.6;
transition:
opacity 0.15s,
background-color 0.15s;
}
.filter-chip .remove:hover {
opacity: 1;
background: rgba(255, 255, 255, 0.1);
}
.section-divider {
border-top: 1px solid var(--line-weak);
margin-top: 1rem;