fix bot tag

This commit is contained in:
ThatOneCalculator 2023-01-03 15:31:07 -08:00
parent 8b36927925
commit 239ad21629
No known key found for this signature in database
GPG Key ID: 8703CACD01000000
2 changed files with 14 additions and 13 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "calckey", "name": "calckey",
"version": "13.0.7.10", "version": "13.0.7.11",
"codename": "aqua", "codename": "aqua",
"repository": { "repository": {
"type": "git", "type": "git",

View File

@ -1,9 +1,10 @@
<template> <template>
<header class="kkwtjztg"> <header class="kkwtjztg">
<MkA v-user-preview="note.user.id" class="name" :to="userPage(note.user)"> <MkA v-user-preview="note.user.id" class="name" :to="userPage(note.user)">
<MkUserName :user="note.user"/> <MkUserName :user="note.user" class="mkusername">
<span v-if="note.user.isBot" class="is-bot">bot</span>
</MkUserName>
</MkA> </MkA>
<div v-if="note.user.isBot" class="is-bot">bot</div>
<div class="username"><MkAcct :user="note.user"/></div> <div class="username"><MkAcct :user="note.user"/></div>
<div class="info"> <div class="info">
<MkA class="created-at" :to="notePage(note)"> <MkA class="created-at" :to="notePage(note)">
@ -50,12 +51,7 @@ defineProps<{
text-decoration: none; text-decoration: none;
text-overflow: ellipsis; text-overflow: ellipsis;
&:hover { >.mkusername >.is-bot {
text-decoration: underline;
}
}
> .is-bot {
flex-shrink: 0; flex-shrink: 0;
align-self: center; align-self: center;
margin: 0 .5em 0 0; margin: 0 .5em 0 0;
@ -65,6 +61,11 @@ defineProps<{
border-radius: 3px; border-radius: 3px;
} }
&:hover {
text-decoration: underline;
}
}
> .username { > .username {
flex-shrink: 9999999; flex-shrink: 9999999;
margin: 0 .5em 0 0; margin: 0 .5em 0 0;