mirror of
https://github.com/QwenLM/qwen-code.git
synced 2026-08-10 09:15:24 +00:00
* feat(web-shell): enhance composer animations * fix(web-shell): refresh DPR on resize and cover animation a11y guards Re-read devicePixelRatio inside each resize so the specular composer effect and the new-session dot field keep a correctly sized backing store when the page zoom or display scale factor changes. Add component-level coverage for the prefers-reduced-motion guards and for the typewriter replay after the empty editor loses focus. * fix(web-shell): localise specular highlight, fix rotation direction, add idle bail-out (#8098) * fix(web-shell): correct specular angle wrap and dot field pointer baseline (#8098) * fix(web-shell): paint static dot grid and idle animation loops (#8098) * fix(web-shell): reset specular proximity on pointer leave and test WebGL cleanup (#8098) --------- Co-authored-by: 钉萁 <dingqi.jww@alibaba-inc.com> Co-authored-by: qwen-code-dev-bot <qwen-code-dev@service.alibaba.com> Co-authored-by: Qwen Code Autofix <qwen-code-autofix@users.noreply.github.com> Co-authored-by: qwen-code-ci-bot <qwen-code-ci-bot@users.noreply.github.com> Co-authored-by: Qwen Code Bot <qwen-code-bot@users.noreply.github.com>
13 lines
169 B
CSS
13 lines
169 B
CSS
.root {
|
|
position: absolute;
|
|
inset: 0;
|
|
z-index: 0;
|
|
overflow: hidden;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.root canvas {
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|