secubox-openwrt/luci-app-system-hub/htdocs/luci-static/resources/system-hub/health.css
CyberMind-FR aad081e841 chore: Release v0.4.2 - Menu reorganization and CSS enhancements
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>
2025-12-28 19:07:44 +01:00

69 lines
1.6 KiB
CSS

.sh-health-view { padding: 28px; }
.sh-health-hero {
display: flex;
justify-content: space-between;
align-items: center;
padding: 24px;
background: var(--sh-gradient-soft);
border-radius: 20px;
border: 1px solid var(--sh-border);
box-shadow: var(--sh-shadow);
margin-bottom: 24px;
}
.sh-health-score {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 140px;
height: 140px;
border-radius: 50%;
border: 8px solid rgba(255,255,255,0.08);
font-size: 32px;
font-weight: 700;
}
.sh-health-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 16px;
margin-bottom: 24px;
}
.sh-health-card {
background: var(--sh-bg-secondary);
border-radius: 16px;
border: 1px solid var(--sh-border);
padding: 16px;
box-shadow: var(--sh-shadow);
}
.sh-health-value { font-size: 28px; font-weight: 700; }
.sh-health-bar {
margin-top: 12px;
height: 6px;
background: rgba(255,255,255,0.08);
border-radius: 999px;
overflow: hidden;
}
.sh-health-bar-fill {
height: 100%;
background: linear-gradient(90deg,#22c55e,#3b82f6);
transition: width 0.3s ease;
}
.sh-summary-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 16px;
margin-bottom: 24px;
}
.sh-summary-card {
background: var(--sh-bg-secondary);
border: 1px solid var(--sh-border);
border-radius: 16px;
padding: 18px;
box-shadow: var(--sh-shadow);
}
.sh-reco-list { list-style: none; padding: 0; margin: 0; }
.sh-reco-list li { padding: 10px; border-bottom: 1px solid var(--sh-border); }
@media (max-width: 720px) {
.sh-health-hero { flex-direction: column; gap: 16px; }
}