Merge branch 'fix/notifications-star-not-colored' into 'develop'
Make star icon in notifications behave like the other icons.. See merge request pleroma/pleroma-fe!178
This commit is contained in:
commit
da9cfdd06c
|
@ -59,6 +59,10 @@
|
||||||
color: $blue;
|
color: $blue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.icon-star.lit {
|
||||||
|
color: orange;
|
||||||
|
}
|
||||||
|
|
||||||
.status-content {
|
.status-content {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
max-height: 300px;
|
max-height: 300px;
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
<div v-if="notification.type === 'favorite'">
|
<div v-if="notification.type === 'favorite'">
|
||||||
<h1>
|
<h1>
|
||||||
<span :title="'@'+notification.action.user.screen_name">{{ notification.action.user.name }}</span>
|
<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>
|
<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>
|
</h1>
|
||||||
<div class="notification-gradient" :style="hiderStyle"></div>
|
<div class="notification-gradient" :style="hiderStyle"></div>
|
||||||
|
|
Loading…
Reference in New Issue