This commit is contained in:
syuilo 2023-05-06 09:53:09 +09:00
parent 10ff379b4c
commit e36f9599d2
2 changed files with 5 additions and 3 deletions

View file

@ -46,7 +46,7 @@ const url = $computed(() => (props.raw || defaultStore.state.loadRawImages)
? props.image.url ? props.image.url
: defaultStore.state.disableShowingAnimatedImages : defaultStore.state.disableShowingAnimatedImages
? getStaticImageUrl(props.image.url) ? getStaticImageUrl(props.image.url)
: props.image.thumbnailUrl : props.image.thumbnailUrl,
); );
// Plugin:register_note_view_interruptor 使watch // Plugin:register_note_view_interruptor 使watch
@ -135,6 +135,7 @@ watch(() => props.image, () => {
color: var(--accentLighten); color: var(--accentLighten);
display: inline-block; display: inline-block;
font-weight: bold; font-weight: bold;
padding: 0 6px; font-size: 12px;
padding: 2px 6px;
} }
</style> </style>

View file

@ -453,6 +453,7 @@ onUnmounted(() => {
text-align: left; text-align: left;
color: var(--fgTransparent); color: var(--fgTransparent);
line-height: 1.5; line-height: 1.5;
font-size: 85%;
} }
textarea { textarea {