Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG-nightly.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### 3.1.15.2000

- Fixed an issue causing international names to display for mentions

### 3.1.15.1000

- Added required Firefox built-in consent metadata to the manifest
Expand Down
1 change: 1 addition & 0 deletions src/app/chat/MessageTokenMention.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
is-mention
:hide-at="!hasAt"
hide-badges
hide-intl
/>
</span>
</template>
Expand Down
15 changes: 14 additions & 1 deletion src/app/chat/UserTag.vue
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,9 @@
<span v-cosmetic-paint="shouldPaint ? paint!.id : null">
<span v-if="isMention && !hideAt">@</span>
<span>{{ user.displayName }}</span>
<span v-if="user.intl"> ({{ user.username }})</span>
<span v-if="user.intl && !hideIntl" class="seventv-chat-user-username-login">
({{ user.username }})</span
>
</span>
</span>
</div>
Expand Down Expand Up @@ -87,6 +89,7 @@ const props = withDefaults(
isMention?: boolean;
hideAt?: boolean;
hideBadges?: boolean;
hideIntl?: boolean;
clickable?: boolean;
badges?: Record<string, string>;
}>(),
Expand Down Expand Up @@ -208,6 +211,16 @@ const stop = watch(

.seventv-chat-user-username {
font-weight: 700;

.seventv-chat-user-username-login {
font-weight: initial;
}

> span:not([data-seventv-painted-text]) {
.seventv-chat-user-username-login {
opacity: 0.6;
}
}
}
}

Expand Down