From 71e49a8756e366071b245b6b45aa87cb86537187 Mon Sep 17 00:00:00 2001 From: sameerasw Date: Tue, 6 May 2025 18:59:05 +0530 Subject: Version up and new glow for what's new button --- manifest.json | 2 +- popup/popup.css | 21 ++++++++++++++++++++- 2 files changed, 21 insertions(+), 2 deletions(-) diff --git a/manifest.json b/manifest.json index 320eb23..4256a56 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 2, "name": "Zen Internet", - "version": "2.0.0", + "version": "2.1.0", "description": "Make the internet feel native and elegant. Zen Internet is a browser extension that enhances your browsing experience by providing a clean and minimalistic interface with transparency and a focus on content. Customize the features in the addon popup.", "browser_specific_settings": { "gecko": { diff --git a/popup/popup.css b/popup/popup.css index bb47dba..78d9434 100644 --- a/popup/popup.css +++ b/popup/popup.css @@ -158,6 +158,25 @@ body { transform: scale(1.1); } +/* Add glow pulse animation for the What's New button emoji */ +@keyframes glowPulse { + 0% { + text-shadow: 0 0 0 rgba(255, 255, 255, 0); + } + 50% { + text-shadow: 0 0 8px rgba(255, 255, 255, 0.8), + 0 0 12px rgba(249, 135, 100, 0.6); + } + 100% { + text-shadow: 0 0 0 rgba(255, 255, 255, 0); + } +} + +/* Apply the animation to the What's New button */ +.whats-new-button { + animation: glowPulse 2s ease-in-out infinite; +} + .whats-new-button::after { content: "What's New"; position: absolute; @@ -193,7 +212,7 @@ body { display: flex; align-items: center; gap: 12px; - margin-bottom: 8px; + margin-bottom: 2px; } /* Current site toggle styling */ -- cgit v1.2.3