migrate: apply previous repository changes (#9)
* Add code owners * enhance(MkUserOnlineIndicator): indicator is not visible if 'unknown' * fix(MkError): remove unnecessary width value
This commit is contained in:
parent
6388215676
commit
9facbd4d14
3 changed files with 2 additions and 2 deletions
1
.github/CODEOWNERS
vendored
Normal file
1
.github/CODEOWNERS
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
* @hotomoe/maintainer
|
|
@ -5,12 +5,12 @@ SPDX-License-Identifier: AGPL-3.0-only
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div
|
<div
|
||||||
|
v-if="user.onlineStatus !== 'unknown'"
|
||||||
v-tooltip="text"
|
v-tooltip="text"
|
||||||
:class="[$style.root, {
|
:class="[$style.root, {
|
||||||
[$style.status_online]: user.onlineStatus === 'online',
|
[$style.status_online]: user.onlineStatus === 'online',
|
||||||
[$style.status_active]: user.onlineStatus === 'active',
|
[$style.status_active]: user.onlineStatus === 'active',
|
||||||
[$style.status_offline]: user.onlineStatus === 'offline',
|
[$style.status_offline]: user.onlineStatus === 'offline',
|
||||||
[$style.status_unknown]: user.onlineStatus === 'unknown',
|
|
||||||
}]"
|
}]"
|
||||||
></div>
|
></div>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -41,7 +41,6 @@ const emit = defineEmits<{
|
||||||
|
|
||||||
.img {
|
.img {
|
||||||
vertical-align: bottom;
|
vertical-align: bottom;
|
||||||
width: 128px;
|
|
||||||
height: 128px;
|
height: 128px;
|
||||||
margin-bottom: 16px;
|
margin-bottom: 16px;
|
||||||
border-radius: 16px;
|
border-radius: 16px;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue