reduce opacity of small tag only once
Some checks failed
ci/woodpecker/push/lint-foundkey-js Pipeline was successful
ci/woodpecker/push/lint-client Pipeline failed
ci/woodpecker/push/lint-backend Pipeline failed
ci/woodpecker/push/build Pipeline was successful
ci/woodpecker/push/lint-sw Pipeline failed
ci/woodpecker/push/test Pipeline failed

fixes https://github.com/misskey-dev/misskey/issues/7852
This commit is contained in:
Johann150 2021-10-03 12:20:48 +02:00
parent 1516ddfc9b
commit 54d69ed49e
Signed by: Johann150
GPG key ID: 9EE6577A2A06F8F1
2 changed files with 9 additions and 1 deletions

View file

@ -56,6 +56,14 @@ withDefaults(defineProps<{
}
}
._mfm_small_ {
opacity: 0.7;
}
._mfm_small_ ._mfm_small_{
opacity: initial;
}
@keyframes mfm-spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }

View file

@ -197,7 +197,7 @@ export default defineComponent({
case 'small': {
return h('small', {
style: 'opacity: 0.7;',
class: '_mfm_small_'
}, genEl(token.children));
}