- Add support for Frigate reviews / detections. - Add support for GenAI metadata. - Significant internal refactor to more flexible "UnifiedQuery" to allow mixing cameras with simple metadata and review metadata (e.g. a timeline view of a Frigate camera with reviews, and a Reolink camera with simple metadata). - Add support for folder media as camera media. There are a few more PRs to commit prior to this going live, but commiting this for now due to the scale of the change. BREAKING CHANGE: `media_type` and `events_type` are retired under `live`, `viewer` and `timeline` configuration sections, instead media type is associated (once) with the camera under `media`.
59 lines
1.0 KiB
SCSS
59 lines
1.0 KiB
SCSS
:host {
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
// Wrap "details that don't fit" off the side instead of showing part of a
|
|
// detail.
|
|
align-content: flex-start;
|
|
flex-wrap: wrap;
|
|
|
|
justify-content: center;
|
|
|
|
width: 100%;
|
|
|
|
// Details panel can shrink as well as grow.
|
|
min-height: 0px;
|
|
max-height: var(--advanced-camera-card-thumbnail-size);
|
|
|
|
margin-left: 5px;
|
|
|
|
color: var(--advanced-camera-card-thumbnail-text-color);
|
|
|
|
overflow: hidden;
|
|
|
|
--mdc-icon-size: 16px;
|
|
}
|
|
|
|
div {
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 5px;
|
|
|
|
container-type: normal;
|
|
font-size: 0.95cqh;
|
|
|
|
&.heading {
|
|
font-weight: bold;
|
|
font-size: 1cqh;
|
|
}
|
|
|
|
span {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
min-width: 0;
|
|
}
|
|
}
|
|
|
|
[severity='high'] {
|
|
color: var(--advanced-camera-card-thumbnail-icon-severity-high-color);
|
|
}
|
|
[severity='medium'] {
|
|
color: var(--advanced-camera-card-thumbnail-icon-severity-medium-color);
|
|
}
|
|
[severity='low'] {
|
|
color: var(--advanced-camera-card-thumbnail-icon-severity-low-color);
|
|
}
|