diff options
Diffstat (limited to 'src/components/thread_tree/thread_tree.vue')
| -rw-r--r-- | src/components/thread_tree/thread_tree.vue | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/src/components/thread_tree/thread_tree.vue b/src/components/thread_tree/thread_tree.vue index fa1e5f86..aafad66e 100644 --- a/src/components/thread_tree/thread_tree.vue +++ b/src/components/thread_tree/thread_tree.vue @@ -109,14 +109,16 @@ <style lang="scss"> @import '../../_variables.scss'; .thread-tree-replies { - margin-left: 1em; + margin-left: $status-margin; + border-left: 1px solid var(--border, $fallback--border); + border-top-left-radius: $fallback--panelRadius; + border-top-left-radius: var(--panelRadius, $fallback--panelRadius); + border-bottom-left-radius: $fallback--panelRadius; + border-bottom-left-radius: var(--panelRadius, $fallback--panelRadius); } + .thread-tree-replies-hidden { - padding: 1em; - border-bottom: 1px solid var(--border, #222); -} -.conversation-status.conversation-status-treeview:last-child, -.Conversation.-expanded .conversation-status.conversation-status-treeview:last-child { - border-bottom: 1px solid var(--border, #222); + padding: $status-margin; + border-top: 1px solid var(--border, $fallback--border); } </style> |
