Skip to content

Commit c110c5c

Browse files
ithiria894claude
andcommitted
fix: scope badge tooltip no longer hidden behind next item row (v0.13.13)
Item rows have position:relative which creates stacking contexts. Added z-index:10 on .item:hover so the hovered item's tooltip renders above sibling items. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 92881ff commit c110c5c

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mcpware/claude-code-organizer",
3-
"version": "0.13.12",
3+
"version": "0.13.13",
44
"description": "Organize all your Claude Code memories, skills, MCP servers, commands, agents, rules, and hooks — see what loads globally vs per-project, then move items between scopes",
55
"type": "module",
66
"files": [

src/ui/style.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -525,7 +525,7 @@ body {
525525
.item:hover .drag-handle { opacity: 1; }
526526
.item.locked .drag-handle { display: none; }
527527

528-
.item:hover { border-color: var(--border); box-shadow: 0 2px 6px oklch(0.20 0.01 70 / 0.08); }
528+
.item:hover { border-color: var(--border); box-shadow: 0 2px 6px oklch(0.20 0.01 70 / 0.08); z-index: 10; }
529529
.item.selected { background: oklch(0.97 0.015 160); border-color: oklch(0.90 0.03 160); }
530530
.item.locked { opacity: 0.45; cursor: default; }
531531
.item.sortable-ghost { opacity: 0.25; border: 1px dashed var(--accent); background: var(--accent-light); }

0 commit comments

Comments
 (0)