2018-06-05 14:36:21 +02:00
|
|
|
<template>
|
|
|
|
<div class="fnlfosztlhtptnongximhlbykxblytcq">
|
|
|
|
<mk-avatar class="avatar" :user="note.user"/>
|
|
|
|
<div class="main">
|
2018-06-08 14:17:48 +02:00
|
|
|
<mk-note-header class="header" :note="note" :mini="true"/>
|
2018-06-05 14:36:21 +02:00
|
|
|
<div class="body">
|
|
|
|
<mk-sub-note-content class="text" :note="note"/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
|
|
|
|
|
|
|
export default Vue.extend({
|
|
|
|
props: {
|
|
|
|
note: {
|
|
|
|
type: Object,
|
|
|
|
required: true
|
|
|
|
},
|
|
|
|
// TODO
|
|
|
|
truncate: {
|
|
|
|
type: Boolean,
|
|
|
|
default: true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
|
|
|
root(isDark)
|
|
|
|
display flex
|
|
|
|
padding 16px
|
|
|
|
font-size 10px
|
|
|
|
background isDark ? #21242d : #fcfcfc
|
|
|
|
|
|
|
|
&.smart
|
|
|
|
> .main
|
|
|
|
width 100%
|
|
|
|
|
|
|
|
> header
|
|
|
|
align-items center
|
|
|
|
|
|
|
|
> .avatar
|
|
|
|
flex-shrink 0
|
|
|
|
display block
|
|
|
|
margin 0 8px 0 0
|
|
|
|
width 38px
|
|
|
|
height 38px
|
|
|
|
border-radius 8px
|
|
|
|
|
|
|
|
> .main
|
|
|
|
flex 1
|
|
|
|
min-width 0
|
|
|
|
|
2018-06-08 13:57:02 +02:00
|
|
|
> .header
|
2018-06-05 14:36:21 +02:00
|
|
|
margin-bottom 2px
|
|
|
|
|
|
|
|
> .body
|
|
|
|
|
|
|
|
> .text
|
|
|
|
margin 0
|
|
|
|
padding 0
|
|
|
|
color isDark ? #959ba7 : #717171
|
|
|
|
|
|
|
|
pre
|
|
|
|
max-height 120px
|
|
|
|
font-size 80%
|
|
|
|
|
|
|
|
.fnlfosztlhtptnongximhlbykxblytcq[data-darkmode]
|
|
|
|
root(true)
|
|
|
|
|
|
|
|
.fnlfosztlhtptnongximhlbykxblytcq:not([data-darkmode])
|
|
|
|
root(false)
|
|
|
|
|
|
|
|
</style>
|