mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-06-05 21:59:27 +02:00
Style a system message. Fix up spacing in bias
This commit is contained in:
@@ -758,10 +758,14 @@
|
||||
let curMatch;
|
||||
|
||||
while( curMatch = rxp.exec(message) ) {
|
||||
found.push(curMatch[1]);
|
||||
found.push(curMatch[1].trim());
|
||||
}
|
||||
|
||||
return found.join(' ');
|
||||
if (!found.length) {
|
||||
return '';
|
||||
}
|
||||
|
||||
return ` ${found.join(' ')} `;
|
||||
}
|
||||
|
||||
$( "#send_but" ).click(function() {
|
||||
|
@@ -48,6 +48,12 @@ body {
|
||||
font-weight: bold;
|
||||
color: rgb(229, 224, 216);
|
||||
}
|
||||
.mes_text li tt {
|
||||
min-width: 80px;
|
||||
display: inline-block;
|
||||
color: grey !important;
|
||||
text-align: right;
|
||||
}
|
||||
.mes_bias {
|
||||
display: block;
|
||||
font-size: 0.9rem;
|
||||
|
Reference in New Issue
Block a user