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:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user