diff --git a/index.html b/index.html index e2b013a..714794a 100644 --- a/index.html +++ b/index.html @@ -191,7 +191,17 @@ 1px 1px 2px rgba(0,0,0,0.25), 0px 1px 1px color-mix(in srgb, currentColor 40%, black); } - + /* Füge das in deine CSS ein */ + .paw-queued { + opacity: 0.65; + filter: drop-shadow(0 2px 2px rgba(0,0,0,0.10)); + transition: transform 0.18s cubic-bezier(0.4,0.2,0.6,1); + pointer-events: none; + } + li:hover .paw-queued { + opacity: 0.88; + filter: drop-shadow(0 3px 4px rgba(0,0,0,0.17)); + }
diff --git a/renderer.js b/renderer.js index b956287..4040464 100644 --- a/renderer.js +++ b/renderer.js @@ -472,10 +472,11 @@ async function startLiveCountdown(folderObj, msLeft) { if (!commits || !commits.length) { return; } - + const isQueued = folderObj.llmCandidates && folderObj.llmCandidates.includes(c.hash); + const pawRotate = (Math.random() * 25 - 10).toFixed(1); // -10° bis +15° contentList.innerHTML = commits.map(c => `
`
+ : ''
+ }