Made favorite characters/groups more apparent

This commit is contained in:
based
2023-08-20 02:30:57 +10:00
parent 0d694dcc32
commit b56fe3e01b
2 changed files with 3 additions and 3 deletions

View File

@ -1003,7 +1003,7 @@ function getCharacterBlock(item, id) {
template.attr({ 'chid': id, 'id': `CharID${id}` });
template.find('img').attr('src', this_avatar);
template.find('.avatar').attr('title', item.avatar);
template.find('.ch_name').text(item.name);
template.find('.ch_name').text(item.name).css('color', item.fav ? 'gold' : 'white');
if (power_user.show_card_avatar_urls) {
template.find('.ch_avatar_url').text(item.avatar);
}