mirror of
https://github.com/blakeblackshear/frigate.git
synced 2024-11-21 19:07:46 +01:00
UI bugfixes and tweaks (#10848)
* fix ios z-index scrolling bug * skeleton size
This commit is contained in:
parent
07ee39b9b8
commit
5085fa7135
@ -839,8 +839,8 @@ function MotionReview({
|
||||
return (
|
||||
<div key={camera.name} className={`relative ${spans}`}>
|
||||
{motionData ? (
|
||||
<>
|
||||
<PreviewPlayer
|
||||
key={camera.name}
|
||||
className={`rounded-2xl ${spans} ${grow}`}
|
||||
camera={camera.name}
|
||||
timeRange={currentTimeRange}
|
||||
@ -858,12 +858,15 @@ function MotionReview({
|
||||
})
|
||||
}
|
||||
/>
|
||||
) : (
|
||||
<Skeleton className={`rounded-2xl ${spans} ${grow}`} />
|
||||
)}
|
||||
<div
|
||||
className={`review-item-ring pointer-events-none z-10 absolute rounded-lg inset-0 size-full -outline-offset-[2.8px] outline outline-[3px] ${detectionType ? `outline-severity_${detectionType} shadow-severity_${detectionType}` : "outline-transparent duration-500"}`}
|
||||
className={`review-item-ring pointer-events-none z-20 absolute rounded-lg inset-0 size-full -outline-offset-[2.8px] outline outline-[3px] ${detectionType ? `outline-severity_${detectionType} shadow-severity_${detectionType}` : "outline-transparent duration-500"}`}
|
||||
/>
|
||||
</>
|
||||
) : (
|
||||
<Skeleton
|
||||
className={`rounded-2xl size-full ${spans} ${grow}`}
|
||||
/>
|
||||
)}
|
||||
</div>
|
||||
);
|
||||
})}
|
||||
@ -894,7 +897,7 @@ function MotionReview({
|
||||
dense={isMobile}
|
||||
/>
|
||||
) : (
|
||||
<Skeleton className="rounded-2xl size-full" />
|
||||
<Skeleton className="size-full" />
|
||||
)}
|
||||
</div>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user