diff --git a/module.json b/module.json index c170234..69c4843 100644 --- a/module.json +++ b/module.json @@ -2,7 +2,7 @@ "id": "fvtt-session-tracker", "title": "Session Tracker", "description": "A lightweight session tracker for Foundry VTT V13.", - "version": "1.0.0", + "version": "1.0.1", "authors": [ { "name": "CPTN Cosmo", @@ -23,6 +23,6 @@ ], "url": "https://github.com/cptn-cosmo/fvtt-session-tracker", "manifest": "https://github.com/cptn-cosmo/fvtt-session-tracker/releases/latest/download/module.json", - "download": "https://github.com/cptn-cosmo/fvtt-session-tracker/releases/download/1.0.0/fvtt-session-tracker.zip", + "download": "https://github.com/cptn-cosmo/fvtt-session-tracker/releases/download/1.0.1/fvtt-session-tracker.zip", "license": "MIT" } \ No newline at end of file diff --git a/styles/session-tracker.css b/styles/session-tracker.css index 4f7ace1..1703322 100644 --- a/styles/session-tracker.css +++ b/styles/session-tracker.css @@ -10,40 +10,54 @@ } .session-tracker-content { - background: rgba(0, 0, 0, 0.45); - backdrop-filter: blur(12px); - -webkit-backdrop-filter: blur(12px); - border: 1px solid rgba(255, 255, 255, 0.15); + background: rgba(0, 0, 0, 0); + backdrop-filter: blur(0px); + -webkit-backdrop-filter: blur(0px); + border: 1px solid rgba(255, 255, 255, 0); border-radius: 12px; padding: 10px 16px; display: flex; flex-direction: column; align-items: center; - box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37); - transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.3s ease; + box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0); + transition: all 0.3s ease; transform: scale(var(--scale, 1)); transform-origin: center center; } .session-tracker-content:hover { - box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5); - background: rgba(0, 0, 0, 0.55); + background: rgba(0, 0, 0, 0.45); + backdrop-filter: blur(12px); + -webkit-backdrop-filter: blur(12px); + border: 1px solid rgba(255, 255, 255, 0.15); + box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37); } .session-label { text-transform: uppercase; font-size: 10px; letter-spacing: 2px; - color: rgba(255, 255, 255, 0.6); + color: rgba(255, 255, 255, 0.3); font-weight: 700; + transition: color 0.3s ease; +} + +.session-tracker-content:hover .session-label { + color: rgba(255, 255, 255, 0.6); } .session-number { font-size: 32px; font-weight: 700; + color: rgba(255, 255, 255, 0.7); + text-shadow: 0 0 10px rgba(0, 0, 0, 0.2); + margin-top: -4px; + transition: all 0.3s ease; +} + +.session-tracker-content:hover .session-number { color: #fff; text-shadow: 0 0 10px rgba(255, 255, 255, 0.3); - margin-top: -4px; } .session-controls {