logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe
commit: 5516b6f07afa28eac36f39fb7f9ce7a68f075ab2
parent: 33f72ab2c215ebd7709edaf7a63062aabe8363cc
Author: lambadalambda <gitgud@rogerbraun.net>
Date:   Fri, 10 Mar 2017 09:57:56 -0500

Merge branch 'fix/conversation-heading-border' into 'develop'

Separate conversation heading and posts with a border.

See merge request !62

Diffstat:

Msrc/components/conversation/conversation.vue9++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/src/components/conversation/conversation.vue b/src/components/conversation/conversation.vue @@ -1,6 +1,6 @@ <template> <div class="timeline panel panel-default base00-background"> - <div class="panel-heading base01-background base04"> + <div class="panel-heading base01-background base04 base03-border conversation-heading"> Conversation <span v-if="collapsable" style="float:right;"> <small><a href="#" @click.prevent="$emit('toggleExpanded')">Collapse</a></small> @@ -15,3 +15,10 @@ </template> <script src="./conversation.js"></script> + +<style lang="scss"> + .conversation-heading { + border-bottom-style: solid; + border-bottom-width: 1px; + } +</style>