rudeshark.net/src/client/app/mobile/views/components/note-detail.sub.vue

102 lines
1.7 KiB
Vue
Raw Normal View History

2018-02-16 04:33:34 +01:00
<template>
2018-02-22 09:32:58 +01:00
<div class="root sub">
2018-04-29 10:17:15 +02:00
<mk-avatar class="avatar" :user="note.user"/>
2018-02-16 04:33:34 +01:00
<div class="main">
<header>
2018-04-09 11:52:29 +02:00
<router-link class="name" :to="note.user | userPage">{{ note.user | userName }}</router-link>
<span class="username">@{{ note.user | acct }}</span>
<router-link class="time" :to="note | notePage">
2018-04-07 19:30:37 +02:00
<mk-time :time="note.createdAt"/>
2018-02-22 09:32:58 +01:00
</router-link>
2018-02-16 04:33:34 +01:00
</header>
<div class="body">
2018-04-07 19:30:37 +02:00
<mk-sub-note-content class="text" :note="note"/>
2018-02-16 04:33:34 +01:00
</div>
</div>
</div>
</template>
<script lang="ts">
import Vue from 'vue';
2018-03-27 09:51:12 +02:00
2018-02-16 04:33:34 +01:00
export default Vue.extend({
2018-04-09 11:52:29 +02:00
props: ['note']
2018-02-16 04:33:34 +01:00
});
</script>
<style lang="stylus" scoped>
root(isDark)
2018-02-16 04:33:34 +01:00
padding 8px
font-size 0.9em
background isDark ? #21242d : #fdfdfd
2018-02-16 04:33:34 +01:00
@media (min-width 500px)
padding 12px
@media (min-width 600px)
padding 24px 32px
2018-02-16 04:33:34 +01:00
&:after
content ""
display block
clear both
2018-04-29 10:17:15 +02:00
> .avatar
2018-02-16 04:33:34 +01:00
display block
float left
margin 0 12px 0 0
2018-04-29 10:17:15 +02:00
width 48px
height 48px
border-radius 8px
2018-02-16 04:33:34 +01:00
> .main
float left
width calc(100% - 60px)
> header
display flex
2018-05-04 09:27:03 +02:00
align-items baseline
2018-02-16 04:33:34 +01:00
margin-bottom 4px
white-space nowrap
> .name
display block
margin 0 .5em 0 0
padding 0
overflow hidden
color isDark ? #fff : #607073
2018-02-16 04:33:34 +01:00
font-size 1em
font-weight 700
text-align left
text-decoration none
text-overflow ellipsis
&:hover
text-decoration underline
> .username
text-align left
margin 0 .5em 0 0
color isDark ? #606984 : #d1d8da
2018-02-16 04:33:34 +01:00
> .time
margin-left auto
color isDark ? #606984 : #b2b8bb
2018-02-16 04:33:34 +01:00
> .body
> .text
cursor default
margin 0
padding 0
font-size 1.1em
color isDark ? #959ba7 : #717171
2018-02-16 04:33:34 +01:00
.root.sub[data-darkmode]
root(true)
2018-02-16 04:33:34 +01:00
.root.sub:not([data-darkmode])
root(false)
</style>