This commit is contained in:
Mirco Wittrien 2023-10-29 22:10:35 +01:00
parent 195f3d8dfb
commit 013cd7fd51
2 changed files with 9 additions and 4 deletions

View File

@ -1430,7 +1430,8 @@
"Attachment": {"props": ["wrapper", "video", "metadataDownload"]},
"AttachmentCover": {"props": ["cover", "icon", "iconWrapper"]},
"AuditLog": {"props": ["auditLog", "divider"]},
"AuthBox": {"props": ["authBox"]},
"AuthBox": {"props": ["authBox", "authBoxExpanded"]},
"AuthBoxBackground": {"props": ["splashBackground", "characterBackground"]},
"Autocomplete": {"props": ["autocomplete", "autocompleteRow"]},
"AutocompleteAliases": {"props": ["autocomplete", "stickerAutoComplete"]},
"Avatar": {"props": ["avatar", "mask", "wrapper"]},
@ -1937,6 +1938,8 @@
"auditlogtimestamp": ["AuditLog", "timestamp"],
"auditloguserhook": ["AuditLog", "userHook"],
"authbox": ["AuthBox", "authBox"],
"authboxcharacterbackground": ["AuthBoxBackground", "characterBackground"],
"authboxsplashbackground": ["AuthBoxBackground", "splashBackground"],
"autocomplete": ["Autocomplete", "autocomplete"],
"autocompletecontenttitle": ["Autocomplete", "contentTitle"],
"autocompletedescriptiondiscriminator": ["Autocomplete", "descriptionDiscriminator"],

View File

@ -2,7 +2,7 @@
* @name OldTitleBar
* @author DevilBro
* @authorId 278543574059057154
* @version 1.7.8
* @version 1.7.9
* @description Allows you to switch to Discord's old Titlebar
* @invite Jx3TjNS
* @donate https://www.paypal.me/MircoWittrien
@ -139,7 +139,8 @@ module.exports = (_ => {
this.css = `
${BDFDB.dotCNS._oldtitlebarenabled + BDFDB.dotCN.titlebar},
${BDFDB.dotCNS._oldtitlebarenabled + BDFDB.dotCN.splashbackground}:before {
${BDFDB.dotCNS._oldtitlebarenabled + BDFDB.dotCN.authboxcharacterbackground}:before,
${BDFDB.dotCNS._oldtitlebarenabled + BDFDB.dotCN.authboxsplashbackground}:before {
display: none !important;
}
@ -183,7 +184,8 @@ module.exports = (_ => {
-webkit-app-region: drag !important;
}
${BDFDB.dotCNS._oldtitlebarenabled + BDFDB.dotCNS.splashbackground + BDFDB.dotCN._oldtitlebarsettingstoolbar} {
${BDFDB.dotCNS._oldtitlebarenabled + BDFDB.dotCNS.authboxcharacterbackground + BDFDB.dotCN._oldtitlebarsettingstoolbar},
${BDFDB.dotCNS._oldtitlebarenabled + BDFDB.dotCNS.authboxsplashbackground + BDFDB.dotCN._oldtitlebarsettingstoolbar} {
background: rgba(0, 0, 0, 0.3);
border-radius: 0 0 0 5px;
}