diff --git a/public/script.js b/public/script.js index e2a73efee..a160d723b 100644 --- a/public/script.js +++ b/public/script.js @@ -814,7 +814,7 @@ async function printCharacters() { template.toggleClass('is_fav', item.fav || item.fav == 'true'); template.find('.ch_fav').val(item.fav); - const description = item.data?.creator_notes || ''; + const description = item.data?.creator_notes?.split('\n', 1)[0] || ''; if (description) { template.find('.ch_description').text(description); } diff --git a/public/style.css b/public/style.css index 0d00bdcf0..36441955e 100644 --- a/public/style.css +++ b/public/style.css @@ -2831,6 +2831,7 @@ h5 { display: flex; flex-direction: row; align-items: center; + position: relative; gap: 10px; width: fit-content; min-width: 0; @@ -4702,6 +4703,11 @@ body.waifuMode .zoomed_avatar { body.waifuMode img.expression { object-fit: contain; } + + .tag.excluded:after { + top: unset; + bottom: unset; + } } @media screen and (max-width: 450px) { @@ -4716,6 +4722,11 @@ body.waifuMode .zoomed_avatar { .BGSampleTitle { display: none; } + + .tag.excluded:after { + top: unset; + bottom: unset; + } }