fix(FN-2509): polish plugin and pi extension UX

- Apply shared button utility classes across PluginManager action controls for consistent dashboard styling
- Move PluginManager mobile responsive overrides into PluginManager.css and update code background fallback to token-based color-mix
- Improve PiExtensionsManager remove controls with touch-target sizing, hover feedback, and descriptive aria-labels
- Stabilize ModelOnboardingModal helper-text assertions by waiting for provider fetch/render state before checking visibility
This commit is contained in:
Fusion
2026-04-25 08:25:11 -07:00
committed by gsxdsm
parent 84ca1f99dc
commit 637547f6f1
5 changed files with 74 additions and 61 deletions

View File

@@ -41,7 +41,10 @@
.plugin-install-hint code {
padding: 1px var(--space-xs);
border-radius: var(--radius-sm);
background: var(--bg-tertiary, rgba(127, 127, 127, 0.12));
background: var(
--bg-tertiary,
color-mix(in srgb, var(--text-muted) 18%, transparent)
);
font-size: 0.85em;
}
@@ -221,3 +224,40 @@
text-align: center;
color: var(--text-muted);
}
@media (max-width: 768px) {
.plugin-manager-detail-header {
gap: var(--space-sm);
}
.plugin-detail-title {
gap: var(--space-xs);
}
.plugin-detail-card {
padding: var(--space-md);
gap: var(--space-sm);
}
.plugin-list {
gap: var(--space-xs);
}
.plugin-item {
padding: var(--space-md);
}
.plugin-actions {
gap: var(--space-xs);
}
.plugin-detail-actions {
flex-wrap: wrap;
justify-content: stretch;
}
.plugin-detail-actions button {
flex: 1 1 auto;
min-height: 36px;
}
}