aboutsummaryrefslogtreecommitdiff
path: root/src/components/conversation/conversation.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/conversation/conversation.vue')
-rw-r--r--src/components/conversation/conversation.vue12
1 files changed, 9 insertions, 3 deletions
diff --git a/src/components/conversation/conversation.vue b/src/components/conversation/conversation.vue
index cd108f69..11b5b3d8 100644
--- a/src/components/conversation/conversation.vue
+++ b/src/components/conversation/conversation.vue
@@ -130,10 +130,13 @@
.Conversation {
.conversation-undive-box {
padding: $status-margin;
+ border-bottom-width: 1px;
+ border-bottom-style: solid;
+ border-bottom-color: var(--border, $fallback--border);
+ border-radius: 0;
}
/* HACK: we want the border width to scale with the status *below it* */
- .conversation-undive-box,
.conversation-status {
border-top-width: 1px;
border-top-style: solid;
@@ -146,11 +149,14 @@
border-top-left-radius: var(--panelRadius, $fallback--panelRadius);
}
- /* first element in conversation body */
+ /* first element in a reply tree, the border is supplied by reply tree instead
+ for radius to display properly
+ */
&.-expanded .conversation-body {
.conversation-undive-box:nth-child(1),
& > .conversation-status:nth-child(1),
- & > .thread-body:nth-child(1) > .thread-tree:nth-child(1) > .conversation-status:nth-child(1), {
+ & > .thread-body:nth-child(1) > .thread-tree:nth-child(1) > .conversation-status:nth-child(1),
+ .thread-tree:nth-child(1) > .conversation-status:nth-child(1) {
border-top: none;
}
}