Revert TSCM menu changes - restore original layout

The simplified layout was causing display issues. Reverting to
the original working version.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Smittix
2026-01-16 17:05:38 +00:00
parent a8bb56a109
commit 6354911c54
6 changed files with 239 additions and 173 deletions

View File

@@ -1,50 +1,5 @@
/* TSCM Styles */
/* TSCM Collapsible Sections */
.tscm-collapsible {
padding: 0 !important;
overflow: hidden;
}
.tscm-collapsible-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 12px;
cursor: pointer;
font-size: 12px;
font-weight: 600;
color: var(--text-secondary);
transition: background 0.2s;
}
.tscm-collapsible-header:hover {
background: rgba(255, 255, 255, 0.03);
}
.tscm-collapse-icon {
font-size: 14px;
font-weight: 400;
color: var(--text-muted);
transition: transform 0.2s;
}
.tscm-collapsible-content {
padding: 0 12px 12px 12px;
}
.tscm-collapsible.expanded .tscm-collapse-icon {
transform: rotate(45deg);
}
/* TSCM Tool Buttons */
.tscm-tool-btn {
flex: 1;
display: flex;
align-items: center;
justify-content: center;
padding: 8px;
min-width: 0;
}
.tscm-tool-btn:hover {
background: rgba(74, 158, 255, 0.15);
}
/* TSCM Threat Cards */
.threat-card {
display: flex;