summaryrefslogtreecommitdiff
path: root/src/client/components/note-preview.vue
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2021-11-12 02:02:25 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2021-11-12 02:02:25 +0900
commit0e4a111f81cceed275d9bec2695f6e401fb654d8 (patch)
tree40874799472fa07416f17b50a398ac33b7771905 /src/client/components/note-preview.vue
parentupdate deps (diff)
downloadmisskey-0e4a111f81cceed275d9bec2695f6e401fb654d8.tar.gz
misskey-0e4a111f81cceed275d9bec2695f6e401fb654d8.tar.bz2
misskey-0e4a111f81cceed275d9bec2695f6e401fb654d8.zip
refactoring
Resolve #7779
Diffstat (limited to 'src/client/components/note-preview.vue')
-rw-r--r--src/client/components/note-preview.vue98
1 files changed, 0 insertions, 98 deletions
diff --git a/src/client/components/note-preview.vue b/src/client/components/note-preview.vue
deleted file mode 100644
index a474a01341..0000000000
--- a/src/client/components/note-preview.vue
+++ /dev/null
@@ -1,98 +0,0 @@
-<template>
-<div class="fefdfafb" v-size="{ min: [350, 500] }">
- <MkAvatar class="avatar" :user="$i"/>
- <div class="main">
- <div class="header">
- <MkUserName :user="$i"/>
- </div>
- <div class="body">
- <div class="content">
- <Mfm :text="text" :author="$i" :i="$i"/>
- </div>
- </div>
- </div>
-</div>
-</template>
-
-<script lang="ts">
-import { defineComponent } from 'vue';
-
-export default defineComponent({
- components: {
- },
-
- props: {
- text: {
- type: String,
- required: true
- }
- },
-});
-</script>
-
-<style lang="scss" scoped>
-.fefdfafb {
- display: flex;
- margin: 0;
- padding: 0;
- overflow: clip;
- font-size: 0.95em;
-
- &.min-width_350px {
- > .avatar {
- margin: 0 10px 0 0;
- width: 44px;
- height: 44px;
- }
- }
-
- &.min-width_500px {
- > .avatar {
- margin: 0 12px 0 0;
- width: 48px;
- height: 48px;
- }
- }
-
- > .avatar {
- flex-shrink: 0;
- display: block;
- margin: 0 10px 0 0;
- width: 40px;
- height: 40px;
- border-radius: 8px;
- }
-
- > .main {
- flex: 1;
- min-width: 0;
-
- > .header {
- margin-bottom: 2px;
- }
-
- > .body {
-
- > .cw {
- cursor: default;
- display: block;
- margin: 0;
- padding: 0;
- overflow-wrap: break-word;
-
- > .text {
- margin-right: 8px;
- }
- }
-
- > .content {
- > .text {
- cursor: default;
- margin: 0;
- padding: 0;
- }
- }
- }
- }
-}
-</style>