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>
53 lines
1.6 KiB
CSS
53 lines
1.6 KiB
CSS
/**
|
|
* Minimal Theme - Clean Minimalist Light
|
|
* A bright, clean theme for maximum clarity and focus
|
|
*/
|
|
|
|
body[data-secubox-theme="minimal"] {
|
|
/* Backgrounds */
|
|
--cyber-bg-primary: #fafafa;
|
|
--cyber-bg-secondary: #ffffff;
|
|
--cyber-bg-tertiary: #f5f5f5;
|
|
--cyber-surface: #eeeeee;
|
|
--cyber-surface-light: #e0e0e0;
|
|
|
|
/* Text */
|
|
--cyber-text-primary: #0f172a;
|
|
--cyber-text-secondary: #475569;
|
|
--cyber-text-muted: #94a3b8;
|
|
--cyber-text-inverse: #ffffff;
|
|
|
|
/* Accent Colors */
|
|
--cyber-accent-primary: #2563eb;
|
|
--cyber-accent-primary-end: #1e40af;
|
|
--cyber-accent-secondary: #7c3aed;
|
|
--cyber-accent-tertiary: #4f46e5;
|
|
|
|
/* Semantic Colors */
|
|
--cyber-success: #10b981;
|
|
--cyber-success-soft: rgba(16, 185, 129, 0.1);
|
|
--cyber-warning: #f59e0b;
|
|
--cyber-warning-soft: rgba(245, 158, 11, 0.1);
|
|
--cyber-danger: #ef4444;
|
|
--cyber-danger-soft: rgba(239, 68, 68, 0.1);
|
|
--cyber-info: #06b6d4;
|
|
--cyber-info-soft: rgba(6, 182, 212, 0.1);
|
|
|
|
/* Borders & Effects */
|
|
--cyber-border: 1px solid rgba(0, 0, 0, 0.08);
|
|
--cyber-border-strong: 1px solid rgba(0, 0, 0, 0.15);
|
|
--cyber-glass-bg: rgba(255, 255, 255, 0.7);
|
|
--cyber-glass-border: rgba(0, 0, 0, 0.06);
|
|
--cyber-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
|
|
--cyber-shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.05);
|
|
|
|
/* Gradients */
|
|
--cyber-gradient-primary: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
|
|
|
|
/* Background */
|
|
background: radial-gradient(circle at 50% 10%, rgba(37, 99, 235, 0.05), transparent 60%),
|
|
radial-gradient(circle at 20% 90%, rgba(124, 58, 237, 0.04), transparent 50%),
|
|
var(--cyber-bg-primary);
|
|
color: var(--cyber-text-primary);
|
|
}
|