fix: CSS reset, settings API, modules champs, proxmox token
- CSS: ajout reset (box-sizing, margin, font-family, body background)
- Settings: save par PUT /api/settings/{key} (pas bulk), un appel par clé
- Settings: proxmox_token champ unique (format user@realm!id=secret)
- Modules: is_enabled/is_core (champs backend réels, pas enabled/core)
- Proxmox: supprime bouton reboot (route inexistante)
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
65c8bf332f
commit
a4b5b06f04
5 changed files with 58 additions and 30 deletions
|
|
@ -4,6 +4,32 @@
|
|||
Utilisé par tous les composants et les modules.
|
||||
============================================================================= */
|
||||
|
||||
/* ── Reset / Base ───────────────────────────────────────────────────────────── */
|
||||
*, *::before, *::after {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
html, body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Inter', sans-serif;
|
||||
font-size: 14px;
|
||||
line-height: 1.5;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
}
|
||||
|
||||
body {
|
||||
min-height: 100vh;
|
||||
background-color: var(--neu-bg);
|
||||
color: var(--neu-text);
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5, h6 { margin: 0; }
|
||||
p { margin: 0; }
|
||||
a { color: inherit; }
|
||||
button { font-family: inherit; font-size: inherit; }
|
||||
input, select, textarea { font-family: inherit; font-size: inherit; }
|
||||
|
||||
/* ── Variables CSS (surchargées par dark.css et light.css) ─────────────────── */
|
||||
:root {
|
||||
/* Couleurs de base */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue