This release focuses on improved menu structure, enhanced CSS styling across all modules, and documentation cleanup. ## Menu & Navigation (2 modules) - Reorganized SecuBox menu with new "Network & Connectivity" category - Moved Network Modes from top-level to Network submenu - New menu path: admin/secubox/network/modes ## Network Modes Enhancements (14 files) - Enhanced all mode views: Overview, Wizard, Router, Multi-WAN, Double NAT, Access Point, Relay, VPN Relay, Travel, Sniffer, Settings - Improved dashboard.css styling - Updated API and helpers for better functionality ## System Hub Improvements (11 files) - Added dedicated CSS files for Backup and Health views - Enhanced styling: common.css, components.css, logs.css, services.css - Updated views: backup.js, components.js, health.js, logs.js, services.js - Removed deprecated settings.js view ## SecuBox Dashboard Updates (4 files) - Refined dashboard.css and modules.css styling - Enhanced dashboard.js and modules.js functionality ## Theme Updates (1 file) - Improved navigation.css component styling ## Documentation Cleanup (15 files deleted) - Removed obsolete documentation from docs/ directory - Migrated documentation to DOCS/ (uppercase) structure - Cleaned up archive files and outdated guides ## Configuration (1 file) - Updated Claude settings for new permissions Summary: - 50 files changed - 3 modules enhanced (network-modes, system-hub, secubox) - 15 documentation files cleaned up - 2 new CSS files added - Menu structure reorganized 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
101 lines
1.6 KiB
CSS
101 lines
1.6 KiB
CSS
.sh-backup-view {
|
|
padding: 28px;
|
|
}
|
|
|
|
.sh-backup-hero {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
flex-wrap: wrap;
|
|
gap: 16px;
|
|
padding: 24px;
|
|
border-radius: 20px;
|
|
background: var(--sh-gradient-soft);
|
|
border: 1px solid var(--sh-border);
|
|
box-shadow: var(--sh-shadow);
|
|
margin-bottom: 24px;
|
|
}
|
|
|
|
.sh-hero-eyebrow {
|
|
font-size: 12px;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.2em;
|
|
color: var(--sh-text-secondary);
|
|
margin-bottom: 6px;
|
|
display: inline-block;
|
|
}
|
|
|
|
.sh-backup-hero h1 {
|
|
margin: 0 0 6px;
|
|
font-size: 26px;
|
|
}
|
|
|
|
.sh-backup-hero p {
|
|
margin: 0;
|
|
color: var(--sh-text-secondary);
|
|
}
|
|
|
|
.sh-hero-badges {
|
|
display: flex;
|
|
gap: 12px;
|
|
align-items: center;
|
|
}
|
|
|
|
.sh-hero-badge {
|
|
padding: 12px 18px;
|
|
border-radius: 16px;
|
|
background: rgba(15,23,42,0.5);
|
|
border: 1px solid rgba(255,255,255,0.08);
|
|
min-width: 140px;
|
|
}
|
|
|
|
.sh-hero-badge .label {
|
|
display: block;
|
|
font-size: 11px;
|
|
letter-spacing: 0.12em;
|
|
text-transform: uppercase;
|
|
color: var(--sh-text-secondary);
|
|
}
|
|
|
|
.sh-hero-badge strong {
|
|
font-size: 18px;
|
|
}
|
|
|
|
.sh-backup-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
|
|
gap: 20px;
|
|
}
|
|
|
|
.sh-text-muted {
|
|
color: var(--sh-text-secondary);
|
|
font-size: 14px;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.sh-upload {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 12px;
|
|
padding: 16px;
|
|
margin: 16px 0;
|
|
border: 1px dashed var(--sh-border);
|
|
border-radius: 14px;
|
|
color: var(--sh-text-secondary);
|
|
cursor: pointer;
|
|
transition: all 0.2s;
|
|
}
|
|
|
|
.sh-upload:hover {
|
|
background: rgba(255,255,255,0.04);
|
|
}
|
|
|
|
.sh-upload input {
|
|
display: none;
|
|
}
|
|
|
|
.sh-action-row {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
}
|