feat(FN-4013): align file mention spinner styles with component ownership

Refactored file mention popup styles by removing duplicate spinner rules from `AgentMentionPopup.css` and consolidating them into `FileMentionPopup.css`, restoring proper component-level CSS ownership per the project's co-located stylesheet convention.

Fusion-Task-Id: FN-4013
This commit is contained in:
Fusion
2026-05-11 16:09:58 -07:00
committed by gsxdsm
parent 1c69a0bfa2
commit 6e9a787b10
2 changed files with 4 additions and 14 deletions

View File

@@ -97,16 +97,6 @@
background: var(--color-success);
}
.file-mention-popup-loading .spinner {
display: inline-block;
width: 16px;
height: 16px;
border: 2px solid var(--border);
border-top-color: var(--text-muted);
border-radius: 50%;
animation: spin 0.8s linear infinite;
}
@keyframes spin {
to {
transform: rotate(360deg);

View File

@@ -90,12 +90,12 @@
.file-mention-popup-loading .spinner {
display: inline-block;
width: 16px;
height: 16px;
border: 2px solid var(--border);
width: var(--space-lg);
height: var(--space-lg);
border: calc(var(--space-xs) / 2) solid var(--border);
border-top-color: var(--text-muted);
border-radius: 50%;
animation: spin 0.8s linear infinite;
animation: spin var(--transition-slow) linear infinite;
}
@keyframes spin {