diff --git a/web/src/components/player/LivePlayer.tsx b/web/src/components/player/LivePlayer.tsx index afd969a0a..ae2940c36 100644 --- a/web/src/components/player/LivePlayer.tsx +++ b/web/src/components/player/LivePlayer.tsx @@ -188,7 +188,8 @@ export default function LivePlayer({ data-camera={cameraConfig.name} className={cn( "relative flex w-full cursor-pointer justify-center outline", - activeTracking + activeTracking && + ((showStillWithoutActivity && !liveReady) || liveReady) ? "outline-3 rounded-lg shadow-severity_alert outline-severity_alert md:rounded-2xl" : "outline-0 outline-background", "transition-all duration-500", @@ -266,9 +267,12 @@ export default function LivePlayer({
- {autoLive && !offline && activeMotion && ( - - )} + {autoLive && + !offline && + activeMotion && + ((showStillWithoutActivity && !liveReady) || liveReady) && ( + + )} {offline && (