aboutsummaryrefslogtreecommitdiff
path: root/src/components/conversation/conversation.vue
blob: 726cfb65e07f49bc422cd036809be6d58fa658ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<template>
  <div class="timeline panel panel-default base00-background">
    <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>
      </span>
    </div>
    <div class="panel-body">
      <div class="timeline">
        <status v-for="status in conversation" :key="status.id" :statusoid="status" :expandable='false' :focused="focused(status.id)" :inConversation='true'></status>
      </div>
    </div>
  </div>
</template>

<script src="./conversation.js"></script>

<style lang="scss">
  .conversation-heading {
    border-bottom-style: solid;
    border-bottom-width: 1px;
  }
</style>