feat(FN-3027): add AgentLogViewer, NewAgentDialog improvements, and AgentDe
This merge adds research settings to the settings modal and dashboard (FN-2839, FN-3029), implements a dashboard font scale setting with persistence and documentation (FN-3027), refactors AgentDetailView with a new AgentLogViewer CSS module (FN-2839), and improves NewAgentDialog with custom model dr Fusion-Task-Id: FN-3027
This commit is contained in:
@@ -618,6 +618,40 @@ html .column.drag-over * {
|
||||
margin-bottom: var(--space-md);
|
||||
}
|
||||
|
||||
.theme-font-size-toggle {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
gap: var(--space-sm);
|
||||
margin-bottom: var(--space-lg);
|
||||
}
|
||||
|
||||
.theme-font-size-btn {
|
||||
align-items: center;
|
||||
background: var(--card);
|
||||
border: 1px solid var(--border);
|
||||
border-radius: var(--radius-sm);
|
||||
color: var(--text-muted);
|
||||
cursor: pointer;
|
||||
display: inline-flex;
|
||||
font-size: 13px;
|
||||
font-weight: 500;
|
||||
justify-content: center;
|
||||
min-height: calc(var(--space-2xl) + var(--space-sm));
|
||||
padding: var(--space-sm) var(--space-md);
|
||||
transition: all var(--transition-fast);
|
||||
}
|
||||
|
||||
.theme-font-size-btn:hover {
|
||||
border-color: var(--todo);
|
||||
color: var(--text);
|
||||
}
|
||||
|
||||
.theme-font-size-btn.active {
|
||||
background: color-mix(in srgb, var(--todo) 14%, transparent);
|
||||
border-color: var(--todo);
|
||||
color: var(--text);
|
||||
}
|
||||
|
||||
.theme-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(4, 1fr);
|
||||
@@ -1276,4 +1310,8 @@ html .column.drag-over * {
|
||||
.theme-selector {
|
||||
padding: 0 14px 14px;
|
||||
}
|
||||
|
||||
.theme-font-size-toggle {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user