Make star icon in notifications behave like the other icons..

This commit is contained in:
shpuld 2017-11-25 12:57:55 +02:00
parent f50aed3a63
commit bcd10b3475
2 changed files with 5 additions and 1 deletions

View file

@ -59,6 +59,10 @@
color: $blue;
}
.icon-star.lit {
color: orange;
}
.status-content {
margin: 0;
max-height: 300px;

View file

@ -17,7 +17,7 @@
<div v-if="notification.type === 'favorite'">
<h1>
<span :title="'@'+notification.action.user.screen_name">{{ notification.action.user.name }}</span>
<i class="fa icon-star"></i>
<i class="fa icon-star lit"></i>
<small><router-link :to="{ name: 'conversation', params: { id: notification.status.id } }"><timeago :since="notification.action.created_at" :auto-update="240"></timeago></router-link></small>
</h1>
<div class="notification-gradient" :style="hiderStyle"></div>