mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-19 23:03:51 +02:00
Formatting
This commit is contained in:
@@ -624,7 +624,6 @@ html.dark .x-friend-item > .detail > .extra,
|
|||||||
word-break: break-word;
|
word-break: break-word;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.el-popper.x-quick-search .el-select-dropdown__item {
|
.el-popper.x-quick-search .el-select-dropdown__item {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: auto;
|
height: auto;
|
||||||
|
|||||||
@@ -40,7 +40,7 @@
|
|||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<ChevronDown />
|
<ChevronDown class="inline-block" />
|
||||||
</TooltipWrapper>
|
</TooltipWrapper>
|
||||||
</template>
|
</template>
|
||||||
<span
|
<span
|
||||||
|
|||||||
@@ -352,15 +352,18 @@ export const columns = [
|
|||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div class="block w-full min-w-0 truncate">
|
<div class="w-full min-w-0 truncate">
|
||||||
<i
|
<i
|
||||||
|
style="display:-webkit-inline-box"
|
||||||
class={[
|
class={[
|
||||||
'x-user-status',
|
'x-user-status',
|
||||||
'mr-2',
|
'mr-2',
|
||||||
statusClass(original.status)
|
statusClass(original.status)
|
||||||
]}
|
]}
|
||||||
></i>
|
></i>
|
||||||
<span>{original.statusDescription}</span>
|
<span style="display:-webkit-inline-box">
|
||||||
|
{original.statusDescription}
|
||||||
|
</span>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -17,7 +17,7 @@
|
|||||||
<span v-if="isFriendActiveOrOffline" class="extra">{{ friend.ref.statusDescription }}</span>
|
<span v-if="isFriendActiveOrOffline" class="extra">{{ friend.ref.statusDescription }}</span>
|
||||||
<template v-else>
|
<template v-else>
|
||||||
<div v-if="friend.pendingOffline" class="extra">
|
<div v-if="friend.pendingOffline" class="extra">
|
||||||
<AlertTriangle /> {{ t('side_panel.pending_offline') }}
|
<AlertTriangle class="inline-block" /> {{ t('side_panel.pending_offline') }}
|
||||||
</div>
|
</div>
|
||||||
<template v-else-if="isGroupByInstance">
|
<template v-else-if="isGroupByInstance">
|
||||||
<div class="flex items-center">
|
<div class="flex items-center">
|
||||||
|
|||||||
Reference in New Issue
Block a user