stuff
This commit is contained in:
parent
195f3d8dfb
commit
013cd7fd51
|
@ -1430,7 +1430,8 @@
|
||||||
"Attachment": {"props": ["wrapper", "video", "metadataDownload"]},
|
"Attachment": {"props": ["wrapper", "video", "metadataDownload"]},
|
||||||
"AttachmentCover": {"props": ["cover", "icon", "iconWrapper"]},
|
"AttachmentCover": {"props": ["cover", "icon", "iconWrapper"]},
|
||||||
"AuditLog": {"props": ["auditLog", "divider"]},
|
"AuditLog": {"props": ["auditLog", "divider"]},
|
||||||
"AuthBox": {"props": ["authBox"]},
|
"AuthBox": {"props": ["authBox", "authBoxExpanded"]},
|
||||||
|
"AuthBoxBackground": {"props": ["splashBackground", "characterBackground"]},
|
||||||
"Autocomplete": {"props": ["autocomplete", "autocompleteRow"]},
|
"Autocomplete": {"props": ["autocomplete", "autocompleteRow"]},
|
||||||
"AutocompleteAliases": {"props": ["autocomplete", "stickerAutoComplete"]},
|
"AutocompleteAliases": {"props": ["autocomplete", "stickerAutoComplete"]},
|
||||||
"Avatar": {"props": ["avatar", "mask", "wrapper"]},
|
"Avatar": {"props": ["avatar", "mask", "wrapper"]},
|
||||||
|
@ -1937,6 +1938,8 @@
|
||||||
"auditlogtimestamp": ["AuditLog", "timestamp"],
|
"auditlogtimestamp": ["AuditLog", "timestamp"],
|
||||||
"auditloguserhook": ["AuditLog", "userHook"],
|
"auditloguserhook": ["AuditLog", "userHook"],
|
||||||
"authbox": ["AuthBox", "authBox"],
|
"authbox": ["AuthBox", "authBox"],
|
||||||
|
"authboxcharacterbackground": ["AuthBoxBackground", "characterBackground"],
|
||||||
|
"authboxsplashbackground": ["AuthBoxBackground", "splashBackground"],
|
||||||
"autocomplete": ["Autocomplete", "autocomplete"],
|
"autocomplete": ["Autocomplete", "autocomplete"],
|
||||||
"autocompletecontenttitle": ["Autocomplete", "contentTitle"],
|
"autocompletecontenttitle": ["Autocomplete", "contentTitle"],
|
||||||
"autocompletedescriptiondiscriminator": ["Autocomplete", "descriptionDiscriminator"],
|
"autocompletedescriptiondiscriminator": ["Autocomplete", "descriptionDiscriminator"],
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
* @name OldTitleBar
|
* @name OldTitleBar
|
||||||
* @author DevilBro
|
* @author DevilBro
|
||||||
* @authorId 278543574059057154
|
* @authorId 278543574059057154
|
||||||
* @version 1.7.8
|
* @version 1.7.9
|
||||||
* @description Allows you to switch to Discord's old Titlebar
|
* @description Allows you to switch to Discord's old Titlebar
|
||||||
* @invite Jx3TjNS
|
* @invite Jx3TjNS
|
||||||
* @donate https://www.paypal.me/MircoWittrien
|
* @donate https://www.paypal.me/MircoWittrien
|
||||||
|
@ -139,7 +139,8 @@ module.exports = (_ => {
|
||||||
|
|
||||||
this.css = `
|
this.css = `
|
||||||
${BDFDB.dotCNS._oldtitlebarenabled + BDFDB.dotCN.titlebar},
|
${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;
|
display: none !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -183,7 +184,8 @@ module.exports = (_ => {
|
||||||
-webkit-app-region: drag !important;
|
-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);
|
background: rgba(0, 0, 0, 0.3);
|
||||||
border-radius: 0 0 0 5px;
|
border-radius: 0 0 0 5px;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue