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>
53 lines
819 B
CSS
53 lines
819 B
CSS
#objective-counter {
|
|
font-weight: 600;
|
|
color: orange;
|
|
}
|
|
|
|
.objective_block {
|
|
display: flex;
|
|
align-items: center;
|
|
column-gap: 5px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.objective_prompt_block {
|
|
display: flex;
|
|
align-items: baseline;
|
|
column-gap: 5px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.objective_block_control {
|
|
align-items: baseline;
|
|
}
|
|
|
|
.objective_block_control small,
|
|
.objective_block_control label {
|
|
width: max-content;
|
|
}
|
|
|
|
.objective-task-button {
|
|
margin: 0;
|
|
outline: none;
|
|
border: none;
|
|
cursor: pointer;
|
|
transition: 0.3s;
|
|
opacity: 0.7;
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
.objective-task-button:hover {
|
|
opacity: 1;
|
|
}
|
|
|
|
[id^=objective-task-delete-] {
|
|
color: #da3f3f;
|
|
}
|
|
|
|
#objective-tasks span {
|
|
margin: unset;
|
|
margin-bottom: 5px !important;
|
|
}
|