diff --git a/public/index.html b/public/index.html index a9e3b7efc..0cbd24e3d 100644 --- a/public/index.html +++ b/public/index.html @@ -3151,7 +3151,7 @@
-
+
diff --git a/public/script.js b/public/script.js index d682afa8b..72f9ad6ee 100644 --- a/public/script.js +++ b/public/script.js @@ -803,6 +803,7 @@ async function printCharacters() { template.find('img').attr('src', this_avatar); template.find('.avatar').attr('title', item.avatar); template.find('.ch_name').text(item.name); + template.find('.ch_avatar_url').text(item.avatar); template.find('.ch_fav_icon').css("display", 'none'); template.toggleClass('is_fav', item.fav || item.fav == 'true'); template.find('.ch_fav').val(item.fav); diff --git a/public/style.css b/public/style.css index 4e17cbd6e..a78fb5b08 100644 --- a/public/style.css +++ b/public/style.css @@ -1353,6 +1353,10 @@ input[type=search]:focus::-webkit-search-cancel-button { font-weight: bolder; } +.ch_avatar_url { + float: right; +} + .character_select .avatar { align-self: center; }