SillyTavern/public/scripts/extensions/regex/scriptTemplate.html

21 lines
1004 B
HTML
Raw Normal View History

2023-07-20 19:32:15 +02:00
<div class="regex-script-label flex-container flexnowrap">
<span class="drag-handle menu-handle">&#9776;</span>
<div class="regex_script_name flexGrow overflow-hidden"></div>
<div class="flex-container flexnowrap">
2023-11-05 22:40:43 +01:00
<label class="checkbox flex-container" for="regex_disable">
<input type="checkbox" name="regex_disable" class="disable_regex" />
<span class="regex-toggle-on fa-solid fa-toggle-on" title="Disable script"></span>
<span class="regex-toggle-off fa-solid fa-toggle-off" title="Enable script"></span>
</label>
2024-02-10 20:57:22 +01:00
<div class="edit_existing_regex menu_button" title="Edit script">
2023-07-20 19:32:15 +02:00
<i class="fa-solid fa-pencil"></i>
</div>
2024-02-10 20:57:22 +01:00
<div class="export_regex menu_button" title="Export script">
<i class="fa-solid fa-file-export"></i>
</div>
<div class="delete_regex menu_button" title="Delete script">
2023-07-20 19:32:15 +02:00
<i class="fa-solid fa-trash"></i>
</div>
</div>
</div>