feat: Add collapsible sidebar with mode-specific section ordering

- Sidebar sections now rearrange based on active mode
- Mode info section (e.g., WiFi Scanning, Spectrum Analyzer) appears at top expanded
- Signal Source and SDR Device sections collapse and move below mode sections
- Other mode sections default to collapsed state
- Sections restore to original containers when switching modes
- Fix SCAN/LISTEN button styling consistency in Listening Post
- Reorder WiFi sections: WiFi Scanning, Signal Source, Monitor Mode, Scan Settings, Attack Options, Proximity Alerts, Export

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Smittix
2026-01-30 13:25:54 +00:00
parent 623a0da056
commit 68d831dbe3
10 changed files with 1671 additions and 320 deletions
+5 -3
View File
@@ -5991,13 +5991,15 @@ body::before {
cursor: not-allowed;
}
.radio-action-btn.scan {
.radio-action-btn.scan,
.radio-action-btn.listen {
background: var(--accent-green);
border-color: var(--accent-green);
color: #000;
color: #fff;
}
.radio-action-btn.scan:hover:not(:disabled) {
.radio-action-btn.scan:hover:not(:disabled),
.radio-action-btn.listen:hover:not(:disabled) {
box-shadow: 0 0 15px rgba(0, 255, 136, 0.4);
}