This commit is contained in:
Mirco Wittrien 2021-06-15 21:01:37 +02:00
parent a506381eab
commit b08d4975d9
4 changed files with 25 additions and 0 deletions

View File

@ -1319,6 +1319,7 @@
"UserProfileInfoSection": {"props": ["userInfoSection", "connectedAccounts"]}, "UserProfileInfoSection": {"props": ["userInfoSection", "connectedAccounts"]},
"UserProfileList": {"props": ["listAvatar", "listRow"]}, "UserProfileList": {"props": ["listAvatar", "listRow"]},
"UserSettingsAppearancePreview": {"props": ["preview", "firstMessage"]}, "UserSettingsAppearancePreview": {"props": ["preview", "firstMessage"]},
"UserSettingsSocialLinks": {"props": ["socialLinks", "link"]},
"UserSummaryItem": {"props": ["avatarContainerMasked", "container"]}, "UserSummaryItem": {"props": ["avatarContainerMasked", "container"]},
"Video": {"props": ["video", "fullScreen"]}, "Video": {"props": ["video", "fullScreen"]},
"VoiceChannel": {"props": ["avatarSpeaking", "voiceUser"]}, "VoiceChannel": {"props": ["avatarSpeaking", "voiceUser"]},
@ -3064,6 +3065,8 @@
"usersettingsappearancepreview": ["UserSettingsAppearancePreview", "preview"], "usersettingsappearancepreview": ["UserSettingsAppearancePreview", "preview"],
"usersettingsappearancepreviewcompact": ["UserSettingsAppearancePreview", "compactPreview"], "usersettingsappearancepreviewcompact": ["UserSettingsAppearancePreview", "compactPreview"],
"usersettingsappearancepreviewfirst": ["UserSettingsAppearancePreview", "firstMessage"], "usersettingsappearancepreviewfirst": ["UserSettingsAppearancePreview", "firstMessage"],
"usersettingssociallink": ["UserSettingsSocialLinks", "link"],
"usersettingssociallinks": ["UserSettingsSocialLinks", "socialLinks"],
"usersummaryavatar": ["UserSummaryItem", "avatar"], "usersummaryavatar": ["UserSummaryItem", "avatar"],
"usersummaryavatarcontainer": ["UserSummaryItem", "avatarContainer"], "usersummaryavatarcontainer": ["UserSummaryItem", "avatarContainer"],
"usersummaryavatarcontainermasked": ["UserSummaryItem", "avatarContainerMasked"], "usersummaryavatarcontainermasked": ["UserSummaryItem", "avatarContainerMasked"],

View File

@ -1414,6 +1414,16 @@ img:not([src]), img[src=""], img[src="null"] {
} }
} }
[REPLACE_CLASS_usersettingssociallink][href*="/Lightcord/" i]::before {
content: "";
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: red;
}
.platform-win [REPLACE_CLASS_toasts] { .platform-win [REPLACE_CLASS_toasts] {
padding-top: 22px; padding-top: 22px;
} }

View File

@ -1,3 +1,5 @@
@import url(https://mwittrien.github.io/BetterDiscordAddons/Themes/_res/ThemeDevBadge.css);
:root { :root {
--settingsmodalbackground: transparent; --settingsmodalbackground: transparent;
--settingsmodalwidth: 960px; --settingsmodalwidth: 960px;

View File

@ -18,4 +18,14 @@
} }
.selected-aXhQR6 .dev-A7f2Rx.hasBadge-4rT8_u .badge-7R_W3s { .selected-aXhQR6 .dev-A7f2Rx.hasBadge-4rT8_u .badge-7R_W3s {
filter: brightness(80%) !important; filter: brightness(80%) !important;
}
.link-1IoFq-[href*="/Lightcord/" i]::before {
content: "";
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: red;
} }