df
This commit is contained in:
@@ -1,70 +1,67 @@
|
||||
:root {
|
||||
--primary: #2C3E50;
|
||||
--primary: #1e293b;
|
||||
--accent: #08C5D1;
|
||||
--bg-app: #F8FAFC;
|
||||
--border-color: #E2E8F0;
|
||||
--border-light: #f1f5f9;
|
||||
--text-main: #334155;
|
||||
--bg-light: #ffffff;
|
||||
}
|
||||
|
||||
body {
|
||||
background-color: var(--bg-app) !important;
|
||||
font-family: 'Plus Jakarta Sans', sans-serif !important;
|
||||
background-color: #f8fafc !important; /* Fond de page gris très léger */
|
||||
color: var(--text-main);
|
||||
}
|
||||
|
||||
/* On supprime l'aspect "carte flottante" du main pour l'intégrer au fond */
|
||||
/* On supprime le cadre blanc du main pour qu'il se fonde dans le décor */
|
||||
#main {
|
||||
margin-top: 70px !important;
|
||||
padding: 20px 40px !important;
|
||||
background: transparent !important; /* Fond transparent pour éviter la double couche */
|
||||
border: none !important;
|
||||
margin-left: 260px !important; /* Ajuster selon ta sidebar */
|
||||
padding: 30px 40px !important;
|
||||
background: transparent !important;
|
||||
box-shadow: none !important;
|
||||
border: none !important;
|
||||
}
|
||||
|
||||
/* --- TABLEAUX ÉPURÉS (ZÉRO SUPERPOSITION) --- */
|
||||
/* --- TABLEAUX : LE SECRET DU WAHOO EST ICI --- */
|
||||
/* On abandonne les bordures de cellules pour des lignes aérées */
|
||||
.table {
|
||||
background: white !important;
|
||||
border-radius: 12px !important;
|
||||
overflow: hidden !important;
|
||||
border: 1px solid var(--border-color) !important;
|
||||
box-shadow: 0 1px 3px rgba(0,0,0,0.02) !important;
|
||||
border: 1px solid #e2e8f0 !important;
|
||||
border-collapse: collapse !important;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.table thead th {
|
||||
background: #F1F5F9 !important;
|
||||
color: #64748B !important;
|
||||
background: #f8fafc !important;
|
||||
border-bottom: 1px solid #e2e8f0 !important;
|
||||
color: #64748b !important;
|
||||
font-weight: 700 !important;
|
||||
font-size: 0.75rem !important;
|
||||
text-transform: uppercase;
|
||||
font-size: 0.7rem;
|
||||
padding: 15px !important;
|
||||
border-bottom: 1px solid var(--border-color) !important;
|
||||
padding: 15px 20px !important;
|
||||
}
|
||||
|
||||
.table tbody tr {
|
||||
transition: background 0.2s ease !important;
|
||||
border-bottom: 1px solid #F1F5F9 !important;
|
||||
border-bottom: 1px solid #f1f5f9 !important;
|
||||
transition: all 0.2s ease;
|
||||
}
|
||||
|
||||
.table tbody tr:hover {
|
||||
background: #F8FAFC !important; /* Simple changement de couleur au survol, pas d'ombre */
|
||||
background-color: #f1f9fa !important; /* Un bleu-vert très pâle au survol */
|
||||
}
|
||||
|
||||
.table td {
|
||||
padding: 12px 15px !important;
|
||||
padding: 15px 20px !important;
|
||||
font-size: 0.9rem !important;
|
||||
border: none !important;
|
||||
font-size: 0.9rem;
|
||||
vertical-align: middle !important;
|
||||
}
|
||||
|
||||
/* --- BARRE DE CONTEXTE À DROITE (FIXE ET PLATE) --- */
|
||||
/* --- BARRE DE CONTEXTE DROITE (FLAT & CLEAN) --- */
|
||||
.sidenav {
|
||||
background: white !important;
|
||||
border-left: 1px solid var(--border-color) !important;
|
||||
box-shadow: none !important; /* On retire l'ombre portée */
|
||||
padding-top: 85px !important;
|
||||
}
|
||||
|
||||
.context-widget {
|
||||
background: #F8FAFC !important;
|
||||
border: 1px solid var(--border-color) !important;
|
||||
border-radius: 8px !important; /* Moins d'arrondis pour un look plus "pro" */
|
||||
margin-bottom: 10px !important;
|
||||
border-left: 1px solid #e2e8f0 !important;
|
||||
box-shadow: none !important;
|
||||
width: 300px !important;
|
||||
padding: 90px 20px 20px 20px !important;
|
||||
}
|
||||
Reference in New Issue
Block a user