|
|
@@ -95,6 +95,7 @@ const selectTempEmailDomain = document.getElementById('select-temp-email-domain'
|
|
|
const inputTempEmailDomain = document.getElementById('input-temp-email-domain');
|
|
|
const btnTempEmailDomainMode = document.getElementById('btn-temp-email-domain-mode');
|
|
|
const hotmailSection = document.getElementById('hotmail-section');
|
|
|
+const hotmailSectionLabel = document.getElementById('hotmail-section-label');
|
|
|
const luckmailSection = document.getElementById('luckmail-section');
|
|
|
const icloudSection = document.getElementById('icloud-section');
|
|
|
const icloudSummary = document.getElementById('icloud-summary');
|
|
|
@@ -2368,6 +2369,24 @@ function updateMailProviderUI() {
|
|
|
if (hotmailSection) {
|
|
|
hotmailSection.style.display = useHotmail || useA4sky ? '' : 'none';
|
|
|
}
|
|
|
+ if (hotmailSectionLabel) {
|
|
|
+ hotmailSectionLabel.textContent = useA4sky ? 'A4Sky IMAP 助手' : 'Hotmail 账号池';
|
|
|
+ }
|
|
|
+ if (btnHotmailUsageGuide) {
|
|
|
+ btnHotmailUsageGuide.style.display = useHotmail ? '' : 'none';
|
|
|
+ }
|
|
|
+ if (btnClearUsedHotmailAccounts) {
|
|
|
+ btnClearUsedHotmailAccounts.style.display = useHotmail ? '' : 'none';
|
|
|
+ }
|
|
|
+ if (btnDeleteAllHotmailAccounts) {
|
|
|
+ btnDeleteAllHotmailAccounts.style.display = useHotmail ? '' : 'none';
|
|
|
+ }
|
|
|
+ if (btnToggleHotmailList) {
|
|
|
+ btnToggleHotmailList.style.display = useHotmail ? '' : 'none';
|
|
|
+ }
|
|
|
+ if (hotmailListShell) {
|
|
|
+ hotmailListShell.style.display = useHotmail ? '' : 'none';
|
|
|
+ }
|
|
|
if (luckmailSection) {
|
|
|
luckmailSection.style.display = useLuckmail ? '' : 'none';
|
|
|
}
|