Closed
Bug 1695790
Opened 4 years ago
Closed 4 years ago
Reduce motion of the new attachments notification based on the toolkit.cosmeticAnimations.enabled pref
Categories
(Thunderbird :: Message Compose Window, enhancement)
Thunderbird
Message Compose Window
Tracking
(thunderbird_esr78 wontfix, thunderbird87 wontfix)
RESOLVED
FIXED
88 Branch
People
(Reporter: aleca, Assigned: Paenglab)
References
Details
(Keywords: access)
Attachments
(1 file, 1 obsolete file)
1.46 KB,
patch
|
Paenglab
:
review+
|
Details | Diff | Splinter Review |
The new counter animation to highlight a successful attachment is nice, but it might be annoying and damaging for users that set the pref toolkit.cosmeticAnimations.enabled
to false.
Assignee | ||
Comment 1•4 years ago
|
||
I don't think we should use toolkit.cosmeticAnimations.enabled
as this seems to be deprecated, see Bug 1640501 and his meta bug 1478597.
Better would be to use the media query for prefers-reduced-motion
.
Assignee | ||
Comment 2•4 years ago
|
||
Something like this?
Assignee: alessandro → richard.marti
Status: NEW → ASSIGNED
Attachment #9206378 -
Flags: review?(alessandro)
Reporter | ||
Comment 3•4 years ago
|
||
Comment on attachment 9206378 [details] [diff] [review]
1695790-disable-new-attachment-animation.patch
Review of attachment 9206378 [details] [diff] [review]:
-----------------------------------------------------------------
This is great, thanks for taking care of it.
::: mail/themes/shared/mail/messengercompose.css
@@ +264,5 @@
> margin-inline-end: -29px;
> opacity: 0;
> }
>
> +@media (prefers-reduced-motion: no-preference) {
Can we also add here this little snippet?
#attachmentToggle {
transition: transform 200ms ease;
}
A tiny animation for the rotating twisty, what do you think?
Attachment #9206378 -
Flags: review?(alessandro) → review+
Assignee | ||
Comment 4•4 years ago
|
||
Added the #attachmentToggle
animation.
Attachment #9206378 -
Attachment is obsolete: true
Attachment #9206427 -
Flags: review+
Assignee | ||
Updated•4 years ago
|
status-thunderbird87:
--- → wontfix
status-thunderbird_esr78:
--- → wontfix
Keywords: checkin-needed-tb
Target Milestone: --- → 88 Branch
Pushed by mkmelin@iki.fi:
https://hg.mozilla.org/comm-central/rev/d2549cb67cb8
Don't show the add attachment animation when prefers-reduced-motion is set. r=aleca
You need to log in
before you can comment on or make changes to this bug.
Description
•