diff options
| author | Roger Braun <roger@rogerbraun.net> | 2017-02-22 23:37:12 +0100 |
|---|---|---|
| committer | Roger Braun <roger@rogerbraun.net> | 2017-02-22 23:37:12 +0100 |
| commit | 0e1ab69c33f155865adc27d940a2542ffdcec30a (patch) | |
| tree | f150ccf63e59ecb284a276a7a28659d9d3b614d4 /src/components/status/status.vue | |
| parent | 9778d4cfc04450a4fd9f1330c35df8487c8993bf (diff) | |
Show actual status in notifications when mentioned.
Diffstat (limited to 'src/components/status/status.vue')
| -rw-r--r-- | src/components/status/status.vue | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/components/status/status.vue b/src/components/status/status.vue index f111c2d5..b0f468e5 100644 --- a/src/components/status/status.vue +++ b/src/components/status/status.vue @@ -1,5 +1,5 @@ <template> - <div class="status-el base00-background" v-if="!status.deleted" v-bind:class="{ 'expanded-status': !expandable }"> + <div class="status-el base00-background" v-if="!status.deleted"> <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,10 +121,6 @@ } } - .expanded-status { - border-left: 4px solid rgba(255, 48, 16, 0.65); - } - .status-actions { padding-top: 5px; } @@ -160,4 +156,8 @@ border-radius: 1em; margin-bottom: 1em; } + + .conversation .status-el { + border-left: 4px solid rgba(255, 48, 16, 0.65); + } </style> |
