WebKit/Chrome ignores padding-bottom on overflow-y:auto containers, so the sidebar's padding: 1rem wasn't creating scroll space below the last stop. Fix by adding padding-bottom directly to #stop-list and #route-master-list, which are inside the scrollable container. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
73 lines
1 KiB
CSS
73 lines
1 KiB
CSS
html, body {
|
|
height: 100%;
|
|
overflow: hidden;
|
|
}
|
|
|
|
#main-row {
|
|
height: calc(100vh - 56px); /* subtract navbar height */
|
|
}
|
|
|
|
#sidebar {
|
|
height: 100%;
|
|
overflow-y: auto;
|
|
padding: 1rem;
|
|
}
|
|
|
|
#map {
|
|
height: 100%;
|
|
}
|
|
|
|
.slot-box {
|
|
border: 2px solid #dee2e6;
|
|
border-radius: 6px;
|
|
padding: 0.4rem 0.6rem;
|
|
cursor: pointer;
|
|
min-height: 2.2rem;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
transition: border-color 0.15s;
|
|
}
|
|
|
|
.slot-box.active {
|
|
border-color: #0d6efd;
|
|
background: #f0f5ff;
|
|
}
|
|
|
|
.slot-box .placeholder {
|
|
color: #adb5bd;
|
|
font-style: italic;
|
|
}
|
|
|
|
.slot-box .pencil {
|
|
color: #0d6efd;
|
|
font-size: 0.8rem;
|
|
}
|
|
|
|
#stop-list,
|
|
#route-master-list {
|
|
padding-bottom: 1rem;
|
|
}
|
|
|
|
#stop-list .stop-item {
|
|
cursor: pointer;
|
|
padding: 0.25rem 0.5rem;
|
|
border-radius: 4px;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
#stop-list .stop-item:hover {
|
|
background: #e9ecef;
|
|
}
|
|
|
|
#stop-list .stop-item.is-from {
|
|
background: #d1e7dd;
|
|
}
|
|
|
|
#stop-list .stop-item.is-to {
|
|
background: #f8d7da;
|
|
}
|
|
|
|
.leaflet-container {
|
|
font-family: inherit;
|
|
}
|