26 lines
683 B
CSS
26 lines
683 B
CSS
/* Hervorhebung für vorzuschießende Kosten I. Instanz */
|
|
.detail .cell[data-name="vorzusch1Instanz"] {
|
|
background-color: #d4edda; /* Hellgrün */
|
|
padding: 10px;
|
|
border-bottom: 4px solid #28a745; /* Grüner Rand unten */
|
|
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 {
|
|
color: #155724;
|
|
}
|
|
|
|
/* Auch im Edit-Modus hervorheben */
|
|
.edit .cell[data-name="vorzusch1Instanz"] {
|
|
background-color: #d4edda;
|
|
padding: 10px;
|
|
border-bottom: 4px solid #28a745;
|
|
border-radius: 4px;
|
|
}
|