show carpool areas in the search results

This commit is contained in:
Arnaud Delcasse
2026-08-27 02:50:50 +02:00
parent a856209cc3
commit e34b0d39c6
2 changed files with 186 additions and 0 deletions
+73
View File
@@ -2989,3 +2989,76 @@ a {
height: 400px;
}
}
/* Aires de covoiturage (BNLC), sous les trajets de l'onglet Covoiturage */
.carpool-areas {
margin-top: 1rem;
padding-top: 1rem;
border-top: 1px solid #e5e7eb;
}
.carpool-areas-title {
font-size: 15px;
font-weight: 700;
color: var(--color-text);
margin-bottom: 0.75rem;
}
.carpool-areas-group {
margin-bottom: 0.75rem;
}
.carpool-areas-group:last-child {
margin-bottom: 0;
}
.carpool-areas-subtitle {
font-size: 13px;
font-weight: 600;
color: #6b7280;
margin-bottom: 0.25rem;
}
.carpool-area-item {
display: flex;
flex-direction: column;
gap: 0.25rem;
padding: 0.5rem;
border-radius: 8px;
cursor: pointer;
transition: background-color 0.2s;
}
.carpool-area-item:hover {
background-color: #f3f4f6;
}
.carpool-area-name {
font-size: 14px;
color: var(--color-text);
}
.carpool-area-address {
font-size: 13px;
color: #6b7280;
}
.carpool-area-tags {
display: flex;
flex-wrap: wrap;
gap: 0.25rem;
}
.carpool-area-tag {
font-size: 12px;
font-weight: 500;
padding: 0.125rem 0.5rem;
border-radius: 4px;
background-color: #f3f4f6;
color: #374151;
}
.carpool-area-tag:first-child {
background-color: #fdf1e3;
color: var(--color-highlight);
}