From ccdb0255d45432535505f523c431aea42e57b9ef Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 2 Apr 2026 20:39:19 +0000 Subject: [PATCH] fix: add prefers-reduced-motion for OS dashboard animations Disable blinking cursor and pulsing dots for users who have requested reduced motion in their system accessibility settings. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Co-authored-by: qinfendebingshuo <207279273+qinfendebingshuo@users.noreply.github.com> --- docs/index.html | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/index.html b/docs/index.html index d165adf7..07d10531 100644 --- a/docs/index.html +++ b/docs/index.html @@ -480,6 +480,7 @@ label{display:block;font-size:12px;color:var(--dim);margin-bottom:4px;font-weigh /* Blinking cursor */ .os-blink{animation:osBlink 1.2s step-end infinite;color:var(--ok)} @keyframes osBlink{0%,100%{opacity:1}50%{opacity:0}} +@media(prefers-reduced-motion:reduce){.os-blink{animation:none}.os-task-dot.active{animation:none}.os-layer-dot{animation:none}.os-wf-dot{animation:none}.os-progress-fill::after{animation:none}} /* OS Block sections */ .os-block{margin-bottom:12px;padding-bottom:10px;border-bottom:1px solid rgba(110,168,254,.08)}