From 6fbba3939fb340220a84afa49e94b0d3de5a7f94 Mon Sep 17 00:00:00 2001 From: Jared Vititoe Date: Thu, 19 Mar 2026 11:04:03 -0400 Subject: [PATCH] Remove page-blinking CSS animations and old deploy script - Remove .ascii-frame-outer:hover flicker animation (caused article to shake/blink every time cursor entered the ticket container) - Remove body flicker animation (caused full page blink every 30s) - Remove deploy.sh (deployment now handled by Gitea CI/CD) Co-Authored-By: Claude Sonnet 4.6 --- assets/css/dashboard.css | 8 -------- deploy.sh | 19 ------------------- 2 files changed, 27 deletions(-) delete mode 100755 deploy.sh diff --git a/assets/css/dashboard.css b/assets/css/dashboard.css index 117e549..7d490c6 100644 --- a/assets/css/dashboard.css +++ b/assets/css/dashboard.css @@ -148,14 +148,6 @@ body::before { 100% { transform: translate(0); } } -.ascii-frame-outer:hover { - animation: flicker 0.15s ease-in-out 1; -} - -/* Random screen glitch every 30 seconds */ -body { - animation: flicker 0.2s ease-in-out 30s infinite; -} /* Subtle data stream effect in corner */ body::after { diff --git a/deploy.sh b/deploy.sh deleted file mode 100755 index f3a9a71..0000000 --- a/deploy.sh +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/bash -set -e - -echo "Deploying tinker_tickets to web server..." - -# Deploy web_template (shared UI framework) into the app directory so nginx serves it -echo "Syncing web_template to web server..." -rsync -avz --delete --exclude='.git' --exclude='node' --exclude='php' --exclude='python' --exclude='README.md' --exclude='Claude.md' /root/code/web_template/ root@10.10.10.45:/var/www/html/tinkertickets/web_template/ - -# Deploy to web server -echo "Syncing to web server (10.10.10.45)..." -rsync -avz --delete --exclude='.git' --exclude='deploy.sh' --exclude='.env' --exclude='web_template' ./ root@10.10.10.45:/var/www/html/tinkertickets/ - -# Set proper permissions on the web server -echo "Setting proper file permissions..." -ssh root@10.10.10.45 "chown -R www-data:www-data /var/www/html/tinkertickets && find /var/www/html/tinkertickets -type f -exec chmod 644 {} \; && find /var/www/html/tinkertickets -type d -exec chmod 755 {} \;" - -echo "Deployment to web server complete!" -echo "Don't forget to commit and push your changes via VS Code when ready." \ No newline at end of file