updater fix

This commit is contained in:
Zan
2026-01-12 20:34:48 +01:00
parent f35d29f56c
commit 1f34cacf25
3 changed files with 0 additions and 29 deletions

View File

@@ -593,29 +593,6 @@ h2 {
margin: 0;
}
.modal-close {
display: flex;
align-items: center;
justify-content: center;
width: 32px;
height: 32px;
border: none;
border-radius: 8px;
background: var(--button-secondaryFill);
color: var(--text-secondary);
cursor: pointer;
transition: all 0.2s ease;
}
.modal-close:hover {
background: var(--accent-15);
color: var(--accent-accent);
}
.modal-close .material-icons-round {
font-size: 20px;
}
.modal-body {
padding: 16px;
}

View File

@@ -192,9 +192,6 @@
<div class="modal-content update-modal">
<div class="modal-header">
<h3 data-i18n="settings.update.title">Új verzió érhető el!</h3>
<button class="modal-close" id="closeUpdateModal">
<span class="material-icons-round">close</span>
</button>
</div>
<div class="modal-body">
<div class="update-version-info">
@@ -218,7 +215,6 @@
<div class="modal-footer">
<button class="btn-secondary" id="dismissUpdate" data-i18n="settings.update.dismiss">Bezárás</button>
<a class="btn-primary update-button" id="updateButton" href="#" target="_blank">
<span class="material-icons-round">download</span>
<span data-i18n="settings.update.download">Letöltés</span>
</a>
</div>

View File

@@ -1159,8 +1159,6 @@ function showUpdateModal(currentVersion, latestVersion, releaseData) {
updateButton.href = releaseData.html_url;
modal.classList.add('active');
document.getElementById('closeUpdateModal').addEventListener('click', closeUpdateModal);
document.getElementById('dismissUpdate').addEventListener('click', closeUpdateModal);
}