Update Signature, Css fix (#248)

* Update Signature

* update Plugin Stats cards
This commit is contained in:
Indiana Jone (Indi) 2025-04-29 16:56:43 -04:00 committed by GitHub
parent 493afb254c
commit d1f9476faa
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 29 additions and 3 deletions

View file

@ -255,3 +255,21 @@
background-color: var(--status-danger-background) !important;
color: var(--status-danger-text) !important;
}
.visual-refresh .vc-plugins-info-card {
background-color: var(--card-primary-bg) !important;
border: 1px solid var(--border-subtle) !important;
&:hover {
background-color: var(--card-primary-bg) !important;
}
}
.visual-refresh .vc-plugin-stats {
background-color: var(--card-primary-bg) !important;
border: 1px solid var(--border-subtle) !important;
&:hover {
background-color: var(--card-primary-bg) !important;
}
}

View file

@ -22,6 +22,14 @@ const settings = definePluginSettings(
description: "The signature that will be added to the end of your messages",
default: "a chronic discord user"
},
textHeader: {
description: "What header to preface text with",
type: OptionType.SELECT,
options: [
{ label: ">", value: ">", default: true },
{ label: "-#", value: "-#" }
]
},
showIcon: {
type: OptionType.BOOLEAN,
default: true,
@ -141,7 +149,7 @@ export default definePlugin({
// text processing injection processor
function textProcessing(input: string) {
return `${input}\n> ${settings.store.name}`;
return `${input}\n${settings.store.textHeader} ${settings.store.name}`;
}