2017-08-21 10:25:01 -07:00
|
|
|
<template>
|
2018-03-31 11:14:36 -07:00
|
|
|
<div class="card">
|
2017-08-21 10:25:01 -07:00
|
|
|
<a href="#">
|
|
|
|
<img @click.prevent="toggleUserExpanded" class="avatar" :src="user.profile_image_url">
|
|
|
|
</a>
|
2017-11-20 03:03:02 -08:00
|
|
|
<div class="usercard" v-if="userExpanded">
|
2017-08-21 10:25:01 -07:00
|
|
|
<user-card-content :user="user" :switcher="false"></user-card-content>
|
|
|
|
</div>
|
|
|
|
<div class="name-and-screen-name" v-else>
|
2017-08-23 10:33:20 -07:00
|
|
|
<div class="user-name">
|
|
|
|
{{ user.name }}
|
|
|
|
<span class="follows-you" v-if="!userExpanded && showFollows && user.follows_you">
|
2017-11-07 06:14:37 -08:00
|
|
|
{{ $t('user_card.follows_you') }}
|
2017-08-23 10:33:20 -07:00
|
|
|
</span>
|
2017-08-21 10:25:01 -07:00
|
|
|
</div>
|
2017-08-23 10:33:20 -07:00
|
|
|
<a :href="user.statusnet_profile_url" target="blank"><div class="user-screen-name">@{{ user.screen_name }}</div></a>
|
|
|
|
</div>
|
2017-08-21 10:25:01 -07:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script src="./user_card.js"></script>
|
|
|
|
|
|
|
|
<style lang="scss">
|
2018-03-31 11:14:36 -07:00
|
|
|
.name-and-screen-name {
|
2017-08-21 10:25:01 -07:00
|
|
|
margin-left: 0.7em;
|
|
|
|
margin-top:0.0em;
|
|
|
|
margin-right: 2em;
|
|
|
|
text-align: left;
|
2017-08-23 10:33:20 -07:00
|
|
|
width: 100%;
|
2018-03-31 11:14:36 -07:00
|
|
|
}
|
2017-08-21 10:25:01 -07:00
|
|
|
|
2018-03-31 11:14:36 -07:00
|
|
|
.follows-you {
|
2017-08-21 10:25:01 -07:00
|
|
|
margin-left: 2em;
|
2017-08-23 10:33:20 -07:00
|
|
|
float: right;
|
2018-03-31 11:14:36 -07:00
|
|
|
}
|
2017-08-21 10:25:01 -07:00
|
|
|
|
2018-03-31 11:14:36 -07:00
|
|
|
.follows {
|
2017-08-23 10:33:20 -07:00
|
|
|
|
2018-03-31 11:14:36 -07:00
|
|
|
}
|
2017-08-21 10:25:01 -07:00
|
|
|
|
2018-03-31 11:14:36 -07:00
|
|
|
.card {
|
2017-08-21 10:25:01 -07:00
|
|
|
display: flex;
|
|
|
|
flex: 1 0;
|
|
|
|
padding-top: 0.6em;
|
|
|
|
padding-right: 1em;
|
|
|
|
padding-bottom: 0.6em;
|
|
|
|
padding-left: 1em;
|
|
|
|
border-bottom: 1px solid;
|
|
|
|
margin: 0;
|
2018-03-31 11:14:36 -07:00
|
|
|
border-bottom-color: var(--border);
|
2017-08-23 10:33:20 -07:00
|
|
|
|
|
|
|
.avatar {
|
2018-03-31 11:14:36 -07:00
|
|
|
margin-top: 0.2em;
|
|
|
|
width:32px;
|
|
|
|
height: 32px;
|
|
|
|
border-radius: 50%;
|
2017-08-23 10:33:20 -07:00
|
|
|
}
|
2018-03-31 11:14:36 -07:00
|
|
|
}
|
2017-08-21 10:25:01 -07:00
|
|
|
|
2018-03-31 11:14:36 -07:00
|
|
|
.usercard {
|
2017-12-05 01:03:41 -08:00
|
|
|
width: fill-available;
|
2017-11-20 03:03:02 -08:00
|
|
|
margin: 0.2em 0 0.7em 0;
|
2017-11-21 00:30:30 -08:00
|
|
|
border-radius: 10px;
|
2017-11-20 03:03:02 -08:00
|
|
|
border-style: solid;
|
|
|
|
border-color: inherit;
|
|
|
|
border-width: 1px;
|
2017-11-21 00:30:30 -08:00
|
|
|
overflow: hidden;
|
|
|
|
|
2018-03-31 11:14:36 -07:00
|
|
|
.panel-heading {
|
|
|
|
background: transparent;
|
|
|
|
}
|
2017-11-21 00:30:30 -08:00
|
|
|
p {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2017-08-21 10:25:01 -07:00
|
|
|
}
|
|
|
|
</style>
|