feat: initialisation complète du CORE ProxmoxPanel
Backend Go 1.23+ : - API REST + WebSocket (chi, gorilla/websocket) - Authentification PAM via SSH + JWT RS256 - Chiffrement AES-256-GCM pour secrets SQLite - Pool SSH, client Proxmox REST, hub WebSocket pub/sub - Système de modules compilés à initialisation conditionnelle - Audit log, migrations SQLite versionnées Frontend Vue 3 + Vite + TypeScript : - Thème Neumorphism sombre/clair (CSS custom properties) - Wizard d'installation, Dashboard drag-drop, Terminal xterm.js - Toutes les vues CORE + stubs modules optionnels - i18n EN/FR (vue-i18n v11) Infrastructure : - Docker multi-stage (Go → alpine, Node → nginx) - docker-compose.yml, .gitattributes, LICENSE MIT, README Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
commit
5dbcb1df07
66 changed files with 10370 additions and 0 deletions
46
frontend/src/styles/dark.css
Normal file
46
frontend/src/styles/dark.css
Normal file
|
|
@ -0,0 +1,46 @@
|
|||
/* ============================================================
|
||||
ProxmoxPanel — Thème sombre (mode par défaut)
|
||||
============================================================ */
|
||||
|
||||
[data-theme="dark"],
|
||||
:root {
|
||||
--neu-bg: #1a1d2e;
|
||||
--neu-surface: #212438;
|
||||
--neu-text: #e2e6f6;
|
||||
--neu-text-muted: #6b7694;
|
||||
--neu-border: #2a2f4a;
|
||||
|
||||
--neu-shadow-dark: #13162280;
|
||||
--neu-shadow-light: #2d3356;
|
||||
|
||||
--neu-primary: #6c8ef4;
|
||||
--neu-primary-dim: #4a6bd4;
|
||||
--neu-success: #4cbb8a;
|
||||
--neu-warning: #f5a623;
|
||||
--neu-danger: #f05c6b;
|
||||
--neu-info: #3dbfcf;
|
||||
|
||||
color-scheme: dark;
|
||||
}
|
||||
|
||||
/* Corps de page */
|
||||
[data-theme="dark"] body {
|
||||
background-color: var(--neu-bg);
|
||||
color: var(--neu-text);
|
||||
}
|
||||
|
||||
/* Accents spécifiques au mode sombre */
|
||||
[data-theme="dark"] .neu-card {
|
||||
background: var(--neu-surface);
|
||||
}
|
||||
|
||||
[data-theme="dark"] .neu-input {
|
||||
background: var(--neu-bg);
|
||||
color: var(--neu-text);
|
||||
}
|
||||
|
||||
/* Sélections */
|
||||
[data-theme="dark"] ::selection {
|
||||
background: rgba(108, 142, 244, 0.3);
|
||||
color: var(--neu-text);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue