summaryrefslogtreecommitdiff
path: root/src/client/app/common/views
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2019-01-31 12:24:21 +0900
committersyuilo <syuilotan@yahoo.co.jp>2019-01-31 12:24:21 +0900
commitec016e5a95385f4ed96f50fa1033b82763077189 (patch)
treedeb73952e3dc3b88d9ccc1c2442d0d68e1fca701 /src/client/app/common/views
parent[Client] MFMの制限を緩和 (diff)
downloadmisskey-ec016e5a95385f4ed96f50fa1033b82763077189.tar.gz
misskey-ec016e5a95385f4ed96f50fa1033b82763077189.tar.bz2
misskey-ec016e5a95385f4ed96f50fa1033b82763077189.zip
:art:
Diffstat (limited to 'src/client/app/common/views')
-rw-r--r--src/client/app/common/views/components/mfm.ts6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/client/app/common/views/components/mfm.ts b/src/client/app/common/views/components/mfm.ts
index bf013923a8..e322c53a38 100644
--- a/src/client/app/common/views/components/mfm.ts
+++ b/src/client/app/common/views/components/mfm.ts
@@ -98,7 +98,11 @@ export default Vue.component('misskey-flavored-markdown', {
}
case 'small': {
- return [createElement('small', genEl(token.children))];
+ return [createElement('small', {
+ attrs: {
+ style: 'opacity: 0.7;'
+ },
+ }, genEl(token.children))];
}
case 'center': {