Pārlūkot izejas kodu

use plain cursor instead of not-allowed on disabled jump buttons

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Brandon Wong 1 mēnesi atpakaļ
vecāks
revīzija
cf7254a650

+ 10 - 0
2026-07-11-claude-floating-playlist-scroll-buttons.md

@@ -28,3 +28,13 @@ Verification was done by scripting a headless Chromium (Playwright) against the
 - Confirmed via the `verify-csp` skill that no CSP violations were introduced (only a pre-existing commented-out line matched the violation pattern).
 - Scripted Playwright/Chromium runs against the live popup with mocked `browser.*` APIs, covering: up/down disabled state at top and bottom, clicking through all playlist boundaries, confirming the last playlist's video action buttons fully clear the fixed buttons once scrolled to the max, and single-playlist / short-list / zero-playlist edge cases (both buttons stay disabled).
 - Visual screenshots confirmed the floating buttons render correctly in the lower-right corner and grey out as expected.
+
+## Follow-up: cursor style on disabled buttons
+
+### User request (verbatim)
+
+> I like it, but in the "disabled" case, remove the "not allowed" mouse cursor. just leave it as a plain, no-action cursor pointer.
+
+### What was done
+
+Changed `.jump-btn:disabled` in `popup/popup.css` from `cursor: not-allowed` to `cursor: default`, so hovering a greyed-out button shows the plain arrow cursor instead of the circle-slash "not allowed" icon.

+ 1 - 1
popup/popup.css

@@ -268,7 +268,7 @@ button:hover {
 .jump-btn:disabled {
   background-color: #ccc;
   color: #888;
-  cursor: not-allowed;
+  cursor: default;
   box-shadow: none;
 }