diff options
| author | lambadalambda <gitgud@rogerbraun.net> | 2017-02-21 04:23:13 -0500 |
|---|---|---|
| committer | lambadalambda <gitgud@rogerbraun.net> | 2017-02-21 04:23:13 -0500 |
| commit | 842e15a314bd3737629b827c9e7ebd6c47d3d6ba (patch) | |
| tree | d85f0c80053458387532c50f5f7a2455107d278e /src | |
| parent | 549ee15472c47613ceaf3b33a46921bc4667c59e (diff) | |
| parent | 3d69a91abae0d4e43da237ea7336cdeb7bd8b9d8 (diff) | |
Merge branch 'feature/mark_conversations_with_a_red_line' into 'develop'
Feature/mark conversations with a red line
See merge request !25
Diffstat (limited to 'src')
| -rw-r--r-- | src/components/status/status.vue | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/components/status/status.vue b/src/components/status/status.vue index 162ab140..f111c2d5 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"> + <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; } |
