26 lines
470 B
CSS
26 lines
470 B
CSS
/* stylesheet.css - Styles personnalisés pour l'extension Pilot Control */
|
|
|
|
/* Style général pour les warnings */
|
|
.warning {
|
|
color: #ff7800;
|
|
font-weight: bold;
|
|
}
|
|
|
|
/* Labels atténués */
|
|
.dim-label {
|
|
opacity: 0.6;
|
|
font-size: 0.9em;
|
|
}
|
|
|
|
/* Boutons d'action suggérés */
|
|
.suggested-action {
|
|
background-color: #3584e4;
|
|
color: white;
|
|
}
|
|
|
|
/* Liste boxed standard */
|
|
.boxed-list {
|
|
border-radius: 8px;
|
|
background-color: rgba(0, 0, 0, 0.05);
|
|
}
|