SHC: Small improvements (#907)

This commit is contained in:
Nuckyz 2023-04-15 00:40:42 -03:00 committed by GitHub
parent 336c7bdd5e
commit 1f7ec93a24
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 3 deletions

View File

@ -309,6 +309,11 @@ export default definePlugin({
match: /"more-options-popout"\)\);if\((?<=function \i\((\i)\).+?)/,
replace: (m, props) => `${m}!${props}.inCall&&$self.isHiddenChannel(${props}.channel,true)){}else if(`
},
{
// Remove invite users button for the HiddenChannelLockScreen
match: /"popup".{0,100}?if\((?<=(\i)\.channel.+?)/,
replace: (m, props) => `${m}(${props}.inCall||!$self.isHiddenChannel(${props}.channel,true))&&`
},
{
// Render our HiddenChannelLockScreen component instead of the main voice channel component
match: /this\.renderVoiceChannelEffects.+?children:(?<=renderContent=function.+?)/,
@ -326,8 +331,8 @@ export default definePlugin({
},
{
// Disable bad CSS class which mess up hidden voice channels styling
match: /callContainer,(?<=(\i)=\i\.channel.+?\(\)\.callContainer,)/,
replace: (m, channel) => `${m}$self.isHiddenChannel(${channel},true)?"":`
match: /callContainer,(?<=\(\)\.callContainer,)/,
replace: '$&!this.props.inCall&&$self.isHiddenChannel(this.props.channel,true)?"":'
}
]
},

View File

@ -85,7 +85,7 @@
.shc-lock-screen-default-emoji-container > [class^="emojiContainer"] {
background: var(--bg-overlay-3, var(--background-secondary));
border-radius: 8px;
padding: 3px 4px;
padding: 5px 6px;
margin-left: 5px;
}