feat: blur muted text
This commit is contained in:
parent
1d57a0da15
commit
c2097f9244
|
@ -110,7 +110,7 @@
|
|||
</MkA>
|
||||
</template>
|
||||
<template #reason>
|
||||
<b>{{ muted.matched.join(", ") }}</b>
|
||||
<b class="_mfm_blur_">{{ muted.matched.join(", ") }}</b>
|
||||
</template>
|
||||
</I18n>
|
||||
</div>
|
||||
|
@ -354,6 +354,15 @@ onUnmounted(() => {
|
|||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
._mfm_blur_ {
|
||||
filter: blur(6px);
|
||||
transition: filter 0.3s;
|
||||
|
||||
&:hover {
|
||||
filter: blur(0px);
|
||||
}
|
||||
}
|
||||
|
||||
.lxwezrsl {
|
||||
font-size: 1.05em;
|
||||
position: relative;
|
||||
|
|
Loading…
Reference in New Issue