remove custom fadein logic

This commit is contained in:
Brenden Bice 2019-04-06 14:52:17 -04:00
parent e734370e33
commit 1f4fcf56cd
1 changed files with 1 additions and 15 deletions

View File

@ -133,7 +133,7 @@
<link-preview :card="status.card" :size="attachmentSize" :nsfw="nsfwClickthrough" />
</div>
<div class="favs-repeated-users" v-if="combinedFavsAndRepeatsAvatars.length > 0" :class="{ 'status-fadein': combinedFavsAndRepeatsAvatars.length > 0 }">
<div class="favs-repeated-users" v-if="combinedFavsAndRepeatsAvatars.length > 0">
<ul class="stats">
<li class="stat-count" v-if="statusoid.rebloggedBy && statusoid.rebloggedBy.length > 0">
<a class="stat-title">{{ $t('settings.notification_visibility_repeats') }}</a>
@ -530,20 +530,6 @@ $status-margin: 0.75em;
}
}
.status-fadein {
animation-duration: 0.4s;
animation-name: fadein;
}
@keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.greentext {
color: green;
}