Major structural reorganization and feature additions: ## Folder Reorganization - Move 17 luci-app-* packages to package/secubox/ (except luci-app-secubox core hub) - Update all tooling to support new structure: - secubox-tools/quick-deploy.sh: search both locations - secubox-tools/validate-modules.sh: validate both directories - secubox-tools/fix-permissions.sh: fix permissions in both locations - .github/workflows/test-validate.yml: build from both paths - Update README.md links to new package/secubox/ paths ## AppStore Migration (Complete) - Add catalog entries for all remaining luci-app packages: - network-tweaks.json: Network optimization tools - secubox-bonus.json: Documentation & demos hub - Total: 24 apps in AppStore catalog (22 existing + 2 new) - New category: 'documentation' for docs/demos/tutorials ## VHost Manager v2.0 Enhancements - Add profile activation system for Internal Services and Redirects - Implement createVHost() API wrapper for template-based deployment - Fix Virtual Hosts view rendering with proper LuCI patterns - Fix RPCD backend shell script errors (remove invalid local declarations) - Extend backend validation for nginx return directives (redirect support) - Add section_id parameter for named VHost profiles - Add Remove button to Redirects page for feature parity - Update README to v2.0 with comprehensive feature documentation ## Network Tweaks Dashboard - Close button added to component details modal Files changed: 340+ (336 renames with preserved git history) Packages affected: 19 luci-app, 2 secubox-app, 1 theme, 4 tools 🤖 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;
|
|
}
|