File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -892,6 +892,11 @@ export default {
892892 > label {
893893 animation: blink 2s infinite;
894894 }
895+ @media (prefers - reduced - motion : reduce ) {
896+ > label {
897+ animation: none;
898+ }
899+ }
895900 }
896901
897902 & __provider {
Original file line number Diff line number Diff line change @@ -188,6 +188,11 @@ export default {
188188 font-style : italic ;
189189 animation : breathing 2s linear infinite normal ;
190190 }
191+ @media (prefers-reduced-motion : reduce) {
192+ :deep (&__thinking > div ) {
193+ animation : none ;
194+ }
195+ }
191196
192197 & __button-box {
193198 display : flex ;
Original file line number Diff line number Diff line change @@ -263,15 +263,15 @@ export default {
263263 height: 16px ;
264264 flex: 0 0 16px ;
265265 border- radius: 8px ;
266- background- color: var (-- color- error);
266+ background- color: var (-- color- element - error);
267267 }
268268
269269 @keyframes fadeOutIn {
270270 0 % {
271271 opacity: 1 ;
272272 }
273273 50 % {
274- opacity: .3 ;
274+ opacity: 0.1 ;
275275 }
276276 100 % {
277277 opacity: 1 ;
@@ -281,6 +281,11 @@ export default {
281281 .fadeOutIn {
282282 animation: fadeOutIn 3s infinite;
283283 }
284+ @media (prefers - reduced - motion : reduce ) {
285+ .fadeOutIn {
286+ animation: none;
287+ }
288+ }
284289 }
285290}
286291< / style>
Original file line number Diff line number Diff line change @@ -242,6 +242,11 @@ body[dir="rtl"] .choose-file-button {
242242 .shadowed .streaming .rich - contenteditable__input {
243243 animation: pulse 2s infinite;
244244 }
245+ @media (prefers - reduced - motion : reduce ) {
246+ .shadowed .streaming .rich - contenteditable__input {
247+ animation: none;
248+ }
249+ }
245250}
246251
247252@keyframes pulse {
You can’t perform that action at this time.
0 commit comments