diff --git a/assets/app.js b/assets/app.js index 566236b..a213214 100644 --- a/assets/app.js +++ b/assets/app.js @@ -146,10 +146,10 @@ if (animationsEnabled === null) animationsEnabled = true; function applyTheme() { if (isDarkMode) { document.body.classList.add('dark-mode'); - document.getElementById('themeBtn').innerHTML = '🌙'; + document.getElementById('themeBtn').innerHTML = ''; } else { document.body.classList.remove('dark-mode'); - document.getElementById('themeBtn').innerHTML = '☀️'; + document.getElementById('themeBtn').innerHTML = ''; } handleAmbientDrift(); updateMotionBtn(); @@ -168,7 +168,7 @@ applyTheme(); function updateMotionBtn() { if (!motionBtn) return; - motionBtn.innerHTML = animationsEnabled ? '✨' : '🚫'; + motionBtn.innerHTML = animationsEnabled ? '' : ''; motionBtn.title = animationsEnabled ? 'Toggle Animations' : 'Animations disabled'; } @@ -621,7 +621,7 @@ function render() { const isLocked = part.locked ? 'is-locked' : ''; const isFinished = part.finished ? 'is-finished' : ''; const isMinimized = part.minimized ? 'is-minimized' : ''; - const lockIcon = part.locked ? '🔒' : '🔓'; + const lockIcon = part.locked ? '' : ''; const lockBtnClass = part.locked ? 'btn-lock locked-active' : 'btn-lock'; const controlsDimmed = (part.locked || part.finished) ? 'dimmed' : ''; const hideControls = (part.finished || part.minimized) ? 'hidden-controls' : ''; @@ -637,18 +637,18 @@ function render() { const partCardFullClass = `${isLocked} ${isFinished} ${isMinimized} ${finishPulseClass}`; const lockDisabled = part.locked ? 'disabled' : ''; const actionsHtml = part.minimized - ? `
` + ? `` : `