diff --git a/packages/client/src/components/MkNoteSub.vue b/packages/client/src/components/MkNoteSub.vue index 48e9866d8d..7fc7fc8dd1 100644 --- a/packages/client/src/components/MkNoteSub.vue +++ b/packages/client/src/components/MkNoteSub.vue @@ -10,13 +10,17 @@

- - + + + + + +

- +
@@ -112,16 +116,24 @@ const replies: misskey.entities.Note[] = props.conversation?.filter(item => item } > .body { + :deep(.reply-icon) { + display: inline-block; + border-radius: 6px; + padding: .2em .2em; + margin-right: .2em; + color: var(--accent); + transition: background .2s; + &:hover, &:focus { + background: var(--buttonHoverBg); + } + } > .cw { cursor: default; display: block; margin: 0; padding: 0; overflow-wrap: break-word; - > .reply-icon { - margin-right: 6px; - color: var(--accent); - } + > .text { margin-right: 8px; } diff --git a/packages/client/src/components/MkSubNoteContent.vue b/packages/client/src/components/MkSubNoteContent.vue index 87e927df0a..3193834c97 100644 --- a/packages/client/src/components/MkSubNoteContent.vue +++ b/packages/client/src/components/MkSubNoteContent.vue @@ -3,8 +3,12 @@
({{ i18n.ts.deleted }}) {{ i18n.ts.quoteAttached }}: ... @@ -45,6 +49,7 @@ import { i18n } from '@/i18n'; const props = defineProps<{ note: misskey.entities.Note; parentId?; + conversation?; detailed?: boolean; }>(); @@ -64,10 +69,6 @@ const urls = props.note.text ? extractUrlFromMfm(mfm.parse(props.note.text)) : n overflow-wrap: break-word; > .body { - > .reply-icon { - margin-right: 6px; - color: var(--accent); - } > .rp { margin-left: 4px; diff --git a/packages/client/src/pages/note.vue b/packages/client/src/pages/note.vue index 1b0380cc20..1baf1894fb 100644 --- a/packages/client/src/pages/note.vue +++ b/packages/client/src/pages/note.vue @@ -1,8 +1,8 @@