Nightly Build / build (push) Successful in 7m17s
Every full-page view now renders the same sticky top bar (back button, title, right-side actions) from the new web/css/page-header.css, replacing a dozen per-page duplicates (.page-panel-header, .project-page-header, .task-page-header, .llm-page-header, .um-header, .apr-header, .llmr-header, .pv-header, .sa-header, .config-page-header, .agents-page-header). Pages that padded the whole container (config, agents, system-agents, llm-requests, models-hub) move that padding into a body wrapper so the bar sits flush and stays pinned on scroll. Back buttons are standardized to the icon-only .page-header-back.
107 lines
1.5 KiB
CSS
107 lines
1.5 KiB
CSS
config-page {
|
|
display: none;
|
|
flex-direction: column;
|
|
flex: 1;
|
|
overflow-y: auto;
|
|
background: var(--bs-body-bg);
|
|
}
|
|
|
|
.config-page {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
}
|
|
|
|
.config-body {
|
|
padding: 1.5rem 2rem;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.75rem;
|
|
}
|
|
|
|
.config-sets {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 2rem;
|
|
max-width: 680px;
|
|
}
|
|
|
|
.config-set {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.75rem;
|
|
}
|
|
|
|
.config-set-header {
|
|
padding-bottom: 0.5rem;
|
|
border-bottom: 1px solid var(--bs-border-color);
|
|
}
|
|
|
|
.config-set-name {
|
|
font-size: 1rem;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.config-set-desc {
|
|
font-size: 0.8rem;
|
|
color: var(--bs-secondary-color, #6c757d);
|
|
margin-top: 0.1rem;
|
|
}
|
|
|
|
.config-rows {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.75rem;
|
|
}
|
|
|
|
.config-row {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.5rem;
|
|
padding: 1rem;
|
|
border: 1px solid var(--bs-border-color);
|
|
border-radius: 0.5rem;
|
|
background: var(--bs-body-bg);
|
|
}
|
|
|
|
.config-row-name {
|
|
font-weight: 600;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.config-row-desc {
|
|
font-size: 0.8rem;
|
|
color: var(--bs-secondary-color, #6c757d);
|
|
}
|
|
|
|
.config-row-control {
|
|
display: flex;
|
|
gap: 0.5rem;
|
|
align-items: center;
|
|
}
|
|
|
|
.config-input {
|
|
flex: 1;
|
|
max-width: 400px;
|
|
}
|
|
|
|
.config-save-btn {
|
|
white-space: nowrap;
|
|
min-width: 64px;
|
|
}
|
|
|
|
.config-bool-switch {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.config-bool-switch .form-check-input {
|
|
cursor: pointer;
|
|
width: 2.5em;
|
|
height: 1.25em;
|
|
margin: 0;
|
|
}
|