Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/main/resources/messages.properties
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ sort.option.created.oldest=Created (Oldest First)

# Timeline
timeline.loading=Loading\u2026
timeline.no.data=No timeline data available for this date.
timeline.no.data=No timeline data is available for this date.
timeline.duration=Duration
timeline.distance=Distance
timeline.trip=Trip
Expand Down Expand Up @@ -1609,6 +1609,7 @@ js.common.minutes-ago={0} minutes ago
js.common.hours-ago={0} hours ago
js.common.days-ago={0} days ago
js.common.last-updated=Last updated
js.common.time-range={0} \u2014 {1}

common.duration.long={0}h {1}m
common.duration.short={0} min
Expand Down
35 changes: 0 additions & 35 deletions src/main/resources/static/css/date-picker.css
Original file line number Diff line number Diff line change
Expand Up @@ -237,38 +237,3 @@
right: 0;
border-radius: 10px 0 0 10px;
}

/* Hover info */
.date-picker-hover-info {
position: fixed;
background: rgba(255, 255, 255, 0.95);
border: 1px solid rgba(0, 0, 0, 0.1);
padding: 8px 12px;
font-size: 12px;
text-align: center;
min-height: 20px;
opacity: 0;
transition: opacity 0.2s ease;
border-radius: 4px;
z-index: 1000;
pointer-events: none;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
white-space: nowrap;
}

.date-picker-hover-overlay {
position: fixed;
background: rgba(0, 0, 0, 0.8);
color: white;
padding: 6px 10px;
font-size: 11px;
text-align: center;
opacity: 0;
transition: opacity 0.2s ease;
border-radius: 4px;
z-index: 1001;
pointer-events: none;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
white-space: nowrap;
display: none;
}
24 changes: 24 additions & 0 deletions src/main/resources/static/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -1445,6 +1445,30 @@ body.auto-update-mode .today-fab {
pointer-events: none;
}

.range-selection-info {
opacity: 1;
pointer-events: none;
position: absolute;
width: 100%;
text-align: center;
z-index: 2000;
border-radius: 24px;
background: var(--color-background-dark-light);
color: var(--color-highlight);
border: 1px solid var(--color-highlight);
padding-top: 8px;
padding-bottom: 8px;
left: 50%;
transform: translateX(-50%);
min-width: 300px;
transition: opacity 0.3s ease-in-out;
}
.range-selection-info.hidden {
opacity: 0;

}


body.datepicker-hidden .fab-container {
bottom: 20px;
}
Expand Down
Loading
Loading