secubox-openwrt/package/secubox/luci-theme-secubox/htdocs/luci-static/resources/secubox-theme/system-hub/backup.css
CyberMind-FR 675b2d164e feat: Portal service detection, nDPId compat layer, CrowdSec/Netifyd packages
Portal (luci-app-secubox-portal):
- Fix service status showing 0/9 by checking if init scripts exist
- Only count installed services in status display
- Use pgrep fallback when init script status fails

nDPId Dashboard (luci-app-ndpid):
- Add default /etc/config/ndpid configuration
- Add /etc/init.d/ndpid-compat init script
- Enable compat service in postinst for app detection
- Fix Makefile to install init script and config

CrowdSec Dashboard:
- Add CLAUDE.md with OpenWrt-specific guidelines (pgrep without -x)
- CSS fixes for hiding LuCI left menu in all views
- LAPI repair improvements with retry logic

New Packages:
- secubox-app-crowdsec: OpenWrt-native CrowdSec package
- secubox-app-netifyd: Netifyd DPI integration
- luci-app-secubox: Core SecuBox hub
- luci-theme-secubox: Custom theme

Removed:
- luci-app-secubox-crowdsec (replaced by crowdsec-dashboard)
- secubox-crowdsec-setup (functionality moved to dashboard)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-10 13:51:40 +01:00

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;
}