Revert "Show actual status in notifications when mentioned."

This reverts commit 0e1ab69c33.
This commit is contained in:
Roger Braun 2017-02-23 00:26:37 +01:00
parent 7c0f3ea666
commit 74931dece7
5 changed files with 53 additions and 61 deletions

View file

@ -1,5 +1,5 @@
<template>
<div class="status-el base00-background" v-if="!status.deleted">
<div class="status-el base00-background" v-if="!status.deleted" v-bind:class="{ 'expanded-status': !expandable }">
<template v-if="muted">
<div class="media status container muted">
<small><router-link :to="{ name: 'user-profile', params: { id: status.user.id } }">{{status.user.screen_name}}</router-link></small>
@ -121,6 +121,10 @@
}
}
.expanded-status {
border-left: 4px solid rgba(255, 48, 16, 0.65);
}
.status-actions {
padding-top: 5px;
}
@ -156,8 +160,4 @@
border-radius: 1em;
margin-bottom: 1em;
}
.conversation .status-el {
border-left: 4px solid rgba(255, 48, 16, 0.65);
}
</style>