feat(FN-2473): merge fusion/fn-2473
This commit is contained in:
@@ -157,6 +157,64 @@
|
||||
margin-top: var(--space-lg);
|
||||
}
|
||||
|
||||
.detail-source-section {
|
||||
border: 1px solid var(--border);
|
||||
border-radius: var(--radius-md);
|
||||
background: var(--card);
|
||||
padding: var(--space-md);
|
||||
}
|
||||
|
||||
.detail-source-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
gap: var(--space-md);
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.detail-source-grid dt {
|
||||
font-size: 11px;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.4px;
|
||||
color: var(--text-muted);
|
||||
margin-bottom: var(--space-xs);
|
||||
}
|
||||
|
||||
.detail-source-grid dd {
|
||||
margin: 0;
|
||||
color: var(--text);
|
||||
font-family: var(--font-mono);
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
.detail-source-link {
|
||||
color: var(--todo);
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.detail-source-link:hover {
|
||||
color: var(--text);
|
||||
}
|
||||
|
||||
.detail-source-empty {
|
||||
color: var(--text-dim);
|
||||
}
|
||||
|
||||
.detail-source-edit-group {
|
||||
margin-top: var(--space-sm);
|
||||
}
|
||||
|
||||
.detail-source-edit-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
gap: var(--space-sm);
|
||||
}
|
||||
|
||||
.detail-source-edit-group small {
|
||||
display: block;
|
||||
margin-top: var(--space-xs);
|
||||
color: var(--text-muted);
|
||||
}
|
||||
|
||||
/* Agent Log tab: stretch to fill the remaining modal body height
|
||||
so the log viewer uses all available space above the action bar. */
|
||||
.detail-section--agent-log {
|
||||
@@ -1270,6 +1328,11 @@
|
||||
min-height: 36px;
|
||||
}
|
||||
|
||||
.detail-source-grid,
|
||||
.detail-source-edit-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.detail-body {
|
||||
padding: 14px;
|
||||
overflow-x: hidden;
|
||||
|
||||
Reference in New Issue
Block a user