Add highlight styles for 'vorzusch1Instanz' costs and update client metadata

This commit is contained in:
2026-01-23 20:56:18 +01:00
parent e6e44317d6
commit ac6b9a87f6
3 changed files with 34 additions and 2 deletions

View File

@@ -0,0 +1,26 @@
/* Hervorhebung für vorzuschießende Kosten I. Instanz */
.detail .cell[data-name="vorzusch1Instanz"] {
background-color: #d4edda; /* Hellgrün */
padding: 10px;
border-left: 4px solid #28a745; /* Grüner Rand links */
border-radius: 4px;
}
.detail .cell[data-name="vorzusch1Instanz"] .numeric-text {
font-weight: bold;
color: #155724; /* Dunkelgrün */
font-size: 1.1em;
}
.detail .cell[data-name="vorzusch1Instanz"] .label-text {
font-weight: 600;
color: #155724;
}
/* Auch im Edit-Modus hervorheben */
.edit .cell[data-name="vorzusch1Instanz"] {
background-color: #d4edda;
padding: 10px;
border-left: 4px solid #28a745;
border-radius: 4px;
}