mirror of
https://github.com/mastodon/mastodon.git
synced 2024-08-20 21:08:15 -07:00
Reduce motion for boost animation (#5871)
* Reduce motion for boost animation Fixes #5833 * Fix ternary expression
This commit is contained in:
parent
35fdf561be
commit
a8eb0bf44f
2 changed files with 14 additions and 2 deletions
|
@ -2149,7 +2149,8 @@
|
||||||
|
|
||||||
@import 'boost';
|
@import 'boost';
|
||||||
|
|
||||||
button.icon-button i.fa-retweet {
|
.no-reduce-motion button.icon-button i.fa-retweet {
|
||||||
|
|
||||||
background-position: 0 0;
|
background-position: 0 0;
|
||||||
height: 19px;
|
height: 19px;
|
||||||
transition: background-position 0.9s steps(10);
|
transition: background-position 0.9s steps(10);
|
||||||
|
@ -2160,13 +2161,23 @@ button.icon-button i.fa-retweet {
|
||||||
&::before {
|
&::before {
|
||||||
display: none !important;
|
display: none !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
button.icon-button.active i.fa-retweet {
|
.no-reduce-motion button.icon-button.active i.fa-retweet {
|
||||||
transition-duration: 0.9s;
|
transition-duration: 0.9s;
|
||||||
background-position: 0 100%;
|
background-position: 0 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.reduce-motion button.icon-button i.fa-retweet {
|
||||||
|
color: $ui-base-lighter-color;
|
||||||
|
transition: color 100ms ease-in;
|
||||||
|
}
|
||||||
|
|
||||||
|
.reduce-motion button.icon-button.active i.fa-retweet {
|
||||||
|
color: $ui-highlight-color;
|
||||||
|
}
|
||||||
|
|
||||||
.status-card {
|
.status-card {
|
||||||
display: flex;
|
display: flex;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
|
|
@ -28,6 +28,7 @@
|
||||||
|
|
||||||
- body_classes ||= @body_classes || ''
|
- body_classes ||= @body_classes || ''
|
||||||
- body_classes += ' system-font' if current_account&.user&.setting_system_font_ui
|
- body_classes += ' system-font' if current_account&.user&.setting_system_font_ui
|
||||||
|
- body_classes += current_account&.user&.setting_reduce_motion ? ' reduce-motion' : ' no-reduce-motion'
|
||||||
|
|
||||||
%body{ class: add_rtl_body_class(body_classes) }
|
%body{ class: add_rtl_body_class(body_classes) }
|
||||||
= content_for?(:content) ? yield(:content) : yield
|
= content_for?(:content) ? yield(:content) : yield
|
||||||
|
|
Loading…
Reference in a new issue