Add custom date/time media filtering.

This commit is contained in:
Dermot Duffy
2024-02-07 22:06:21 -08:00
parent 88a87e822a
commit e21756887d
14 changed files with 1667 additions and 492 deletions
+23
View File
@@ -22,3 +22,26 @@
frigate-card-select {
padding: 5px;
}
div.when {
display: inline-flex;
align-items: flex-end;
}
div.when frigate-card-select {
flex: 1;
}
div.when frigate-card-date-picker {
// Visually line up the date-picker icon with the bottom of the select
// dropdown.
padding-bottom: 5px;
transition: width 0.5s ease-in-out;
}
div.when frigate-card-date-picker {
color: var(--secondary-color);
}
div.when frigate-card-date-picker.selected {
color: var(--primary-color);
}
div.when frigate-card-date-picker.hidden {
width: 0px;
}