secubox-openwrt/package/secubox/luci-app-zigbee2mqtt/htdocs/luci-static/resources/zigbee2mqtt/common.css
CyberMind-FR 31a87c5d7a feat(structure): reorganize luci-app packages into package/secubox/ + appstore migration
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>
2026-01-01 14:59:38 +01:00

135 lines
2.2 KiB
CSS

.z2m-dashboard {
display: flex;
flex-direction: column;
gap: 16px;
padding: 16px;
}
.z2m-card {
background: rgba(11, 15, 28, 0.92);
border: 1px solid rgba(148, 163, 184, 0.2);
border-radius: 16px;
padding: 20px;
color: #e2e8f0;
box-shadow: 0 18px 30px rgba(2, 6, 23, 0.45);
}
.z2m-card-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 12px;
}
.z2m-form-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 12px;
}
.z2m-input-group {
display: flex;
flex-direction: column;
gap: 6px;
}
.z2m-input-group label {
font-size: 12px;
text-transform: uppercase;
letter-spacing: 0.5px;
color: #94a3b8;
}
.z2m-input {
border-radius: 10px;
border: 1px solid rgba(148, 163, 184, 0.2);
background: rgba(15, 23, 42, 0.8);
color: #e2e8f0;
padding: 10px 12px;
}
.z2m-actions {
display: flex;
flex-wrap: wrap;
gap: 8px;
justify-content: flex-end;
margin-top: 12px;
}
.z2m-log {
background: #020617;
color: #9efc6a;
border-radius: 12px;
padding: 12px;
font-family: 'JetBrains Mono', monospace;
font-size: 12px;
max-height: 260px;
overflow-y: auto;
}
.z2m-status-badges {
display: flex;
gap: 12px;
}
.z2m-badge {
padding: 6px 12px;
border-radius: 999px;
border: 1px solid rgba(148, 163, 184, 0.2);
font-size: 12px;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.z2m-badge.on {
color: #4ade80;
border-color: rgba(74, 222, 128, 0.4);
background: rgba(22, 163, 74, 0.15);
}
.z2m-badge.off {
color: #f87171;
border-color: rgba(248, 113, 113, 0.4);
background: rgba(248, 113, 113, 0.12);
}
.z2m-diag-list {
display: flex;
flex-wrap: wrap;
gap: 12px;
}
.z2m-diag-chip {
display: flex;
flex-direction: column;
padding: 12px;
border-radius: 12px;
border: 1px solid rgba(148, 163, 184, 0.2);
min-width: 150px;
}
.z2m-diag-chip.ok {
border-color: rgba(74, 222, 128, 0.4);
background: rgba(21, 128, 61, 0.12);
color: #4ade80;
}
.z2m-diag-chip.bad {
border-color: rgba(248, 113, 113, 0.4);
background: rgba(248, 113, 113, 0.1);
color: #f87171;
}
.z2m-diag-label {
font-size: 12px;
text-transform: uppercase;
letter-spacing: 0.4px;
color: #94a3b8;
}
.z2m-diag-value {
font-family: 'JetBrains Mono', monospace;
font-size: 14px;
margin-top: 4px;
}