f61e6390fb
Moved the 'Enable Immersive HTML' toggle from main panel to settings: - Added toggle to settings.html with descriptive notes - Removed from template.html to free vertical space - Checkbox ID remains the same so existing JS still works Benefits: - Frees up vertical space in dashboard (was causing scrollbars) - Users can now use full 3x7 grid instead of being limited to 3x6 - Eliminates gap beneath last widget - Toggle is still accessible but doesn't clutter main panel - Settings panel is the appropriate place for infrequently-changed options
31 lines
1.7 KiB
HTML
31 lines
1.7 KiB
HTML
<div>
|
|
<div class="inline-drawer">
|
|
<div class="inline-drawer-toggle inline-drawer-header">
|
|
<b><i class="fa-solid fa-dice-d20"></i> RPG Companion</b>
|
|
<div class="inline-drawer-icon fa-solid fa-circle-chevron-down down"></div>
|
|
</div>
|
|
<div class="inline-drawer-content">
|
|
<label class="checkbox_label" for="rpg-extension-enabled">
|
|
<input type="checkbox" id="rpg-extension-enabled" />
|
|
<span>Enable RPG Companion</span>
|
|
</label>
|
|
<small class="notes">Toggle to enable/disable the RPG Companion extension. Configure additional settings within the panel itself.</small>
|
|
|
|
<label class="checkbox_label" for="rpg-toggle-html-prompt" style="margin-top: 10px;">
|
|
<input type="checkbox" id="rpg-toggle-html-prompt" />
|
|
<span>Enable Immersive HTML</span>
|
|
</label>
|
|
<small class="notes">Enables HTML formatting in AI responses for more immersive roleplay. This affects how tracker data is embedded in prompts.</small>
|
|
|
|
<div style="margin-top: 10px; display: flex; gap: 10px;">
|
|
<a href="https://discord.com/invite/KdAkTg94ME" target="_blank" class="menu_button" style="flex: 1; text-align: center; text-decoration: none;">
|
|
<i class="fa-brands fa-discord"></i> Discord
|
|
</a>
|
|
<a href="https://ko-fi.com/marinara_spaghetti" target="_blank" class="menu_button" style="flex: 1; text-align: center; text-decoration: none;">
|
|
<i class="fa-solid fa-heart"></i> Support Creator
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|