Add search and PARCOURSMOB integration
All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 40s
All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 40s
This commit is contained in:
@@ -403,6 +403,11 @@ main {
|
||||
outline: 2px solid var(--color-primary);
|
||||
}
|
||||
|
||||
.form-group input.input-error {
|
||||
outline: 2px solid #e53935;
|
||||
background-color: #ffebee;
|
||||
}
|
||||
|
||||
.swap-btn {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
@@ -741,7 +746,7 @@ main {
|
||||
.conducteur-hero {
|
||||
height: 380px;
|
||||
background-size: cover;
|
||||
background-position: center;
|
||||
background-position: top;
|
||||
background-repeat: no-repeat;
|
||||
border-radius: 0 0 35px 35px;
|
||||
}
|
||||
@@ -1358,6 +1363,43 @@ main {
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
/* Messages de formulaire */
|
||||
.contact-form-message {
|
||||
padding: 1rem 1.5rem;
|
||||
border-radius: 10px;
|
||||
margin-bottom: 1.5rem;
|
||||
text-align: center;
|
||||
font-size: 14px;
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
.contact-form-success {
|
||||
background-color: #d4edda;
|
||||
color: #155724;
|
||||
border: 1px solid #c3e6cb;
|
||||
}
|
||||
|
||||
.contact-form-error {
|
||||
background-color: #f8d7da;
|
||||
color: #721c24;
|
||||
border: 1px solid #f5c6cb;
|
||||
}
|
||||
|
||||
.contact-form-submit:disabled {
|
||||
opacity: 0.7;
|
||||
cursor: not-allowed;
|
||||
}
|
||||
|
||||
.contact-form input:disabled,
|
||||
.contact-form textarea:disabled {
|
||||
background-color: #f5f5f5;
|
||||
cursor: not-allowed;
|
||||
}
|
||||
|
||||
[x-cloak] {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
/* Multicheckboxes */
|
||||
.contact-form-checkboxes {
|
||||
text-align: left;
|
||||
@@ -2084,3 +2126,799 @@ a {
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
|
||||
/* Autocomplete */
|
||||
.autocomplete-container {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.autocomplete-results {
|
||||
position: absolute;
|
||||
top: 100%;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background: var(--color-white);
|
||||
border-radius: 10px;
|
||||
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
|
||||
max-height: 200px;
|
||||
overflow-y: auto;
|
||||
z-index: 100;
|
||||
list-style: none;
|
||||
margin-top: 4px;
|
||||
}
|
||||
|
||||
.autocomplete-results li {
|
||||
padding: 0.75rem 1rem;
|
||||
cursor: pointer;
|
||||
font-size: 14px;
|
||||
color: var(--color-text);
|
||||
border-bottom: 1px solid #eee;
|
||||
}
|
||||
|
||||
.autocomplete-results li:last-child {
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
.autocomplete-results li:hover {
|
||||
background-color: #f5f5f5;
|
||||
}
|
||||
|
||||
[x-cloak] {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
/* Page Recherche */
|
||||
.page-recherche {
|
||||
padding: 2rem;
|
||||
}
|
||||
|
||||
.page-recherche .search-block {
|
||||
margin-top: 0;
|
||||
padding-top: 1rem;
|
||||
padding-bottom: 1rem;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
/* Search Results */
|
||||
.search-results-container {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
gap: 2rem;
|
||||
max-width: 1328px;
|
||||
margin: 2rem auto 0;
|
||||
padding: 0 2rem;
|
||||
align-items: start;
|
||||
}
|
||||
|
||||
.search-results-accordions {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
.result-accordion {
|
||||
background-color: var(--color-secondary);
|
||||
border-radius: 15px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.accordion-header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
width: 100%;
|
||||
padding: 1rem 1.25rem;
|
||||
background: transparent;
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
font-family: var(--font-family);
|
||||
}
|
||||
|
||||
.accordion-title {
|
||||
flex: 1;
|
||||
text-align: left;
|
||||
font-size: 16px;
|
||||
font-weight: 600;
|
||||
color: var(--color-white);
|
||||
}
|
||||
|
||||
.accordion-badge {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
min-width: 28px;
|
||||
height: 28px;
|
||||
padding: 0 0.5rem;
|
||||
background-color: var(--color-highlight);
|
||||
color: var(--color-white);
|
||||
font-size: 14px;
|
||||
font-weight: 700;
|
||||
border-radius: 14px;
|
||||
margin-right: 0.75rem;
|
||||
}
|
||||
|
||||
.accordion-arrow {
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
filter: brightness(0) invert(1);
|
||||
transition: transform 0.3s ease;
|
||||
transform: rotate(180deg);
|
||||
}
|
||||
|
||||
.accordion-arrow.open {
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
|
||||
.accordion-content {
|
||||
background-color: var(--color-white);
|
||||
}
|
||||
|
||||
.accordion-inner {
|
||||
padding: 1rem 1.25rem;
|
||||
}
|
||||
|
||||
.no-result-text {
|
||||
color: var(--color-text);
|
||||
font-size: 14px;
|
||||
font-style: italic;
|
||||
margin: 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.accordion-cta {
|
||||
text-align: center;
|
||||
margin: 1.5rem 1.5rem 0 1.5rem;
|
||||
}
|
||||
|
||||
.accordion-cta p {
|
||||
font-size: 16px;
|
||||
font-weight: 600;
|
||||
color: #000;
|
||||
margin: 0 0 0.5rem 0;
|
||||
}
|
||||
|
||||
.accordion-cta-phone {
|
||||
display: inline-block;
|
||||
font-size: 22px;
|
||||
font-weight: 700;
|
||||
color: #000;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.accordion-cta-phone:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
/* Transport solidaire result */
|
||||
.solidarity-result {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.solidarity-result p {
|
||||
margin: 0;
|
||||
font-size: 16px;
|
||||
color: var(--color-text);
|
||||
}
|
||||
|
||||
.solidarity-result .solidarity-count {
|
||||
font-size: 24px;
|
||||
font-weight: 700;
|
||||
color: #000;
|
||||
margin: 0.5rem 0;
|
||||
}
|
||||
|
||||
/* Local Solutions */
|
||||
.local-solutions-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
.local-solution-item {
|
||||
background-color: #f9fafb;
|
||||
border-radius: 10px;
|
||||
padding: 1rem;
|
||||
cursor: pointer;
|
||||
transition: all 0.2s;
|
||||
border: 2px solid transparent;
|
||||
}
|
||||
|
||||
.local-solution-item:hover {
|
||||
background-color: #f3f4f6;
|
||||
}
|
||||
|
||||
.local-solution-item.active {
|
||||
border-color: var(--color-highlight);
|
||||
background-color: #fef3e6;
|
||||
}
|
||||
|
||||
.local-solution-title {
|
||||
font-size: 16px;
|
||||
font-weight: 700;
|
||||
color: #000;
|
||||
margin: 0 0 0.5rem 0;
|
||||
}
|
||||
|
||||
.local-solution-description {
|
||||
font-size: 14px;
|
||||
color: var(--color-text);
|
||||
margin: 0 0 0.75rem 0;
|
||||
line-height: 1.4;
|
||||
}
|
||||
|
||||
.local-solution-link {
|
||||
display: inline-block;
|
||||
font-size: 14px;
|
||||
font-weight: 600;
|
||||
color: var(--color-highlight);
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.local-solution-link:hover {
|
||||
opacity: 0.8;
|
||||
}
|
||||
|
||||
.local-solutions-text {
|
||||
font-size: 15px;
|
||||
color: var(--color-text);
|
||||
text-align: center;
|
||||
margin: 1.5rem 0 0 0;
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
/* Search Results Map */
|
||||
.search-results-map {
|
||||
min-height: 400px;
|
||||
max-height: 600px;
|
||||
height: 600px;
|
||||
border-radius: 15px;
|
||||
overflow: hidden;
|
||||
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
|
||||
position: sticky;
|
||||
top: calc(var(--header-height) + 2rem);
|
||||
}
|
||||
|
||||
.search-results-map #map {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.carpool-route-info {
|
||||
position: absolute;
|
||||
bottom: 1rem;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
background-color: rgba(0, 0, 0, 0.75);
|
||||
color: #fff;
|
||||
padding: 0.75rem 1.25rem;
|
||||
border-radius: 8px;
|
||||
font-size: 14px;
|
||||
font-weight: 500;
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
/* Map Markers */
|
||||
.map-marker {
|
||||
width: 36px;
|
||||
height: 36px;
|
||||
border-radius: 10px;
|
||||
border: 2px solid var(--color-white);
|
||||
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
cursor: pointer;
|
||||
transition: transform 0.2s ease;
|
||||
}
|
||||
|
||||
.map-marker:hover {
|
||||
transform: scale(1.1);
|
||||
}
|
||||
|
||||
.map-marker-departure {
|
||||
background-color: var(--color-secondary);
|
||||
}
|
||||
|
||||
.map-marker-arrival {
|
||||
background-color: var(--color-highlight);
|
||||
}
|
||||
|
||||
/* MapLibre Popup Styling */
|
||||
.maplibregl-popup-content {
|
||||
padding: 12px 16px;
|
||||
border-radius: 10px;
|
||||
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
|
||||
font-family: var(--font-family);
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.maplibregl-popup-close-button {
|
||||
font-size: 18px;
|
||||
padding: 4px 8px;
|
||||
color: #666;
|
||||
}
|
||||
|
||||
.maplibregl-popup-close-button:hover {
|
||||
color: var(--color-text);
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
/* Transit Journeys */
|
||||
.transit-journeys {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
.transit-journey {
|
||||
background-color: #f9fafb;
|
||||
border-radius: 10px;
|
||||
padding: 1rem;
|
||||
cursor: pointer;
|
||||
transition: box-shadow 0.2s, border-color 0.2s;
|
||||
border: 2px solid transparent;
|
||||
}
|
||||
|
||||
.transit-journey:hover {
|
||||
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.transit-journey.active {
|
||||
border-color: var(--color-primary);
|
||||
box-shadow: 0 2px 8px rgba(40, 57, 89, 0.2);
|
||||
}
|
||||
|
||||
.journey-header {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.25rem;
|
||||
}
|
||||
|
||||
.journey-date {
|
||||
font-size: 14px;
|
||||
color: var(--color-text);
|
||||
text-transform: capitalize;
|
||||
}
|
||||
|
||||
.journey-times {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.375rem;
|
||||
}
|
||||
|
||||
.journey-time {
|
||||
font-size: 22px;
|
||||
font-weight: 700;
|
||||
color: var(--color-text);
|
||||
}
|
||||
|
||||
.journey-arrow {
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
}
|
||||
|
||||
.journey-duration {
|
||||
margin-left: auto;
|
||||
font-size: 12px;
|
||||
font-weight: 600;
|
||||
color: var(--color-white);
|
||||
background-color: var(--color-secondary);
|
||||
padding: 0.2rem 0.5rem;
|
||||
border-radius: 12px;
|
||||
}
|
||||
|
||||
.journey-separator {
|
||||
height: 1px;
|
||||
background-color: #e5e7eb;
|
||||
margin: 0.75rem 0;
|
||||
}
|
||||
|
||||
.journey-legs {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.journey-leg {
|
||||
display: flex;
|
||||
gap: 0.75rem;
|
||||
align-items: flex-start;
|
||||
position: relative;
|
||||
padding-bottom: 0.75rem;
|
||||
}
|
||||
|
||||
.journey-leg:last-child {
|
||||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
/* Ligne de connexion verticale entre les icônes */
|
||||
.journey-leg:not(:last-child)::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: 18px;
|
||||
top: 36px;
|
||||
bottom: 0;
|
||||
width: 2px;
|
||||
background-color: var(--color-secondary);
|
||||
transform: translateX(-50%);
|
||||
}
|
||||
|
||||
.leg-icon {
|
||||
flex-shrink: 0;
|
||||
width: 36px;
|
||||
height: 36px;
|
||||
border-radius: 8px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
background-color: var(--color-primary);
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.leg-icon img {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
filter: brightness(0) invert(1);
|
||||
}
|
||||
|
||||
.leg-icon svg {
|
||||
color: white;
|
||||
}
|
||||
|
||||
.leg-details {
|
||||
flex: 1;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.leg-line {
|
||||
font-size: 15px;
|
||||
font-weight: 700;
|
||||
color: var(--color-text);
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.leg-line strong {
|
||||
color: var(--color-primary);
|
||||
}
|
||||
|
||||
.leg-text {
|
||||
font-size: 13px;
|
||||
color: #6b7280;
|
||||
margin: 0 0 0.125rem;
|
||||
}
|
||||
|
||||
.leg-text strong {
|
||||
color: var(--color-text);
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.leg-duration {
|
||||
font-size: 12px;
|
||||
color: #9ca3af;
|
||||
}
|
||||
|
||||
.leg-operator {
|
||||
font-size: 12px;
|
||||
color: #6b7280;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.leg-direction {
|
||||
font-size: 14px;
|
||||
font-weight: 600;
|
||||
color: var(--color-text);
|
||||
margin: 0.25rem 0 0.5rem;
|
||||
}
|
||||
|
||||
.leg-timeline {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
gap: 0;
|
||||
margin-top: 0.5rem;
|
||||
position: relative;
|
||||
padding-left: 10px;
|
||||
}
|
||||
|
||||
.leg-stop {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
}
|
||||
|
||||
.leg-stop-dot {
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
border-radius: 50%;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.leg-stop-departure .leg-stop-dot {
|
||||
background-color: #79C970;
|
||||
}
|
||||
|
||||
.leg-stop-arrival .leg-stop-dot {
|
||||
background-color: #F70004;
|
||||
}
|
||||
|
||||
.leg-stop-time {
|
||||
font-size: 12px;
|
||||
font-weight: 600;
|
||||
color: var(--color-text);
|
||||
min-width: 40px;
|
||||
}
|
||||
|
||||
.leg-stop-name {
|
||||
font-size: 12px;
|
||||
color: var(--color-text);
|
||||
}
|
||||
|
||||
.leg-timeline-arrow {
|
||||
width: 14px;
|
||||
height: 14px;
|
||||
margin-left: -2px;
|
||||
transform: rotate(90deg);
|
||||
}
|
||||
|
||||
/* Carpool List */
|
||||
.carpool-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
.carpool-item {
|
||||
background-color: #f9fafb;
|
||||
border-radius: 10px;
|
||||
padding: 1rem;
|
||||
cursor: pointer;
|
||||
transition: all 0.2s;
|
||||
border: 2px solid transparent;
|
||||
}
|
||||
|
||||
.carpool-item:hover {
|
||||
background-color: #f3f4f6;
|
||||
}
|
||||
|
||||
.carpool-item.active {
|
||||
border-color: var(--color-secondary);
|
||||
background-color: #e6f7f6;
|
||||
}
|
||||
|
||||
.carpool-preview {
|
||||
margin-bottom: 0.75rem;
|
||||
}
|
||||
|
||||
.carpool-header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
margin-bottom: 0.25rem;
|
||||
}
|
||||
|
||||
.carpool-driver {
|
||||
font-size: 15px;
|
||||
font-weight: 700;
|
||||
color: var(--color-text);
|
||||
}
|
||||
|
||||
.carpool-price {
|
||||
font-size: 16px;
|
||||
font-weight: 700;
|
||||
color: var(--color-primary);
|
||||
}
|
||||
|
||||
.carpool-date {
|
||||
font-size: 13px;
|
||||
color: #6b7280;
|
||||
margin-bottom: 0.75rem;
|
||||
}
|
||||
|
||||
.carpool-route {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.5rem;
|
||||
}
|
||||
|
||||
.carpool-place {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
font-size: 14px;
|
||||
color: var(--color-text);
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.carpool-dot {
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
border-radius: 50%;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.carpool-dot-departure {
|
||||
background-color: var(--color-secondary);
|
||||
}
|
||||
|
||||
.carpool-dot-arrival {
|
||||
background-color: var(--color-highlight);
|
||||
}
|
||||
|
||||
.carpool-link-container {
|
||||
text-align: center;
|
||||
margin-top: 1rem;
|
||||
}
|
||||
|
||||
.carpool-operator-link {
|
||||
color: var(--color-highlight);
|
||||
font-size: 14px;
|
||||
font-weight: 600;
|
||||
text-decoration: underline;
|
||||
transition: opacity 0.2s;
|
||||
}
|
||||
|
||||
.carpool-operator-link:hover {
|
||||
opacity: 0.8;
|
||||
}
|
||||
|
||||
/* Mobile map container - hidden by default on desktop */
|
||||
.mobile-map-container {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.mobile-map-container #mobile-map {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
/* Compact search summary - hidden by default on desktop */
|
||||
.compact-search-summary {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Responsive */
|
||||
@media (max-width: 1024px) {
|
||||
/* Hide search form on mobile when search was performed */
|
||||
.hide-on-mobile-searched {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Page recherche with results - no padding */
|
||||
.page-recherche.has-results {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/* Mobile map - full width, no margin, after header */
|
||||
.mobile-map-container {
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: 500px;
|
||||
margin: 0;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.mobile-map-container #mobile-map {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
/* Hide desktop map on mobile */
|
||||
.search-results-map {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Compact search summary */
|
||||
.compact-search-summary {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
background-color: var(--color-secondary);
|
||||
padding: 1rem 1.25rem;
|
||||
margin-top: -1.5rem;
|
||||
border-radius: 20px 20px 0 0;
|
||||
position: relative;
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
.compact-search-content {
|
||||
flex: 1;
|
||||
text-decoration: none;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.compact-search-route {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.25rem;
|
||||
font-size: 13px;
|
||||
font-weight: 500;
|
||||
margin-bottom: 0.25rem;
|
||||
}
|
||||
|
||||
.compact-search-place {
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 120px;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.compact-search-arrow {
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
flex-shrink: 0;
|
||||
filter: brightness(0) invert(1);
|
||||
}
|
||||
|
||||
.compact-search-date {
|
||||
font-size: 12px;
|
||||
opacity: 0.9;
|
||||
}
|
||||
|
||||
.compact-search-icon {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
flex-shrink: 0;
|
||||
margin-left: 1rem;
|
||||
}
|
||||
|
||||
.compact-search-icon img {
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
filter: brightness(0) invert(1);
|
||||
}
|
||||
|
||||
/* Search results container adjustments */
|
||||
.search-results-container {
|
||||
grid-template-columns: 1fr;
|
||||
padding: 0 1rem;
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.search-results-accordions {
|
||||
padding-top: 1rem;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 600px) {
|
||||
.search-results-container {
|
||||
gap: 1rem;
|
||||
padding: 0 0.75rem;
|
||||
}
|
||||
|
||||
.accordion-header {
|
||||
padding: 0.875rem 1rem;
|
||||
}
|
||||
|
||||
.accordion-title {
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.accordion-badge {
|
||||
min-width: 24px;
|
||||
height: 24px;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.compact-search-summary {
|
||||
padding: 0.875rem 1rem;
|
||||
}
|
||||
|
||||
.compact-search-route {
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.compact-search-place {
|
||||
max-width: 100px;
|
||||
}
|
||||
|
||||
.compact-search-date {
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.mobile-map-container {
|
||||
height: 400px;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user