-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.html
More file actions
28 lines (28 loc) · 1.45 KB
/
Copy pathsettings.html
File metadata and controls
28 lines (28 loc) · 1.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<div class="fast_user_switching_settings">
<div class="inline-drawer">
<div class="inline-drawer-toggle inline-drawer-header">
<b>Fast User Switching</b>
<div class="inline-drawer-icon fa-solid fa-circle-chevron-down down"></div>
</div>
<div class="inline-drawer-content">
<div id="userSwitcher_disabledWarning" class="neutral_warning" style="display:none;">
Multi-user accounts are disabled on this server, so there's nobody to switch to. Set <code>enableUserAccounts: true</code> in SillyTavern's config.yaml to enable Fast User Switching.
</div>
<label class="checkbox_label" for="userSwitcher_hideCurrentUser">
<input id="userSwitcher_hideCurrentUser" type="checkbox" />
<span>Hide Current User</span>
</label>
<label class="checkbox_label" for="userSwitcher_dimAvatarImages">
<input id="userSwitcher_dimAvatarImages" type="checkbox" />
<span>Dim Avatar Images</span>
</label>
<div class="flex-container flexFlowColumn">
<label for="userSwitcher_displayMode">Display Mode</label>
<select id="userSwitcher_displayMode" class="text_pole">
<option value="avatars">Avatars</option>
<option value="list">List</option>
</select>
</div>
</div>
</div>
</div>