Sharkey/src/client/app/mobile/views/components/user-preview.vue

96 lines
1.5 KiB
Vue
Raw Normal View History

2018-02-15 22:42:40 +02:00
<template>
<div class="mk-user-preview">
2018-04-29 11:17:15 +03:00
<mk-avatar class="avatar" :user="user"/>
2018-02-15 22:42:40 +02:00
<div class="main">
<header>
2018-04-09 12:52:29 +03:00
<router-link class="name" :to="user | userPage">{{ user | userName }}</router-link>
2018-05-18 09:42:42 +03:00
<span class="username"><mk-acct :user="user"/></span>
2018-02-15 22:42:40 +02:00
</header>
<div class="body">
<div class="description">{{ user.description }}</div>
</div>
</div>
</div>
</template>
<script lang="ts">
import Vue from 'vue';
2018-03-27 10:51:12 +03:00
2018-02-15 22:42:40 +02:00
export default Vue.extend({
2018-04-09 12:52:29 +03:00
props: ['user']
2018-02-15 22:42:40 +02:00
});
</script>
<style lang="stylus" scoped>
.mk-user-preview
margin 0
padding 16px
font-size 12px
@media (min-width 350px)
font-size 14px
@media (min-width 500px)
font-size 16px
&:after
content ""
display block
clear both
2018-04-29 11:17:15 +03:00
> .avatar
2018-02-15 22:42:40 +02:00
display block
float left
margin 0 10px 0 0
2018-04-29 11:17:15 +03:00
width 48px
height 48px
border-radius 6px
2018-02-15 22:42:40 +02:00
@media (min-width 500px)
margin-right 16px
2018-04-29 11:17:15 +03:00
width 58px
height 58px
border-radius 8px
2018-02-15 22:42:40 +02:00
> .main
float left
width calc(100% - 58px)
@media (min-width 500px)
width calc(100% - 74px)
> header
@media (min-width 500px)
margin-bottom 2px
> .name
display inline
margin 0
padding 0
color #777
font-size 1em
font-weight 700
text-align left
text-decoration none
&:hover
text-decoration underline
> .username
text-align left
margin 0 0 0 8px
color #ccc
> .body
> .description
cursor default
display block
margin 0
padding 0
overflow-wrap break-word
font-size 1.1em
color #717171
</style>