feat(FN-3746): document plugin API coverage and add focus-visible states

Completes Step 6 of FN-3746 by adding `focus-visible` states to ProjectCard and ProjectOverview CSS components, and documenting the Even Realities plugin API coverage in the project docs.

Fusion-Task-Id: FN-3746
This commit is contained in:
Fusion
2026-05-08 21:06:44 -07:00
committed by gsxdsm
parent 72f8c48de9
commit 551bcdc53d
4 changed files with 54 additions and 2 deletions

View File

@@ -25,6 +25,12 @@
transform: translateY(0);
}
.project-card:focus-visible {
outline: none;
border-color: var(--todo);
box-shadow: var(--focus-ring-strong);
}
.project-card-loading {
opacity: 0.7;
pointer-events: none;
@@ -179,6 +185,12 @@
color: var(--text);
}
.project-card-action:focus-visible {
outline: none;
border-color: var(--todo);
box-shadow: var(--focus-ring-strong);
}
.project-card-action:disabled {
opacity: 0.5;
cursor: not-allowed;