forked from mystiq/hydrogen-web
add glow animation for pending reactions
This commit is contained in:
parent
33655ee37e
commit
47e74bd598
1 changed files with 14 additions and 1 deletions
|
@ -236,6 +236,19 @@ only loads when the top comes into view*/
|
|||
border-color: #0DBD8B;
|
||||
}
|
||||
|
||||
@keyframes glow-reaction-border {
|
||||
0% { border-color: #e9edf1; }
|
||||
100% { border-color: #0DBD8B; }
|
||||
}
|
||||
|
||||
.Timeline_messageReactions button.haveReacted.isPending {
|
||||
animation-name: glow-reaction-border;
|
||||
animation-duration: 1s;
|
||||
animation-direction: alternate;
|
||||
animation-iteration-count: infinite;
|
||||
animation-timing-function: linear;
|
||||
}
|
||||
|
||||
.AnnouncementView {
|
||||
margin: 5px 0;
|
||||
padding: 5px 10%;
|
||||
|
|
Loading…
Reference in a new issue