-
-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
92bb89f
commit d0ebd34
Showing
2 changed files
with
8 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
### [Unreleased] | ||
|
||
* Replicate animated heart with sparkles | ||
* Add retweet icon animation | ||
|
||
### 1.0.7: 2023-03-09 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* Cursed Mastodon Twitter CSS-only revamp by @[email protected] | ||
v1.0.8rc1 */ | ||
v1.0.8rc2 */ | ||
|
||
/* CSS variables */ | ||
:root { | ||
|
@@ -1645,6 +1645,12 @@ a.status-card.compact .status-card__description { | |
} | ||
} | ||
|
||
/* Retweet animation */ | ||
.layout-single-column.no-reduce-motion .icon-button.active .fa-retweet { | ||
/* stylelint-disable-next-line */ | ||
animation: spring-rotate-in 1s linear; | ||
} | ||
|
||
/* Heart animation */ | ||
.layout-single-column.no-reduce-motion .icon-button.star-icon { | ||
position: relative; | ||
|