fix(client): fix tooltip style

This commit is contained in:
syuilo
2021-11-14 13:13:22 +09:00
parent 8a40026c5c
commit 50e1040f1e
2 changed files with 50 additions and 28 deletions

View File

@@ -1,11 +1,11 @@
<template>
<MkTooltip :source="source" ref="tooltip" @closed="$emit('closed')" :max-width="340">
<div class="renoteTooltip">
<b v-for="u in users" :key="u.id">
<MkAvatar :user="u" style="width: 24px; height: 24px;"/><br/>
<MkUserName :user="u" :nowrap="false" style="line-height: 24px;"/>
</b>
<span v-if="users.length < count" slot="omitted">+{{ count - users.length }}</span>
<MkTooltip :source="source" ref="tooltip" @closed="$emit('closed')" :max-width="250">
<div class="beaffaef">
<div class="user" v-for="u in users" :key="u.id">
<MkAvatar class="avatar" :user="u"/>
<MkUserName class="name" :user="u" :nowrap="true"/>
</div>
<div v-if="users.length < count" class="omitted">+{{ count - users.length }}</div>
</div>
</MkTooltip>
</template>
@@ -36,11 +36,25 @@ export default defineComponent({
</script>
<style lang="scss" scoped>
.renoteTooltip {
display: flex;
flex: 1;
min-width: 0;
.beaffaef {
font-size: 0.9em;
gap: 12px;
text-align: left;
> .user {
line-height: 24px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
&:not(:last-child) {
margin-bottom: 3px;
}
> .avatar {
width: 24px;
height: 24px;
margin-right: 3px;
}
}
}
</style>