From 4fabeda3ecbd0f194f3951a2394849de504b1a89 Mon Sep 17 00:00:00 2001 From: Shpuld Shpuldson Date: Sun, 4 Jun 2017 23:58:15 +0300 Subject: Add list of replies under the name/links in conversation statuses, clicking them will highlight the statuses and scroll you to them, expanding a status will scroll you to that status once the conversation has opened. --- src/components/status/status.vue | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'src/components/status/status.vue') diff --git a/src/components/status/status.vue b/src/components/status/status.vue index cf84d177..5d2c0c30 100644 --- a/src/components/status/status.vue +++ b/src/components/status/status.vue @@ -56,7 +56,7 @@ - @@ -67,6 +67,12 @@ +

+ Replies: + + {{reply.name}}  + +

@@ -159,6 +165,9 @@ display: flex; flex-wrap: wrap; } + .replies { + flex-basis: 80%; + } } .source_url { -- cgit v1.2.3-70-g09d2 From 64a7db1d8b015fb386380c32645ddbce591898af Mon Sep 17 00:00:00 2001 From: Shpuld Shpuldson Date: Mon, 5 Jun 2017 12:03:32 +0300 Subject: Change replies element flex to cover more width if needed. --- src/components/status/status.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/components/status/status.vue') diff --git a/src/components/status/status.vue b/src/components/status/status.vue index 5d2c0c30..a921c9a6 100644 --- a/src/components/status/status.vue +++ b/src/components/status/status.vue @@ -166,7 +166,7 @@ flex-wrap: wrap; } .replies { - flex-basis: 80%; + flex-basis: 100%; } } -- cgit v1.2.3-70-g09d2