fix(FN-916): fix invisible edit icons in Git Manager Remotes panel

- Fix edit icon color in GitManagerModal Remotes section to use visible contrast color
- Add CSS rule for .git-manager-edit-btn to ensure icon visibility
- Changes affect GitManagerModal.tsx and styles.css
This commit is contained in:
gsxdsm
2026-04-04 20:17:03 -07:00
parent 70f43dcd14
commit 2a36b5b47a
2 changed files with 5 additions and 2 deletions

View File

@@ -1955,7 +1955,7 @@ function RemotesPanel({
disabled={remoteActionLoading !== null}
title="Rename remote"
>
<GitBranchIcon size={12} />
<GitBranchIcon size={12} color="var(--text-muted)" />
</button>
</div>
)}
@@ -2009,7 +2009,7 @@ function RemotesPanel({
disabled={remoteActionLoading !== null}
title="Edit URL"
>
<FileEdit size={12} />
<FileEdit size={12} color="var(--text-muted)" />
</button>
</div>
)}

View File

@@ -328,6 +328,9 @@ body {
color var(--transition-fast),
background var(--transition-fast);
}
.btn-icon svg {
stroke: currentColor;
}
.btn-icon:hover {
color: var(--text);
background: var(--border);