Skip to content
Snippets Groups Projects
Commit c2440677 authored by shpuld's avatar shpuld
Browse files

Use a red border for expanded statuses

parent 549ee154
No related branches found
No related tags found
No related merge requests found
<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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment