Add detection operator profiles
GeoIntel CI / docs-smoke (push) Has been cancelled
GeoIntel CI / contract-smoke (push) Has been cancelled

This commit is contained in:
Codex
2026-07-09 20:19:10 +02:00
parent 60a7e822db
commit 90048ffb4a
12 changed files with 275 additions and 13 deletions
+61
View File
@@ -3473,6 +3473,67 @@ button.entity-card {
line-height: 1.35;
}
.operator-profile-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
gap: 0.62rem;
}
.operator-profile-card {
display: grid;
gap: 0.48rem;
min-width: 0;
border: 1px solid #d8e3de;
border-radius: 8px;
padding: 0.72rem;
background: #ffffff;
}
.operator-profile-card-selected {
border-color: var(--accent);
background: #f7fffc;
box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.1);
}
.operator-profile-card-header {
display: flex;
min-width: 0;
align-items: flex-start;
justify-content: space-between;
gap: 0.6rem;
}
.operator-profile-card-header strong {
min-width: 0;
color: var(--text);
font-size: 0.94rem;
line-height: 1.25;
}
.operator-profile-card p {
margin: 0;
color: var(--muted);
font-size: 0.8rem;
line-height: 1.35;
}
.operator-profile-metrics {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(6.4rem, 1fr));
gap: 0.36rem;
}
.operator-profile-metrics span {
border: 1px solid #e0e9e4;
border-radius: 6px;
padding: 0.34rem 0.42rem;
background: #f9fbfa;
color: var(--text);
font-size: 0.76rem;
font-weight: 700;
overflow-wrap: anywhere;
}
.field-guidance {
display: block;
margin-top: 0.24rem;