Note when char description is hidden with creator notes

bb0c662713676eaf529df394d0f5f8e449870722

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

2 files changed, +14 -1Showing whitespace changes
public/index.html+2 -1
@@ -5108,7 +5108,8 @@
51085108 <div id="spoiler_free_desc" class="flex-container flexFlowColumn flex1 flexNoGap">
51095109 <div id="creators_notes_div" class="title_restorable">
51105110 <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>
51125113 </div>
51135114 <div id="creator_notes_spoiler" class="flex1"></div>
51145115 <!-- 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 {
32593259 align-items: center;
32603260}
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+
32623274.alternate_greeting details {
32633275 padding: 2px;
32643276}