diff options
| author | shpuld <shpuld@gmail.com> | 2017-02-21 10:19:42 +0200 |
|---|---|---|
| committer | shpuld <shpuld@gmail.com> | 2017-02-21 10:19:42 +0200 |
| commit | c24406778742382f984bc2c4f6aeee99cafa3b95 (patch) | |
| tree | af918d6e2af9ccda471a80b9967826db482fc292 | |
| parent | 549ee15472c47613ceaf3b33a46921bc4667c59e (diff) | |
Use a red border for expanded statuses
| -rw-r--r-- | src/components/status/status.vue | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/components/status/status.vue b/src/components/status/status.vue index 162ab140..bf22ee07 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="{ 'reply-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,11 @@ } } + .reply-status { + border-left: 4px solid rgba(255, 48, 16, 0.65); + //border-right: 1px dotted; + } + .status-actions { padding-top: 5px; } |
