This commit is contained in:
2026-03-23 18:44:23 +01:00
parent bc82a42517
commit 39b8b64116
4 changed files with 242 additions and 230 deletions
+33 -2
View File
@@ -213,7 +213,7 @@
font-size: 1.1rem;
}
.btn-icon:hover:hover {
.btn-icon:hover {
background: #e2e8f0;
transform: scale(1.1);
}
@@ -558,7 +558,7 @@ input[type="number"] {
}
}
/* --- 10. BUDGET PREVISIONNEL (TIMELINE 2025) --- */
/* --- 10. BUDGET PREVISIONNEL (TIMELINE) --- */
.prev-container {
display: flex;
@@ -1111,3 +1111,34 @@ input[type="month"].pf-input {
border: 1px solid #cbd5e1;
border-radius: var(--radius-s);
}
/* ============================================================================
14. EPARGNE (epargne.php)
============================================================================ */
/* Style compact pour les inputs intégrés au tableau d'épargne */
.epargne-inline-input {
width: 100%;
min-width: 60px;
max-width: 85px;
border: 1px solid transparent;
background: transparent;
text-align: center;
padding: 2px 4px;
border-radius: 4px;
transition: 0.2s;
font-size: 0.85rem;
margin: 0 auto;
}
.epargne-inline-input:hover {
border-color: #cbd5e1;
background: #f8fafc;
}
.epargne-inline-input:focus {
border-color: var(--primary);
background: #fff;
outline: none;
box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
}