Taille du point de l'org

This commit is contained in:
Colin Maudry
2026-07-03 23:31:24 +02:00
parent 1551faaf0c
commit 6256adf826
3 changed files with 13 additions and 2 deletions
+1 -1
View File
@@ -19,8 +19,8 @@
- Refonte et mise en page pleine largeur de la page À propos - Refonte et mise en page pleine largeur de la page À propos
- Ajout des conditions générales d'utilisation (CGU) ([#93](https://github.com/ColinMaudry/colibre/issues/93)) - Ajout des conditions générales d'utilisation (CGU) ([#93](https://github.com/ColinMaudry/colibre/issues/93))
- Amélioration du référencement (sitemaps acheteurs/titulaires) - Amélioration du référencement (sitemaps acheteurs/titulaires)
- Nouvelle page d'erreur personnalisée (500)
- Amélioration des performances des pages acheteur et titulaire - Amélioration des performances des pages acheteur et titulaire
- Ajout des organismes liés sur la carte des pages acheteur et titulaire
- decp.info devient **colibre** : nouveau nom, nouvelles icônes ([#57](https://github.com/ColinMaudry/colibre/issues/57)) - decp.info devient **colibre** : nouveau nom, nouvelles icônes ([#57](https://github.com/ColinMaudry/colibre/issues/57))
**Bugs résolus** **Bugs résolus**
+11
View File
@@ -509,6 +509,17 @@ table.cell-table th {
font-weight: 400; font-weight: 400;
} }
/* Bootstrap's CSS cascade defeats dash_table's own inline `display: none`
toggle on dropdown-cell menus (react-select v1 renders the menu hidden
first to measure it, then flips to visible — Bootstrap's reset wins that
fight, so the menu never becomes visible even though the cell's "open"
state is correct). Applies to every editable dropdown column in every
DataTable, not just one table. See:
https://github.com/plotly/dash-table/issues/956 */
.Select-menu-outer {
display: block !important;
}
.marches_table.stuck { .marches_table.stuck {
position: relative; position: relative;
right: 200px; right: 200px;
+1 -1
View File
@@ -8,7 +8,7 @@ window.dash_clientside = Object.assign({}, window.dash_clientside, {
// fixe (contrairement aux tracés SVG, redimensionnés visuellement // fixe (contrairement aux tracés SVG, redimensionnés visuellement
// pendant l'animation de zoom). // pendant l'animation de zoom).
if (feature.properties.is_home) { if (feature.properties.is_home) {
const size = 26; const size = 22;
const icon = L.divIcon({ const icon = L.divIcon({
html: `<div style="background-color: ${feature.properties.marker_color}; width: ${size}px; height: ${size}px; border-radius: 50%; border: 2px solid white; box-sizing: border-box;"></div>`, html: `<div style="background-color: ${feature.properties.marker_color}; width: ${size}px; height: ${size}px; border-radius: 50%; border: 2px solid white; box-sizing: border-box;"></div>`,
className: "org-home-marker", className: "org-home-marker",