secubox-openwrt/luci-theme-secubox/htdocs/luci-static/resources/secubox-theme/components/navigation.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

195 lines
4.2 KiB
CSS

.cyber-nav {
display: flex;
gap: 1rem;
border-bottom: 1px solid rgba(255, 255, 255, 0.08);
padding-bottom: 0.75rem;
margin-bottom: 1.5rem;
}
.cyber-nav a {
padding: 0.35rem 0.6rem;
border-radius: var(--cyber-radius-xs);
color: var(--cyber-text-secondary);
font-weight: 600;
font-size: 0.85rem;
text-transform: uppercase;
letter-spacing: 0.08em;
transition: color var(--cyber-transition), background var(--cyber-transition);
}
.cyber-nav a.is-active {
color: var(--cyber-accent-secondary);
background: rgba(6, 182, 212, 0.08);
}
/* === Cyber Tab System === */
.cyber-tablist {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: var(--cyber-space-sm);
padding: calc(var(--cyber-space-sm) + 2px);
border-radius: var(--cyber-radius-lg);
border: 1px solid rgba(255, 255, 255, 0.08);
background: rgba(10, 14, 39, 0.72);
box-shadow: 0 18px 35px rgba(2, 6, 23, 0.4);
backdrop-filter: blur(18px);
position: relative;
}
.cyber-tablist::after {
content: '';
position: absolute;
inset: 1px;
border-radius: inherit;
border: 1px solid rgba(255, 255, 255, 0.05);
pointer-events: none;
}
.cyber-tablist--pills,
.cyber-tablist--flush {
padding: 0;
background: transparent;
border: none;
box-shadow: none;
}
.cyber-tablist--pills::after,
.cyber-tablist--flush::after {
display: none;
}
.cyber-tablist--filters {
background: rgba(14, 20, 46, 0.92);
border: 1px solid rgba(255, 255, 255, 0.08);
box-shadow: 0 12px 26px rgba(0, 0, 0, 0.35);
}
.cyber-tablist--pills {
gap: var(--cyber-space-xs);
flex-wrap: wrap;
}
.cyber-tab {
display: inline-flex;
align-items: center;
gap: var(--cyber-space-xs);
padding: 0.55rem 1.2rem;
position: relative;
border-radius: var(--cyber-radius-sm);
border: 1px solid transparent;
background: transparent;
color: var(--cyber-text-secondary);
font-family: var(--cyber-font-body);
font-size: var(--cyber-text-sm);
font-weight: 600;
letter-spacing: 0.08em;
text-transform: uppercase;
cursor: pointer;
transition:
color var(--cyber-transition),
background var(--cyber-transition),
border-color var(--cyber-transition),
box-shadow var(--cyber-transition),
transform var(--cyber-transition-fast);
appearance: none;
}
.cyber-tab:hover {
color: var(--cyber-text-primary);
background: rgba(102, 126, 234, 0.12);
border-color: rgba(102, 126, 234, 0.4);
box-shadow: 0 10px 24px rgba(11, 22, 63, 0.45);
transform: translateY(-1px);
}
.cyber-tab:focus-visible {
outline: 2px solid rgba(6, 182, 212, 0.6);
outline-offset: 2px;
}
.cyber-tab.is-active {
color: var(--cyber-text-inverse);
background: var(--cyber-gradient-primary);
border-color: transparent;
box-shadow: 0 18px 32px rgba(102, 126, 234, 0.45);
}
.cyber-tab.is-active::after {
content: '';
position: absolute;
inset: 3px;
border-radius: calc(var(--cyber-radius-sm) - 2px);
border: 1px solid rgba(255, 255, 255, 0.18);
pointer-events: none;
}
.cyber-tab--pill {
padding: 0.4rem 0.95rem;
font-size: var(--cyber-text-xs);
letter-spacing: 0.02em;
text-transform: none;
border: 1px solid rgba(148, 163, 184, 0.35);
background: rgba(13, 17, 32, 0.65);
box-shadow: none;
}
.cyber-tab--pill:hover {
border-color: rgba(6, 182, 212, 0.4);
background: rgba(6, 182, 212, 0.08);
color: var(--cyber-accent-secondary);
}
.cyber-tab--pill.is-active {
color: var(--cyber-accent-secondary);
background: rgba(6, 182, 212, 0.18);
border-color: rgba(6, 182, 212, 0.6);
box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.cyber-tab--pill::after,
.cyber-tab--ghost::after {
display: none;
}
.cyber-tab--ghost {
border: 1px dashed rgba(102, 126, 234, 0.5);
color: var(--cyber-accent-secondary);
background: transparent;
text-transform: none;
letter-spacing: 0.02em;
}
.cyber-tab--ghost:hover {
background: rgba(6, 182, 212, 0.1);
box-shadow: none;
}
.cyber-tab--accent {
background: var(--cyber-gradient-primary);
color: var(--cyber-text-inverse);
border-color: transparent;
box-shadow: 0 14px 30px rgba(102, 126, 234, 0.5);
}
.cyber-tab-icon {
font-size: 1.1rem;
line-height: 1;
}
.cyber-tab-label {
font-size: inherit;
}
@media (max-width: 768px) {
.cyber-tablist {
overflow-x: auto;
padding: var(--cyber-space-xs);
}
.cyber-tab {
flex: 1 1 auto;
justify-content: center;
}
}