This commit is contained in:
+229
-22
@@ -1,21 +1,21 @@
|
||||
:root,
|
||||
:root[data-theme="dark"] {
|
||||
color-scheme: dark;
|
||||
--bg: #081120;
|
||||
--bg-deep: #050c18;
|
||||
--surface: #111b2e;
|
||||
--surface-low: #0c1627;
|
||||
--surface-high: #19253a;
|
||||
--surface-bright: #243149;
|
||||
--text: #e7efff;
|
||||
--text-soft: #c7d3e7;
|
||||
--muted: #8fa1b8;
|
||||
--border: #2b3a50;
|
||||
--border-strong: #42536b;
|
||||
--primary: #16e5ee;
|
||||
--primary-strong: #7cf8ff;
|
||||
--primary-ink: #002f32;
|
||||
--primary-soft: rgba(22, 229, 238, .1);
|
||||
--bg: #0b1326;
|
||||
--bg-deep: #060e20;
|
||||
--surface: #171f33;
|
||||
--surface-low: #131b2e;
|
||||
--surface-high: #222a3d;
|
||||
--surface-bright: #2d3449;
|
||||
--text: #dae2fd;
|
||||
--text-soft: #b9caca;
|
||||
--muted: #849495;
|
||||
--border: #3a494a;
|
||||
--border-strong: #59696a;
|
||||
--primary: #00f5ff;
|
||||
--primary-strong: #63f7ff;
|
||||
--primary-ink: #003739;
|
||||
--primary-soft: rgba(0, 245, 255, .1);
|
||||
--positive: #4edea3;
|
||||
--positive-soft: rgba(78, 222, 163, .11);
|
||||
--warning: #ffca69;
|
||||
@@ -25,10 +25,10 @@
|
||||
--indigo: #9ea5ff;
|
||||
--shadow: 0 18px 55px rgba(0, 0, 0, .24);
|
||||
--signal-glow: 0 0 0 1px rgba(22, 229, 238, .12), 0 0 28px rgba(22, 229, 238, .07);
|
||||
--radius: 9px;
|
||||
--radius-sm: 5px;
|
||||
--sidebar: 272px;
|
||||
--utility: 66px;
|
||||
--radius: 8px;
|
||||
--radius-sm: 4px;
|
||||
--sidebar: 256px;
|
||||
--utility: 64px;
|
||||
}
|
||||
|
||||
:root[data-theme="light"] {
|
||||
@@ -143,10 +143,10 @@ button.utility-link { width: auto; }
|
||||
:root[data-theme="light"] .theme-icon-dark { display: none; }
|
||||
:root[data-theme="light"] .theme-icon-light { display: block; }
|
||||
.nav-scrim { display: none; }
|
||||
.main-content { width: 100%; max-width: 1600px; margin: 0 auto; padding: 34px clamp(18px, 3.2vw, 52px) 72px; }
|
||||
.main-content { width: 100%; max-width: 1280px; margin: 0 auto; padding: 32px 24px 72px; }
|
||||
|
||||
.page-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 26px; margin-bottom: 28px; }
|
||||
.page-header h1, .job-hero h1 { margin: 0; font-size: clamp(30px, 3.7vw, 48px); line-height: 1.06; letter-spacing: -.042em; }
|
||||
.page-header h1, .job-hero h1 { margin: 0; font-size: clamp(30px, 3.2vw, 42px); line-height: 1.08; letter-spacing: -.035em; }
|
||||
.page-header p { max-width: 760px; margin: 9px 0 0; color: var(--muted); }
|
||||
.eyebrow { margin: 0 0 9px !important; color: var(--primary) !important; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .13em; }
|
||||
.page-actions { display: flex; flex-wrap: wrap; gap: 9px; }
|
||||
@@ -223,6 +223,7 @@ button.utility-link { width: auto; }
|
||||
.filter-bar .grow { flex: 1; }
|
||||
.field-label { color: var(--muted); font: 10px ui-monospace, SFMono-Regular, Consolas, monospace; text-transform: uppercase; letter-spacing: .07em; }
|
||||
input, select, textarea { width: 100%; min-height: 43px; padding: 9px 11px; border: 1px solid var(--border); border-radius: 5px; background: var(--surface-low); color: var(--text); }
|
||||
input[type="checkbox"], input[type="radio"] { width: 22px; min-height: 22px; height: 22px; padding: 0; accent-color: var(--primary); }
|
||||
input::placeholder, textarea::placeholder { color: color-mix(in srgb, var(--muted) 78%, transparent); }
|
||||
textarea { resize: vertical; }
|
||||
.table-wrap { overflow-x: auto; }
|
||||
@@ -282,6 +283,13 @@ textarea { resize: vertical; }
|
||||
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 17px; }
|
||||
.form-grid label { display: grid; align-content: start; gap: 6px; color: var(--muted); font-size: 13px; font-weight: 650; }
|
||||
.form-grid label > input, .form-grid label > select, .form-grid label > textarea { color: var(--text); font-weight: 400; }
|
||||
.choice-field { min-width: 0; margin: 0; padding: 0; border: 0; }
|
||||
.choice-field legend { margin-bottom: 9px; color: var(--muted); font-size: 13px; font-weight: 700; }
|
||||
.choice-field > div { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 9px; }
|
||||
.choice-field > div > div { min-width: 0; }
|
||||
.choice-field label { display: flex; align-items: center; gap: 9px; min-height: 44px; padding: 9px 11px; border: 1px solid var(--border); border-radius: 10px; background: color-mix(in srgb, var(--surface) 92%, transparent); color: var(--text); font-size: 13px; font-weight: 600; cursor: pointer; }
|
||||
.choice-field label:has(input:checked) { border-color: color-mix(in srgb, var(--primary) 62%, var(--border)); background: color-mix(in srgb, var(--primary) 10%, var(--surface)); }
|
||||
.choice-field small { display: block; margin-top: 7px; }
|
||||
.form-section { grid-column: 1 / -1; margin: 12px 0 -2px; padding-top: 18px; border-top: 1px solid var(--border); }
|
||||
.form-section h2 { margin: 0; font-size: 17px; }
|
||||
.form-section p { margin: 4px 0 0; color: var(--muted); font-size: 12px; }
|
||||
@@ -290,6 +298,18 @@ textarea { resize: vertical; }
|
||||
.form-actions { position: sticky; bottom: 12px; z-index: 5; display: flex; justify-content: flex-end; gap: 10px; margin-top: 24px; padding: 12px; border: 1px solid var(--border); border-radius: 7px; background: color-mix(in srgb, var(--surface) 92%, transparent); backdrop-filter: blur(12px); }
|
||||
|
||||
.source-overview { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-bottom: 20px; }
|
||||
.source-alert-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 16px; }
|
||||
.source-alert-card { display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; padding: 16px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--surface-soft); }
|
||||
.source-alert-card p { margin: 6px 0 0; color: var(--muted); }
|
||||
.source-alert-card .button { flex: 0 0 auto; }
|
||||
.source-alert-card small { display: block; margin-top: 8px; color: var(--muted); }
|
||||
.source-alert-card > .job-actions { flex: 0 0 auto; justify-content: flex-end; }
|
||||
.mailbox-disclosure { margin-top: 16px; }
|
||||
.mailbox-form-grid { margin-bottom: 14px; }
|
||||
.checkbox-row { display: inline-flex; align-items: center; gap: 9px; color: var(--text); font-size: 14px; font-weight: 700; }
|
||||
.checkbox-row input { width: 18px; height: 18px; accent-color: var(--accent); }
|
||||
.platform-help-grid { margin-top: 12px; }
|
||||
.button:disabled { cursor: not-allowed; opacity: .48; }
|
||||
.source-card { overflow: hidden; box-shadow: none; }
|
||||
.source-card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; padding: 18px; }
|
||||
.source-identity { min-width: 0; display: flex; gap: 13px; }
|
||||
@@ -354,7 +374,8 @@ textarea { resize: vertical; }
|
||||
.page-header, .profile-card, .application-card, .job-hero { align-items: stretch; flex-direction: column; }
|
||||
.page-header .button, .page-actions { width: 100%; }
|
||||
.page-actions .button { flex: 1; }
|
||||
.stats-grid, .two-columns, .form-grid, .definition-grid, .source-overview, .source-details-grid, .import-layout, .dashboard-rail { grid-template-columns: 1fr; }
|
||||
.stats-grid, .two-columns, .form-grid, .definition-grid, .source-overview, .source-alert-grid, .source-details-grid, .import-layout, .dashboard-rail { grid-template-columns: 1fr; }
|
||||
.source-alert-card { align-items: flex-start; flex-direction: column; }
|
||||
.filter-bar { align-items: stretch; flex-direction: column; }
|
||||
.span-2, .form-section { grid-column: auto; }
|
||||
.job-card-head { grid-template-columns: 1fr; }
|
||||
@@ -366,6 +387,7 @@ textarea { resize: vertical; }
|
||||
.source-list li { flex-direction: column; gap: 3px; }
|
||||
.source-card-head { flex-direction: column; }
|
||||
.source-actions { width: 100%; justify-content: space-between; }
|
||||
.choice-field > div { grid-template-columns: 1fr; }
|
||||
.form-actions { bottom: 8px; }
|
||||
}
|
||||
|
||||
@@ -382,3 +404,188 @@ textarea { resize: vertical; }
|
||||
@media (prefers-reduced-motion: reduce) {
|
||||
*, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
|
||||
}
|
||||
|
||||
/* VR-119: Stitch-compositie is leidend voor shell, feeds en intelligencepanelen. */
|
||||
.utilitybar-start { min-width: 0; flex: 1; gap: 18px; }
|
||||
.global-search { position: relative; width: min(440px, 44vw); }
|
||||
.global-search .icon { position: absolute; left: 13px; top: 50%; z-index: 1; width: 17px; height: 17px; transform: translateY(-50%); color: var(--muted); pointer-events: none; }
|
||||
.global-search input { min-height: 42px; padding-left: 42px; background: var(--surface-low); }
|
||||
.utility-radar { white-space: nowrap; }
|
||||
.utility-cta { min-height: 40px; font-size: 13px; }
|
||||
.section-link, .view-indicator { display: inline-flex; align-items: center; gap: 8px; }
|
||||
.section-link .icon, .view-indicator .icon { width: 17px; height: 17px; }
|
||||
.view-indicator { min-height: 42px; padding: 8px 13px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--surface-low); color: var(--text-soft); font: 12px ui-monospace, SFMono-Regular, Consolas, monospace; text-transform: uppercase; letter-spacing: .06em; }
|
||||
|
||||
.dashboard-header { align-items: end; }
|
||||
.dashboard-header strong { color: var(--primary); }
|
||||
.radar-status { display: inline-flex; align-items: center; gap: 9px; max-width: 430px; padding: 10px 14px; border: 1px solid var(--border); border-radius: 999px; background: var(--surface-low); color: var(--text-soft); font: 11px ui-monospace, SFMono-Regular, Consolas, monospace; }
|
||||
.radar-status a { margin-left: 3px; }
|
||||
.dashboard-grid { grid-template-columns: minmax(0, 1fr) 310px; gap: 28px; }
|
||||
.dashboard-matches { min-width: 0; }
|
||||
.job-feed, .results-feed { display: grid; gap: 12px; }
|
||||
.feed-card { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: stretch; padding: 0; gap: 0; overflow: hidden; }
|
||||
.job-card-main { min-width: 0; display: grid; gap: 14px; padding: 20px; }
|
||||
.feed-card-actions { min-width: 152px; display: flex; flex-direction: column; align-items: stretch; justify-content: center; gap: 9px; padding: 18px; border-left: 1px solid var(--border); background: var(--surface-low); }
|
||||
.feed-card-actions form { margin: 0; }
|
||||
.feed-card-actions .save-button { width: 100%; border-color: var(--border); }
|
||||
.confidence-label { color: var(--muted); font: 10px ui-monospace, SFMono-Regular, Consolas, monospace; text-transform: uppercase; letter-spacing: .06em; }
|
||||
.signal-list { display: grid; gap: 7px; margin: 0; padding: 0; list-style: none; color: var(--text-soft); }
|
||||
.signal-list li { position: relative; padding-left: 20px; }
|
||||
.signal-list li::before { content: ""; position: absolute; left: 2px; top: .62em; width: 6px; height: 6px; border-radius: 50%; background: var(--positive); }
|
||||
.rail-panel { padding: 22px; }
|
||||
.rail-panel h2 { margin: 8px 0 10px; font-size: 20px; }
|
||||
.rail-application-list { display: grid; margin: 8px 0 16px; border-top: 1px solid var(--border); }
|
||||
.rail-application { min-width: 0; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); color: var(--text); }
|
||||
.rail-application:hover { color: var(--primary-strong); text-decoration: none; }
|
||||
.rail-application > span { min-width: 0; display: grid; }
|
||||
.rail-application strong, .rail-application small { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
|
||||
.rail-application small { margin-top: 3px; color: var(--muted); }
|
||||
.rail-application time { color: var(--warning); font: 11px ui-monospace, SFMono-Regular, Consolas, monospace; }
|
||||
.compact-empty { min-height: 235px; display: grid; place-content: center; }
|
||||
|
||||
.filter-console { display: grid; grid-template-columns: minmax(250px, 1fr) 170px 170px auto; align-items: end; gap: 10px; padding: 16px; margin-bottom: 26px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); }
|
||||
.filter-console label { display: grid; gap: 6px; }
|
||||
.input-with-icon { position: relative; display: block; }
|
||||
.input-with-icon .icon { position: absolute; left: 12px; top: 50%; width: 16px; height: 16px; transform: translateY(-50%); color: var(--muted); }
|
||||
.input-with-icon input { padding-left: 38px; }
|
||||
.results-toolbar { display: flex; align-items: end; justify-content: space-between; gap: 16px; margin: 0 0 14px; }
|
||||
.results-toolbar h2 { margin: 4px 0 0; font-size: 20px; }
|
||||
.result-card { position: relative; min-width: 0; display: grid; grid-template-columns: 4px minmax(0, 1fr) auto; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); transition: border-color .16s ease, transform .16s ease; }
|
||||
.result-card:hover { border-color: var(--border-strong); transform: translateY(-1px); }
|
||||
.result-card.strong-match { border-color: color-mix(in srgb, var(--primary) 38%, var(--border)); box-shadow: var(--signal-glow); }
|
||||
.result-accent { background: var(--surface-bright); }
|
||||
.result-card.strong-match .result-accent { background: var(--primary); }
|
||||
.result-body { min-width: 0; display: grid; gap: 13px; padding: 19px 22px; }
|
||||
.result-heading { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 18px; }
|
||||
.result-heading h2 { margin: 7px 0 2px; font-size: 21px; line-height: 1.25; }
|
||||
.result-heading h2 a { color: var(--text); }
|
||||
.result-heading p, .result-summary { margin: 0; color: var(--muted); }
|
||||
.result-summary { max-width: 78ch; font-size: 13px; }
|
||||
.result-actions { min-width: 174px; display: grid; place-content: center; padding: 18px; border-left: 1px solid var(--border); background: var(--surface-low); }
|
||||
|
||||
.intelligence-strip { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin: 0 0 18px; }
|
||||
.intelligence-strip > div { min-height: 110px; display: grid; align-content: center; gap: 4px; padding: 18px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); }
|
||||
.intelligence-strip strong { color: var(--primary-strong); font-size: 24px; letter-spacing: -.025em; }
|
||||
.intelligence-strip small { color: var(--muted); }
|
||||
|
||||
.pipeline-page-header { align-items: end; }
|
||||
.pipeline-page-header h1 { font-size: clamp(30px, 3vw, 40px); }
|
||||
.pipeline { min-height: calc(100vh - 250px); grid-template-columns: repeat(6, minmax(270px, 1fr)); gap: 16px; }
|
||||
.pipeline-column { min-height: 460px; padding: 14px; background: color-mix(in srgb, var(--surface-low) 72%, transparent); }
|
||||
.pipeline-head h2 { display: flex; align-items: center; gap: 8px; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-weight: 500; }
|
||||
.column-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border-strong); }
|
||||
.pipeline-column:nth-child(2) .column-dot, .pipeline-column:nth-child(3) .column-dot { background: var(--primary); }
|
||||
.pipeline-column:nth-child(4) .column-dot { background: var(--positive); }
|
||||
.pipeline-column:nth-child(5) .column-dot, .pipeline-column:nth-child(6) .column-dot { background: var(--danger); }
|
||||
.pipeline-card { padding: 17px; background: var(--surface); }
|
||||
|
||||
.editor-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 22px; align-items: start; }
|
||||
.profile-editor { max-width: none; padding: 28px; }
|
||||
.profile-editor .form-section { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
|
||||
.profile-editor .form-section:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
|
||||
.form-section-icon { width: 38px; height: 38px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--surface-high); color: var(--primary); }
|
||||
.editor-rail { position: sticky; top: calc(var(--utility) + 20px); }
|
||||
.radar-preview { position: relative; overflow: hidden; }
|
||||
.radar-preview::after { content: ""; position: absolute; right: -45px; top: -45px; width: 150px; height: 150px; border: 1px solid color-mix(in srgb, var(--primary) 15%, transparent); border-radius: 50%; box-shadow: inset 0 0 0 32px color-mix(in srgb, var(--primary) 3%, transparent), inset 0 0 0 62px color-mix(in srgb, var(--primary) 3%, transparent); pointer-events: none; }
|
||||
.radar-preview > * { position: relative; z-index: 1; }
|
||||
.preview-score { display: grid; margin: 20px 0; padding: 17px; border: 1px solid color-mix(in srgb, var(--primary) 30%, var(--border)); border-radius: var(--radius); background: var(--bg-deep); }
|
||||
.preview-score strong { color: var(--primary); font-size: 36px; line-height: 1; }
|
||||
.preview-score span { margin-top: 5px; color: var(--muted); font: 10px ui-monospace, SFMono-Regular, Consolas, monospace; text-transform: uppercase; }
|
||||
|
||||
.import-disclosure { padding: 0; overflow: hidden; }
|
||||
.import-disclosure > summary { min-height: 82px; display: grid; grid-template-columns: 44px minmax(0, 1fr) auto; align-items: center; gap: 14px; padding: 16px 20px; cursor: pointer; list-style: none; }
|
||||
.import-disclosure > summary::-webkit-details-marker { display: none; }
|
||||
.import-disclosure > summary > span:nth-child(2) { display: grid; gap: 3px; }
|
||||
.import-disclosure > summary strong { font-size: 17px; }
|
||||
.import-disclosure > summary small { color: var(--muted); }
|
||||
.import-disclosure[open] > summary { border-bottom: 1px solid var(--border); }
|
||||
.import-disclosure[open] > summary .disclosure-icon { transform: rotate(180deg); }
|
||||
.import-disclosure-body { padding: 20px; }
|
||||
.source-list-heading { align-items: end; }
|
||||
.inline-bulk-action { display: flex; align-items: end; gap: 8px; }
|
||||
.inline-bulk-action select { min-width: 170px; }
|
||||
.source-card { border-left: 3px solid var(--border-strong); }
|
||||
.source-card:has(.pill-success) { border-left-color: var(--positive); }
|
||||
.source-card:has(.pill-failed) { border-left-color: var(--danger); }
|
||||
.source-card:has(.pill-review), .source-card:has(.pill-partial) { border-left-color: var(--warning); }
|
||||
|
||||
.system-hero { display: grid; grid-template-columns: minmax(300px, 1.25fr) minmax(300px, 1fr); gap: 14px; }
|
||||
.system-readiness { min-height: 134px; display: grid; grid-template-columns: 48px minmax(0, 1fr) 10px; align-items: center; gap: 16px; padding: 22px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); }
|
||||
.system-readiness.is-healthy { border-color: color-mix(in srgb, var(--positive) 35%, var(--border)); }
|
||||
.system-readiness h2 { margin: 5px 0 2px; font-size: 22px; }
|
||||
.system-readiness p { margin: 0; color: var(--muted); }
|
||||
.system-counts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
|
||||
.system-counts article { display: grid; align-content: center; gap: 6px; padding: 17px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface-low); }
|
||||
.system-counts strong { font-size: 25px; }
|
||||
.health-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
|
||||
.health-card { padding: 19px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); }
|
||||
.health-card-head { display: flex; align-items: start; justify-content: space-between; gap: 12px; }
|
||||
.health-card h3 { margin: 5px 0 0; font-size: 17px; }
|
||||
.health-card dl { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin: 17px 0 0; }
|
||||
.health-card dl div { padding: 9px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--surface-low); }
|
||||
.health-card dt { color: var(--muted); font: 9px ui-monospace, SFMono-Regular, Consolas, monospace; text-transform: uppercase; }
|
||||
.health-card dd { margin: 3px 0 0; font-weight: 750; }
|
||||
.command-panel { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
|
||||
.command-panel > div { display: grid; gap: 6px; }
|
||||
.command-panel pre { height: 100%; }
|
||||
|
||||
@media (max-width: 1180px) {
|
||||
.utility-radar { display: none; }
|
||||
.dashboard-grid { grid-template-columns: minmax(0, 1fr) 280px; }
|
||||
.dashboard-rail { position: sticky; display: block; }
|
||||
.editor-layout { grid-template-columns: 1fr; }
|
||||
.editor-rail { position: static; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
|
||||
.health-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
|
||||
}
|
||||
|
||||
@media (max-width: 900px) {
|
||||
.main-content { padding-inline: 20px; }
|
||||
.global-search { width: min(420px, 55vw); }
|
||||
.utility-cta { width: 42px; padding: 0; }
|
||||
.dashboard-grid { grid-template-columns: 1fr; }
|
||||
.dashboard-rail { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); position: static; }
|
||||
.feed-card { grid-template-columns: 1fr; }
|
||||
.feed-card-actions { min-width: 0; flex-direction: row; justify-content: flex-start; border-top: 1px solid var(--border); border-left: 0; }
|
||||
.feed-card-actions .save-button { width: 42px; }
|
||||
.filter-console { grid-template-columns: minmax(0, 1fr) repeat(2, 150px); }
|
||||
.filter-console .button { grid-column: 1 / -1; }
|
||||
.system-hero { grid-template-columns: 1fr; }
|
||||
}
|
||||
|
||||
@media (max-width: 680px) {
|
||||
.main-content { padding-inline: 14px; }
|
||||
.utilitybar { gap: 8px; padding-inline: 12px; }
|
||||
.utilitybar-start { gap: 8px; }
|
||||
.global-search { width: min(100%, 260px); }
|
||||
.global-search input { min-height: 40px; }
|
||||
.dashboard-header { align-items: stretch; }
|
||||
.radar-status { width: 100%; max-width: none; flex-wrap: wrap; border-radius: var(--radius); }
|
||||
.dashboard-rail, .editor-rail, .health-grid { grid-template-columns: 1fr; }
|
||||
.feed-card-actions .button { flex: 1; }
|
||||
.filter-console { grid-template-columns: 1fr; }
|
||||
.filter-console .button { grid-column: auto; }
|
||||
.results-toolbar, .source-list-heading { align-items: stretch; flex-direction: column; }
|
||||
.result-card { grid-template-columns: 3px minmax(0, 1fr); }
|
||||
.result-actions { grid-column: 2; min-width: 0; place-content: stretch; padding-top: 0; border-top: 0; border-left: 0; background: var(--surface); }
|
||||
.result-heading { grid-template-columns: 1fr; }
|
||||
.result-heading .score-block { justify-items: start; }
|
||||
.intelligence-strip { grid-template-columns: 1fr; }
|
||||
.intelligence-strip > div { min-height: 92px; }
|
||||
.pipeline { grid-template-columns: repeat(6, 258px); min-height: 410px; }
|
||||
.pipeline-column { min-height: 380px; }
|
||||
.profile-editor { padding: 18px; }
|
||||
.inline-bulk-action { align-items: stretch; flex-direction: column; }
|
||||
.inline-bulk-action select { min-width: 0; }
|
||||
.system-counts, .command-panel { grid-template-columns: 1fr; }
|
||||
}
|
||||
|
||||
@media (max-width: 420px) {
|
||||
.global-search { width: 46vw; }
|
||||
.global-search input::placeholder { color: transparent; }
|
||||
.utility-actions { gap: 2px; }
|
||||
.utility-actions .icon-button, .utility-actions .utility-link, .utility-cta { width: 38px; min-height: 38px; }
|
||||
.radar-status span:nth-child(3), .radar-status a { display: none; }
|
||||
.feed-card-actions { padding: 13px; }
|
||||
.result-body { padding: 17px; }
|
||||
.result-actions { padding: 0 17px 17px; }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user