aboutsummaryrefslogtreecommitdiff
path: root/src/components/status
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/status')
-rw-r--r--src/components/status/status.vue21
1 files changed, 14 insertions, 7 deletions
diff --git a/src/components/status/status.vue b/src/components/status/status.vue
index 885083c4..6571159c 100644
--- a/src/components/status/status.vue
+++ b/src/components/status/status.vue
@@ -1,5 +1,5 @@
<template>
- <div class="status-el status-fadein" :class="[{ 'status-el_focused': isFocused }, { 'status-conversation': inlineExpanded }]">
+ <div class="status-el" :class="[{ 'status-el_focused': isFocused }, { 'status-conversation': inlineExpanded }]">
<template v-if="muted && !noReplyLinks">
<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>
@@ -33,7 +33,7 @@
<h4 class="user-name">{{status.user.name}}</h4>
<span class="links">
<router-link :to="{ name: 'user-profile', params: { id: status.user.id } }">{{status.user.screen_name}}</router-link>
- <span v-if="status.in_reply_to_screen_name"> &gt;
+ <span v-if="status.in_reply_to_screen_name" class="faint"> &gt;
<router-link :to="{ name: 'user-profile', params: { id: status.in_reply_to_user_id } }">
{{status.in_reply_to_screen_name}}
</router-link>
@@ -167,6 +167,9 @@
border-color: $fallback--border;
border-color: var(--border, $fallback--border);
+ border-left: 4px $fallback--cRed;
+ border-left: 4px var(--cRed, $fallback--cRed);
+
&_focused {
background-color: $fallback--lightBg;
background-color: var(--lightBg, $fallback--lightBg);
@@ -307,7 +310,7 @@
}
.status-fadein {
- animation-duration: 0.3s;
+ animation-duration: 0.4s;
animation-name: fadein;
}
@@ -389,9 +392,6 @@
.status {
display: flex;
padding: 0.6em;
- border-left: 4px $fallback--cRed;
- border-left: 4px var(--cRed, $fallback--cRed);
- border-left-style: inherit;
}
.status-conversation:last-child {
@@ -399,7 +399,7 @@
}
.timeline .panel.timeline {
- overflow: hidden;
+ //overflow: hidden;
}
.muted {
@@ -427,6 +427,13 @@ a.unmute {
flex: 1;
}
+.timeline > {
+ .status-el:last-child {
+ border-bottom-radius: 0 0 $fallback--panelRadius $fallback--panelRadius;;
+ border-radius: 0 0 var(--panelRadius, $fallback--panelRadius) var(--panelRadius, $fallback--panelRadius);
+ }
+}
+
@media all and (max-width: 960px) {
.status-el {
.retweet-info {