mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-06-05 21:59:27 +02:00
Add stopgaps to fill the second row
This commit is contained in:
@ -143,6 +143,11 @@ export class AutoCompleteOption {
|
|||||||
}
|
}
|
||||||
li.append(specs);
|
li.append(specs);
|
||||||
}
|
}
|
||||||
|
const stopgap = document.createElement('span'); {
|
||||||
|
stopgap.classList.add('stopgap');
|
||||||
|
stopgap.textContent = '';
|
||||||
|
li.append(stopgap);
|
||||||
|
}
|
||||||
const help = document.createElement('span'); {
|
const help = document.createElement('span'); {
|
||||||
help.classList.add('help');
|
help.classList.add('help');
|
||||||
const content = document.createElement('span'); {
|
const content = document.createElement('span'); {
|
||||||
|
@ -175,6 +175,11 @@ export class SlashCommand {
|
|||||||
}
|
}
|
||||||
li.append(specs);
|
li.append(specs);
|
||||||
}
|
}
|
||||||
|
const stopgap = document.createElement('span'); {
|
||||||
|
stopgap.classList.add('stopgap');
|
||||||
|
stopgap.textContent = '';
|
||||||
|
li.append(stopgap);
|
||||||
|
}
|
||||||
const help = document.createElement('span'); {
|
const help = document.createElement('span'); {
|
||||||
help.classList.add('help');
|
help.classList.add('help');
|
||||||
const content = document.createElement('span'); {
|
const content = document.createElement('span'); {
|
||||||
|
@ -1723,6 +1723,10 @@ body[data-stscript-style] .hljs.language-stscript {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
>.stopgap {
|
||||||
|
opacity: 0.75;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user