2022.11 stable release #202

Merged
floatingghost merged 36 commits from develop into stable 2022-11-12 15:33:58 +00:00
3 changed files with 13 additions and 6 deletions
Showing only changes of commit ffac376b5a - Show all commits

View file

@ -1,7 +1,7 @@
<template> <template>
<div <div
class="StatusBody" class="StatusBody"
:class="{ '-compact': compact }" :class="{ '-compact': compact, 'mfm-disabled': !renderMisskeyMarkdown }"
> >
<div class="body"> <div class="body">
<div <div

View file

@ -82,9 +82,16 @@
} }
} }
&.mfm-disabled { &.mfm-disabled {
span {
font-size: 100% !important;
}
.mfm { .mfm {
animation: none !important; animation: none !important;
} }
.emoji {
width: 32px !important;
height: 32px !important;
}
} }
} }