- Retrait de no_cache (non supporté dans docker-compose) - Ajustement précis des positions pour les 4 quadrants (30px des bords) - Les labels ne chevauchent plus les cercles du radar - Amélioration de l'invalidation du cache dans Dockerfile - Documentation pour utiliser 'No cache' dans Portainer
107 lines
3.0 KiB
CSS
107 lines
3.0 KiB
CSS
/* Use this file to optionally override global css styles and use with caution. */
|
|
/* See README.md for hints and examples: https://github.com/AOEpeople/aoe_technology_radar/ */
|
|
|
|
/* Améliorer la visibilité des icônes de navigation */
|
|
nav[class*="Navigation"] svg,
|
|
nav svg,
|
|
header nav svg {
|
|
fill: #2ecc71 !important;
|
|
width: 22px !important;
|
|
height: 22px !important;
|
|
display: inline-block !important;
|
|
vertical-align: middle !important;
|
|
margin-right: 6px !important;
|
|
opacity: 1 !important;
|
|
visibility: visible !important;
|
|
}
|
|
|
|
/* S'assurer que les liens de navigation sont visibles */
|
|
nav[class*="Navigation"] a,
|
|
nav a,
|
|
header nav a {
|
|
display: inline-flex !important;
|
|
align-items: center !important;
|
|
color: #fff !important;
|
|
text-decoration: none !important;
|
|
font-size: 14px !important;
|
|
}
|
|
|
|
nav[class*="Navigation"] a:hover,
|
|
nav a:hover,
|
|
header nav a:hover {
|
|
color: #2ecc71 !important;
|
|
text-decoration: underline !important;
|
|
}
|
|
|
|
/* Ajuster le positionnement des labels de quadrants pour éviter le chevauchement avec les cercles */
|
|
/* Les labels doivent être positionnés en dehors de la zone des cercles concentriques */
|
|
[class*="Label_label"],
|
|
div[class*="label"][class*="position"] {
|
|
z-index: 1 !important;
|
|
padding: 12px !important;
|
|
max-width: 200px !important;
|
|
background: rgba(26, 77, 58, 0.9) !important;
|
|
border-radius: 8px !important;
|
|
backdrop-filter: blur(4px) !important;
|
|
}
|
|
|
|
/* Quadrant 1 (en haut à gauche) - Technologies Différenciantes */
|
|
[class*="Label_label"][class*="position-1"],
|
|
div[class*="label"][class*="position-1"] {
|
|
left: 30px !important;
|
|
top: 30px !important;
|
|
margin: 0 !important;
|
|
}
|
|
|
|
/* Quadrant 2 (en haut à droite) - Technologies de Commodité */
|
|
[class*="Label_label"][class*="position-2"],
|
|
div[class*="label"][class*="position-2"] {
|
|
right: 30px !important;
|
|
top: 30px !important;
|
|
left: auto !important;
|
|
margin: 0 !important;
|
|
}
|
|
|
|
/* Quadrant 3 (en bas à gauche) - Technologies à Risque */
|
|
[class*="Label_label"][class*="position-3"],
|
|
div[class*="label"][class*="position-3"] {
|
|
left: 30px !important;
|
|
bottom: 30px !important;
|
|
top: auto !important;
|
|
margin: 0 !important;
|
|
}
|
|
|
|
/* Quadrant 4 (en bas à droite) - Technologies Émergentes */
|
|
[class*="Label_label"][class*="position-4"],
|
|
div[class*="label"][class*="position-4"] {
|
|
right: 30px !important;
|
|
bottom: 30px !important;
|
|
left: auto !important;
|
|
top: auto !important;
|
|
margin: 0 !important;
|
|
}
|
|
|
|
/* Ajuster la légende pour éviter le chevauchement avec les cercles */
|
|
[class*="Legend_legend"],
|
|
ul[class*="legend"] {
|
|
z-index: 1 !important;
|
|
padding: 15px 20px !important;
|
|
margin-right: 30px !important;
|
|
margin-bottom: 30px !important;
|
|
background: rgba(26, 77, 58, 0.85) !important;
|
|
border-radius: 8px !important;
|
|
backdrop-filter: blur(4px) !important;
|
|
min-width: 200px !important;
|
|
}
|
|
|
|
/* Sur les grands écrans, ajuster la position de la légende */
|
|
@media (min-width: 1200px) {
|
|
[class*="Legend_legend"],
|
|
ul[class*="legend"] {
|
|
right: 20px !important;
|
|
top: auto !important;
|
|
bottom: 50px !important;
|
|
transform: none !important;
|
|
}
|
|
}
|