add battle pass claim all button and menu timer
Build and Release / build-and-release (push) Failing after 4m1s

This commit is contained in:
2026-04-04 08:47:55 -07:00
parent 021acf67a0
commit 0e75affe0d
4 changed files with 121 additions and 2 deletions
+6 -1
View File
@@ -679,5 +679,10 @@ export const HP_COUNTER_CSS = `
}
`;
// ── Battle Pass Claim All CSS ──
export const BP_CLAIM_ALL_CSS = `
#claimAllBtn.disabled { opacity: 0.4; pointer-events: none; }
`;
/** Pre-concatenated CSS for single-call injection (excludes HIDE_ADS_CSS which is separate) */
export const ALL_CLIENT_CSS = `${CLIENT_SETTINGS_CSS}\n${MATCHMAKER_SETTINGS_CSS}\n${TRANSLATOR_CSS}\n${ALT_MANAGER_CSS}\n${HP_COUNTER_CSS}`;
export const ALL_CLIENT_CSS = `${CLIENT_SETTINGS_CSS}\n${MATCHMAKER_SETTINGS_CSS}\n${TRANSLATOR_CSS}\n${ALT_MANAGER_CSS}\n${HP_COUNTER_CSS}\n${BP_CLAIM_ALL_CSS}`;
+2
View File
@@ -77,6 +77,7 @@ export interface AppConfig {
deathscreenAnimation: boolean;
hideMenuPopups: boolean;
cleanerMenu: boolean;
menuTimer: boolean;
doublePing: boolean;
cssTheme: string;
loadingTheme: string;
@@ -186,6 +187,7 @@ export const config = new Store<AppConfig>({
deathscreenAnimation: true,
hideMenuPopups: false,
cleanerMenu: false,
menuTimer: true,
doublePing: true,
cssTheme: 'disabled',
loadingTheme: 'disabled',