Note when char description is hidden with creator notes

bb0c662713676eaf529df394d0f5f8e449870722

Cohee <18619528+Cohee1207@users.noreply.github.com>

2 files changed, +14 -1Ignore whitespace
public/index.html+2 -1
@@ -5108,7 +5108,8 @@
5108 <div id="spoiler_free_desc" class="flex-container flexFlowColumn flex1 flexNoGap">5108 <div id="spoiler_free_desc" class="flex-container flexFlowColumn flex1 flexNoGap">
5109 <div id="creators_notes_div" class="title_restorable">5109 <div id="creators_notes_div" class="title_restorable">
5110 <span data-i18n="Creator's Notes">Creator's Notes</span>5110 <span data-i18n="Creator's Notes">Creator's Notes</span>
5111 <div id="spoiler_free_desc_button" class="margin0 menu_button fa-solid fa-eye" title="Show / Hide Description and First Message" data-i18n="[title]Show / Hide Description and First Message"></div>5111 <small id="creators_note_desc_hidden" data-i18n="Character details are hidden.">Character details are hidden.</small>
5112 <div id="spoiler_free_desc_button" class="margin0 menu_button fa-solid fa-eye fa-fw" title="Show / Hide Description and First Message" data-i18n="[title]Show / Hide Description and First Message"></div>
5112 </div>5113 </div>
5113 <div id="creator_notes_spoiler" class="flex1"></div>5114 <div id="creator_notes_spoiler" class="flex1"></div>
5114 <!-- A button to show / hide description_div and description_textarea and first_message_div and firstmessage_textarea-->5115 <!-- A button to show / hide description_div and description_textarea and first_message_div and firstmessage_textarea-->
public/style.css+12 -0
@@ -3259,6 +3259,18 @@ grammarly-extension {
3259 align-items: center;3259 align-items: center;
3260}3260}
32613261
3262#creators_notes_div {
3263 align-items: baseline;
3264}
3265
3266#creators_note_desc_hidden {
3267 display: none;
3268}
3269
3270#creators_notes_div:has(#spoiler_free_desc_button.fa-eye-slash) #creators_note_desc_hidden {
3271 display: initial;
3272}
3273
3262.alternate_greeting details {3274.alternate_greeting details {
3263 padding: 2px;3275 padding: 2px;
3264}3276}