mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-15 06:33:09 +02:00
337dd97b49
* perf(#10923): unwind css module class name * perf(#10923): support multiple components * refactor: clean up * refactor(#10923): avoid `useCssModule()` * fix(#10923): allow direct literal class name * fix(#10923): avoid computed class name * fix(#10923): allow literal keys * fix(#10923): typo * fix(#10923): invalid class names * chore: test * revert: test This reverts commit 5c7ef366eceebe8ba260efa4d5d675f6c1775c45. * fix(#10923): hidden tale * perf(#10923): also unwind scoped css contained components * perf(#10923): `normalizeClass` AOT compilation --------- Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
73 lines
1.2 KiB
Vue
73 lines
1.2 KiB
Vue
<template>
|
|
<div :class="$style.root">
|
|
<MkAvatar :class="$style.avatar" :user="$i" link preview/>
|
|
<div :class="$style.main">
|
|
<div :class="$style.header">
|
|
<MkUserName :user="$i" :nowrap="true"/>
|
|
</div>
|
|
<div>
|
|
<div>
|
|
<Mfm :text="text.trim()" :author="$i" :i="$i"/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { } from 'vue';
|
|
import { $i } from '@/account';
|
|
|
|
const props = defineProps<{
|
|
text: string;
|
|
}>();
|
|
</script>
|
|
|
|
<style lang="scss" module>
|
|
.root {
|
|
display: flex;
|
|
margin: 0;
|
|
padding: 0;
|
|
overflow: clip;
|
|
font-size: 0.95em;
|
|
}
|
|
|
|
.avatar {
|
|
flex-shrink: 0 !important;
|
|
display: block !important;
|
|
margin: 0 10px 0 0 !important;
|
|
width: 40px !important;
|
|
height: 40px !important;
|
|
border-radius: 8px !important;
|
|
pointer-events: none !important;
|
|
}
|
|
|
|
.main {
|
|
flex: 1;
|
|
min-width: 0;
|
|
}
|
|
|
|
.header {
|
|
margin-bottom: 2px;
|
|
font-weight: bold;
|
|
width: 100%;
|
|
overflow: clip;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
@container (min-width: 350px) {
|
|
.avatar {
|
|
margin: 0 10px 0 0 !important;
|
|
width: 44px !important;
|
|
height: 44px !important;
|
|
}
|
|
}
|
|
|
|
@container (min-width: 500px) {
|
|
.avatar {
|
|
margin: 0 12px 0 0 !important;
|
|
width: 48px !important;
|
|
height: 48px !important;
|
|
}
|
|
}
|
|
</style>
|