mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2024-12-14 10:24:47 +01:00
0033090a93
* Initial idle stuff * Much closer, can now quietly send as user to get a char response. * Tweaks * Better, reset the count of getting a message back, don't send while prompt is waiting. * Allow selecting who is being prompted * Comments and cleaup * Remove char name for the moment (needs something here probably) * Add random time period and "Always add character's name to prompt" respect * Tooltips * Load/unload listeners * Reduce log spam * Add inline prompt inclusion * Add full loud prompting * Comments * Fix instruct newline (I think) * Don't reset count on continue * add quietToLoud for script.js * add quietToLoud for slashcommands.js * Keep instruct directives * Removed some logging, don't do the Novel formatting if Q2L * Logspam begone. * Removed a bit more logging * Add alignment style * Reformat files. Add comments * Reorder extensions * Fix repeat logic to prompt once then only repeat the number specified * Make repeat count more clear --------- Co-authored-by: RossAscends <124905043+RossAscends@users.noreply.github.com> Co-authored-by: Cohee <18619528+Cohee1207@users.noreply.github.com>
91 lines
1.4 KiB
CSS
91 lines
1.4 KiB
CSS
#tts_media_control {
|
|
/* order: 100; */
|
|
/* width: 40px;
|
|
height: 40px;
|
|
margin: 0;
|
|
padding: 1px; */
|
|
outline: none;
|
|
border: none;
|
|
cursor: pointer;
|
|
/* transition: 0.3s;
|
|
opacity: 0.7; */
|
|
display: flex;
|
|
align-items: center;
|
|
/* justify-content: center; */
|
|
|
|
}
|
|
|
|
#ttsExtensionMenuItem {
|
|
transition: 0.3s;
|
|
opacity: 0.7;
|
|
}
|
|
|
|
#ttsExtensionMenuItem:hover {
|
|
opacity: 1;
|
|
filter: brightness(1.2);
|
|
}
|
|
|
|
#tts_media_control:hover {
|
|
opacity: 1;
|
|
filter: brightness(1.2);
|
|
}
|
|
|
|
.voice_preview {
|
|
margin: 0.25rem 0.5rem;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.voice_preview .voice_name {
|
|
text-align: left;
|
|
flex: 1;
|
|
}
|
|
|
|
.voice_preview .voice_lang {
|
|
width: 4rem;
|
|
text-align: left;
|
|
}
|
|
|
|
.voice_preview .fa-play {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.tts-button {
|
|
margin: 0;
|
|
outline: none;
|
|
border: none;
|
|
cursor: pointer;
|
|
transition: 0.3s;
|
|
opacity: 0.7;
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
.tts-button:hover {
|
|
opacity: 1;
|
|
}
|
|
|
|
.tts_block {
|
|
display: flex;
|
|
align-items: baseline;
|
|
column-gap: 5px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.tts_custom_voices {
|
|
display: flex;
|
|
align-items: baseline;
|
|
gap: 5px;
|
|
}
|
|
|
|
.novel_tts_hints {
|
|
font-size: calc(0.9 * var(--mainFontSize));
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 5px;
|
|
margin-bottom: 5px;
|
|
}
|