mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-05-08 03:01:47 +00:00
Makes first-time use of the kanban view self-explanatory. Every control that wasn't already labelled now has a `title` tooltip describing what it does, and a `?` icon next to the board switcher opens the kanban docs page in a new tab. Coverage: - BoardSwitcher: board select, + New board button, docs-link icon (both compact and full variants) - BoardToolbar: Search, Tenant, Assignee, Show archived, Nudge dispatcher, Refresh - BulkActionBar: → ready, Complete, Archive, reassign group, Apply, Clear - Column header: hovering the header now surfaces COLUMN_HELP as a tooltip in addition to the visible sub-text; column count also labelled - Card: task id, priority badge, tenant badge, assignee/unassigned, comment count, link count, age timestamp - InlineCreate: assignee, priority, parent-task selectors Closes the community feedback from @CharlieDePew asking for tooltips and a docs link in the kanban view. Relevant docs page: https://hermes-agent.nousresearch.com/docs/user-guide/features/kanban
1376 lines
37 KiB
CSS
1376 lines
37 KiB
CSS
/*
|
|
* Hermes Kanban — dashboard plugin styles.
|
|
*
|
|
* All colors reference theme CSS vars so the board reskins with the
|
|
* active dashboard theme. No hardcoded palette.
|
|
*/
|
|
|
|
.hermes-kanban {
|
|
width: 100%;
|
|
}
|
|
|
|
/* ---- Code/pre reset (theme-immune default) --------------------------- *
|
|
*
|
|
* Themes (shipped AND user-installable) routinely paint every <code> and
|
|
* <pre> on the page with an opaque accent-color fill. That's fine for a
|
|
* Markdown doc page; it's wrong for the kanban plugin, which uses <code>
|
|
* for event payloads, run metadata, log panes, and similar raw-data
|
|
* surfaces that must read as plain text on the board's own background.
|
|
*
|
|
* Rather than play whack-a-mole with theme rules (the pre-#21086 approach
|
|
* was a single ``.hermes-kanban code { background: transparent }`` rule
|
|
* that lost specificity fights in the drawer context), reset EVERY
|
|
* <code>/<pre> inside the kanban plugin container to transparent with
|
|
* ``!important``, then opt back in ONLY on the class that carries
|
|
* intentional styling (``.hermes-kanban-md code``, the inline code pill
|
|
* inside rendered task-body Markdown).
|
|
*
|
|
* Net effect: any new theme, shipped or third-party, can introduce
|
|
* whatever global code-fill rule it wants — kanban surfaces stay clean
|
|
* unless the theme deliberately targets our internal class names.
|
|
* Regression coverage: #21086 (task-drawer event payloads unreadable
|
|
* across every shipped theme).
|
|
*/
|
|
.hermes-kanban code,
|
|
.hermes-kanban pre,
|
|
.hermes-kanban-drawer code,
|
|
.hermes-kanban-drawer pre {
|
|
background: transparent !important;
|
|
color: inherit;
|
|
}
|
|
/* The Markdown renderer intentionally paints a subtle code pill behind
|
|
* inline ``<code>`` inside task-body prose — but NOT inside a fenced
|
|
* block (those are a ``<pre class="hermes-kanban-md-code">`` with a
|
|
* bare ``<code>`` inside, and the pill would double up with the pre
|
|
* background). ``:not()`` scopes this opt-back-in to inline code only.
|
|
*
|
|
* Uses ``color-mix(currentColor ...)`` rather than ``--color-foreground``
|
|
* so the pill renders consistently even when a theme forgets to set
|
|
* ``--color-foreground`` (pre-existing safeguard from #18576).
|
|
*/
|
|
.hermes-kanban .hermes-kanban-md code:not(.hermes-kanban-md-code *) {
|
|
background: color-mix(in srgb, currentColor 8%, transparent) !important;
|
|
}
|
|
/* Tighten contrast on the drawer-specific payload class — it lives on
|
|
* its own line in the events list, so matching the muted-foreground
|
|
* color keeps it visually distinct from the event title without
|
|
* screaming for attention. */
|
|
.hermes-kanban-event-payload,
|
|
.hermes-kanban-drawer .hermes-kanban-event-payload {
|
|
color: var(--color-muted-foreground) !important;
|
|
}
|
|
|
|
/* ---- Columns layout -------------------------------------------------- */
|
|
|
|
.hermes-kanban-columns {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
|
|
gap: 0.75rem;
|
|
align-items: start;
|
|
}
|
|
|
|
.hermes-kanban-column {
|
|
display: flex;
|
|
flex-direction: column;
|
|
background: color-mix(in srgb, var(--color-card) 85%, transparent);
|
|
border: 1px solid var(--color-border);
|
|
border-radius: var(--radius);
|
|
padding: 0.5rem;
|
|
min-height: 200px;
|
|
max-height: calc(100vh - 220px);
|
|
transition: border-color 120ms ease, background-color 120ms ease;
|
|
}
|
|
|
|
.hermes-kanban-column--drop {
|
|
border-color: var(--color-ring);
|
|
background: color-mix(in srgb, var(--color-ring) 8%, var(--color-card));
|
|
}
|
|
|
|
.hermes-kanban-column-header {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
padding: 0.25rem 0.25rem 0.35rem;
|
|
font-weight: 600;
|
|
font-size: 0.85rem;
|
|
color: var(--color-foreground);
|
|
}
|
|
|
|
.hermes-kanban-column-label {
|
|
flex: 1;
|
|
letter-spacing: 0.01em;
|
|
}
|
|
|
|
.hermes-kanban-column-count {
|
|
font-variant-numeric: tabular-nums;
|
|
color: var(--color-muted-foreground);
|
|
font-size: 0.75rem;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.hermes-kanban-column-add {
|
|
appearance: none;
|
|
background: transparent;
|
|
border: 1px solid var(--color-border);
|
|
color: var(--color-foreground);
|
|
border-radius: var(--radius-sm, 0.25rem);
|
|
width: 22px;
|
|
height: 22px;
|
|
line-height: 1;
|
|
font-size: 1rem;
|
|
cursor: pointer;
|
|
}
|
|
.hermes-kanban-column-add:hover {
|
|
background: color-mix(in srgb, var(--color-foreground) 8%, transparent);
|
|
}
|
|
|
|
.hermes-kanban-column-sub {
|
|
padding: 0 0.25rem 0.5rem;
|
|
font-size: 0.7rem;
|
|
color: var(--color-muted-foreground);
|
|
border-bottom: 1px solid color-mix(in srgb, var(--color-border) 60%, transparent);
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.hermes-kanban-column-body {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.45rem;
|
|
overflow-y: auto;
|
|
padding-right: 0.1rem;
|
|
}
|
|
|
|
.hermes-kanban-empty {
|
|
padding: 1.5rem 0.5rem;
|
|
text-align: center;
|
|
font-size: 0.75rem;
|
|
color: var(--color-muted-foreground);
|
|
border: 1px dashed color-mix(in srgb, var(--color-border) 70%, transparent);
|
|
border-radius: var(--radius-sm, 0.25rem);
|
|
}
|
|
|
|
/* ---- Status dots ----------------------------------------------------- */
|
|
|
|
.hermes-kanban-dot {
|
|
display: inline-block;
|
|
width: 0.5rem;
|
|
height: 0.5rem;
|
|
border-radius: 999px;
|
|
background: var(--color-muted-foreground);
|
|
}
|
|
.hermes-kanban-dot-triage { background: #b47dd6; } /* lilac — fresh/unspecified */
|
|
.hermes-kanban-dot-todo { background: var(--color-muted-foreground); }
|
|
.hermes-kanban-dot-ready { background: #d4b348; } /* amber */
|
|
.hermes-kanban-dot-running { background: #3fb97d; } /* green */
|
|
.hermes-kanban-dot-blocked { background: var(--color-destructive, #d14a4a); }
|
|
.hermes-kanban-dot-done { background: #4a8cd1; } /* blue */
|
|
.hermes-kanban-dot-archived { background: var(--color-border); }
|
|
|
|
/* ---- Progress pill (N/M child tasks done) --------------------------- */
|
|
|
|
.hermes-kanban-progress {
|
|
font-family: var(--font-mono, ui-monospace, monospace);
|
|
font-size: 0.62rem;
|
|
padding: 0.05rem 0.35rem;
|
|
border-radius: 999px;
|
|
background: color-mix(in srgb, var(--color-foreground) 8%, transparent);
|
|
border: 1px solid color-mix(in srgb, var(--color-border) 80%, transparent);
|
|
color: var(--color-muted-foreground);
|
|
letter-spacing: 0.02em;
|
|
}
|
|
.hermes-kanban-progress--full {
|
|
background: color-mix(in srgb, #3fb97d 22%, transparent);
|
|
border-color: color-mix(in srgb, #3fb97d 45%, transparent);
|
|
color: var(--color-foreground);
|
|
}
|
|
|
|
/* ---- Lanes (per-profile sub-grouping inside Running) ---------------- */
|
|
|
|
.hermes-kanban-lane {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.35rem;
|
|
padding: 0.25rem 0 0.35rem;
|
|
border-top: 1px dashed color-mix(in srgb, var(--color-border) 70%, transparent);
|
|
}
|
|
.hermes-kanban-lane:first-child {
|
|
border-top: 0;
|
|
padding-top: 0;
|
|
}
|
|
.hermes-kanban-lane-head {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.4rem;
|
|
font-size: 0.65rem;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.08em;
|
|
color: var(--color-muted-foreground);
|
|
padding: 0 0.1rem;
|
|
}
|
|
.hermes-kanban-lane-name {
|
|
font-weight: 600;
|
|
font-family: var(--font-mono, ui-monospace, monospace);
|
|
}
|
|
.hermes-kanban-lane-count {
|
|
margin-left: auto;
|
|
font-variant-numeric: tabular-nums;
|
|
}
|
|
|
|
/* ---- Card ------------------------------------------------------------ */
|
|
|
|
.hermes-kanban-card {
|
|
cursor: grab;
|
|
transition: transform 100ms ease, box-shadow 100ms ease;
|
|
}
|
|
.hermes-kanban-card:hover {
|
|
box-shadow: 0 1px 0 0 var(--color-ring) inset, 0 0 0 1px var(--color-ring) inset;
|
|
}
|
|
.hermes-kanban-card:active {
|
|
cursor: grabbing;
|
|
transform: scale(0.995);
|
|
}
|
|
|
|
.hermes-kanban-card-content {
|
|
padding: 0.5rem 0.6rem !important;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.3rem;
|
|
}
|
|
|
|
.hermes-kanban-card-row {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.35rem;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.hermes-kanban-card-id {
|
|
font-family: var(--font-mono, ui-monospace, monospace);
|
|
font-size: 0.65rem;
|
|
color: var(--color-muted-foreground);
|
|
letter-spacing: 0.03em;
|
|
}
|
|
|
|
.hermes-kanban-card-title {
|
|
font-size: 0.85rem;
|
|
font-weight: 500;
|
|
line-height: 1.3;
|
|
color: var(--color-foreground);
|
|
word-break: break-word;
|
|
}
|
|
|
|
.hermes-kanban-card-meta {
|
|
font-size: 0.7rem;
|
|
color: var(--color-muted-foreground);
|
|
gap: 0.55rem;
|
|
}
|
|
|
|
.hermes-kanban-priority {
|
|
font-size: 0.6rem !important;
|
|
padding: 0.05rem 0.3rem !important;
|
|
background: color-mix(in srgb, var(--color-ring) 18%, transparent);
|
|
color: var(--color-foreground);
|
|
border: 1px solid color-mix(in srgb, var(--color-ring) 40%, transparent);
|
|
}
|
|
|
|
.hermes-kanban-tag {
|
|
font-size: 0.6rem !important;
|
|
padding: 0.05rem 0.3rem !important;
|
|
}
|
|
|
|
.hermes-kanban-assignee {
|
|
font-weight: 500;
|
|
color: color-mix(in srgb, var(--color-foreground) 80%, var(--color-muted-foreground));
|
|
}
|
|
.hermes-kanban-unassigned {
|
|
font-style: italic;
|
|
}
|
|
.hermes-kanban-ago {
|
|
margin-left: auto;
|
|
}
|
|
|
|
/* ---- Inline create --------------------------------------------------- */
|
|
|
|
.hermes-kanban-inline-create {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.35rem;
|
|
padding: 0.5rem;
|
|
margin-bottom: 0.5rem;
|
|
background: color-mix(in srgb, var(--color-card) 70%, transparent);
|
|
border: 1px dashed var(--color-border);
|
|
border-radius: var(--radius-sm, 0.25rem);
|
|
}
|
|
|
|
.hermes-kanban-inline-create > .flex.gap-2:last-child > button:first-of-type {
|
|
flex: 1;
|
|
min-width: 0;
|
|
}
|
|
|
|
/* ---- Drawer (task detail side panel) --------------------------------- */
|
|
|
|
.hermes-kanban-drawer-shade {
|
|
position: fixed;
|
|
inset: 0;
|
|
background: rgba(0, 0, 0, 0.45);
|
|
z-index: 60;
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.hermes-kanban-drawer {
|
|
width: min(var(--hermes-kanban-drawer-width, 640px), 92vw);
|
|
height: 100vh;
|
|
background: var(--color-card);
|
|
border-left: 1px solid var(--color-border);
|
|
display: flex;
|
|
flex-direction: column;
|
|
box-shadow: -4px 0 18px rgba(0, 0, 0, 0.35);
|
|
animation: hermes-kanban-drawer-in 180ms ease-out;
|
|
}
|
|
|
|
@keyframes hermes-kanban-drawer-in {
|
|
from { transform: translateX(100%); opacity: 0.3; }
|
|
to { transform: translateX(0); opacity: 1; }
|
|
}
|
|
|
|
.hermes-kanban-drawer-head {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 0.6rem 0.8rem;
|
|
border-bottom: 1px solid var(--color-border);
|
|
font-family: var(--font-mono, ui-monospace, monospace);
|
|
}
|
|
|
|
.hermes-kanban-drawer-close {
|
|
appearance: none;
|
|
background: transparent;
|
|
border: 0;
|
|
color: var(--color-muted-foreground);
|
|
font-size: 1.25rem;
|
|
line-height: 1;
|
|
cursor: pointer;
|
|
padding: 0 0.25rem;
|
|
}
|
|
.hermes-kanban-drawer-close:hover { color: var(--color-foreground); }
|
|
|
|
.hermes-kanban-drawer-body {
|
|
flex: 1;
|
|
overflow-y: auto;
|
|
padding: 0.9rem;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.85rem;
|
|
}
|
|
|
|
.hermes-kanban-drawer-title {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
font-size: 1rem;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.hermes-kanban-drawer-meta {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.15rem;
|
|
padding: 0.5rem 0.6rem;
|
|
background: color-mix(in srgb, var(--color-foreground) 4%, transparent);
|
|
border: 1px solid var(--color-border);
|
|
border-radius: var(--radius-sm, 0.25rem);
|
|
}
|
|
|
|
.hermes-kanban-meta-row {
|
|
display: flex;
|
|
gap: 0.5rem;
|
|
font-size: 0.8rem;
|
|
}
|
|
.hermes-kanban-meta-label {
|
|
width: 92px;
|
|
color: var(--color-muted-foreground);
|
|
}
|
|
.hermes-kanban-meta-value {
|
|
color: var(--color-foreground);
|
|
word-break: break-word;
|
|
}
|
|
|
|
.hermes-kanban-actions {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 0.3rem;
|
|
}
|
|
|
|
/* Specifier result banner — sits directly under the status action row. */
|
|
.hermes-kanban-msg-ok,
|
|
.hermes-kanban-msg-err {
|
|
margin-top: 0.4rem;
|
|
padding: 0.35rem 0.55rem;
|
|
border-radius: 0.375rem;
|
|
font-size: 0.85rem;
|
|
line-height: 1.3;
|
|
}
|
|
.hermes-kanban-msg-ok {
|
|
background: rgba(46, 160, 67, 0.12);
|
|
color: #2ea043;
|
|
border: 1px solid rgba(46, 160, 67, 0.35);
|
|
}
|
|
.hermes-kanban-msg-err {
|
|
background: rgba(248, 81, 73, 0.12);
|
|
color: #f85149;
|
|
border: 1px solid rgba(248, 81, 73, 0.35);
|
|
}
|
|
|
|
/* ---- Home channel subscription toggles (per-platform, per-task) ----- */
|
|
|
|
.hermes-kanban-home-subs {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 0.3rem;
|
|
}
|
|
.hermes-kanban-home-sub {
|
|
font-family: var(--font-mono, ui-monospace, monospace);
|
|
text-transform: lowercase;
|
|
letter-spacing: 0.02em;
|
|
}
|
|
.hermes-kanban-home-sub--on {
|
|
/* Subscribed toggle — use a strong ring-colored accent so the on/off
|
|
* distinction reads at a glance, not just from the ✓ prefix. Border +
|
|
* filled background + bolder weight keep the state obvious across
|
|
* themes (tested on default teal and NERV orange). */
|
|
border-color: var(--color-ring);
|
|
background: color-mix(in srgb, var(--color-ring) 32%, transparent);
|
|
color: var(--color-foreground);
|
|
font-weight: 600;
|
|
box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--color-ring) 40%, transparent);
|
|
}
|
|
|
|
.hermes-kanban-section {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.35rem;
|
|
}
|
|
|
|
.hermes-kanban-section-head {
|
|
font-size: 0.72rem;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.07em;
|
|
color: var(--color-muted-foreground);
|
|
}
|
|
|
|
.hermes-kanban-pre {
|
|
margin: 0;
|
|
padding: 0.5rem 0.6rem;
|
|
white-space: pre-wrap;
|
|
word-break: break-word;
|
|
background: color-mix(in srgb, var(--color-foreground) 4%, transparent);
|
|
border: 1px solid var(--color-border);
|
|
border-radius: var(--radius-sm, 0.25rem);
|
|
font-family: var(--font-mono, ui-monospace, monospace);
|
|
font-size: 0.8rem;
|
|
line-height: 1.5;
|
|
color: var(--color-foreground);
|
|
}
|
|
|
|
.hermes-kanban-comment {
|
|
border-left: 2px solid color-mix(in srgb, var(--color-ring) 35%, transparent);
|
|
padding-left: 0.5rem;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.2rem;
|
|
}
|
|
|
|
.hermes-kanban-comment-head {
|
|
display: flex;
|
|
gap: 0.5rem;
|
|
font-size: 0.7rem;
|
|
}
|
|
.hermes-kanban-comment-author {
|
|
font-weight: 600;
|
|
color: var(--color-foreground);
|
|
}
|
|
.hermes-kanban-comment-ago {
|
|
color: var(--color-muted-foreground);
|
|
}
|
|
|
|
.hermes-kanban-event {
|
|
display: flex;
|
|
gap: 0.5rem;
|
|
font-size: 0.7rem;
|
|
color: var(--color-muted-foreground);
|
|
font-family: var(--font-mono, ui-monospace, monospace);
|
|
}
|
|
.hermes-kanban-event-kind {
|
|
color: var(--color-foreground);
|
|
min-width: 6rem;
|
|
}
|
|
.hermes-kanban-event-payload {
|
|
color: var(--color-muted-foreground);
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
max-width: 280px;
|
|
}
|
|
|
|
.hermes-kanban-drawer-comment-row {
|
|
display: flex;
|
|
gap: 0.4rem;
|
|
padding: 0.55rem 0.75rem;
|
|
border-top: 1px solid var(--color-border);
|
|
background: color-mix(in srgb, var(--color-card) 90%, transparent);
|
|
}
|
|
|
|
.hermes-kanban-count {
|
|
display: inline-flex;
|
|
gap: 0.2rem;
|
|
align-items: center;
|
|
}
|
|
|
|
/* ---- Selection chrome ----------------------------------------------- */
|
|
|
|
.hermes-kanban-card--selected :where(.hermes-kanban-card-content) {
|
|
box-shadow: 0 0 0 2px var(--color-ring) inset,
|
|
0 0 0 1px var(--color-ring) inset;
|
|
background: color-mix(in srgb, var(--color-ring) 6%, var(--color-card));
|
|
}
|
|
|
|
.hermes-kanban-card-check {
|
|
width: 0.85rem;
|
|
height: 0.85rem;
|
|
margin: 0;
|
|
cursor: pointer;
|
|
accent-color: var(--color-ring);
|
|
}
|
|
|
|
/* ---- Bulk action bar ------------------------------------------------ */
|
|
|
|
.hermes-kanban-bulk {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
padding: 0.4rem 0.75rem;
|
|
background: color-mix(in srgb, var(--color-ring) 10%, var(--color-card));
|
|
border: 1px solid color-mix(in srgb, var(--color-ring) 40%, var(--color-border));
|
|
border-radius: var(--radius-sm, 0.25rem);
|
|
flex-wrap: wrap;
|
|
}
|
|
.hermes-kanban-bulk-count {
|
|
font-weight: 600;
|
|
font-size: 0.75rem;
|
|
padding-right: 0.25rem;
|
|
}
|
|
|
|
.hermes-kanban-bulk > button,
|
|
.hermes-kanban-bulk-reassign > button {
|
|
height: 1.7rem !important;
|
|
padding: 0 0.5rem !important;
|
|
font-size: 0.7rem !important;
|
|
border: 1px solid var(--color-border);
|
|
cursor: pointer;
|
|
}
|
|
.hermes-kanban-bulk > button:hover:not(:disabled),
|
|
.hermes-kanban-bulk-reassign > button:hover:not(:disabled) {
|
|
background: color-mix(in srgb, var(--color-foreground) 8%, transparent);
|
|
}
|
|
.hermes-kanban-bulk-reassign {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.25rem;
|
|
padding-left: 0.5rem;
|
|
border-left: 1px solid color-mix(in srgb, var(--color-border) 70%, transparent);
|
|
}
|
|
|
|
/* ---- Dependency editor chips --------------------------------------- */
|
|
|
|
.hermes-kanban-deps-row {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
margin-bottom: 0.4rem;
|
|
}
|
|
.hermes-kanban-deps-label {
|
|
font-size: 0.68rem;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.08em;
|
|
color: var(--color-muted-foreground);
|
|
min-width: 4rem;
|
|
}
|
|
.hermes-kanban-deps-chips {
|
|
display: flex;
|
|
gap: 0.3rem;
|
|
flex-wrap: wrap;
|
|
flex: 1;
|
|
}
|
|
.hermes-kanban-deps-empty {
|
|
font-size: 0.7rem;
|
|
color: var(--color-muted-foreground);
|
|
font-style: italic;
|
|
}
|
|
.hermes-kanban-dep-chip {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 0.15rem;
|
|
padding: 0.1rem 0.35rem;
|
|
background: color-mix(in srgb, var(--color-foreground) 6%, transparent);
|
|
border: 1px solid var(--color-border);
|
|
border-radius: var(--radius-sm, 0.25rem);
|
|
font-family: var(--font-mono, ui-monospace, monospace);
|
|
font-size: 0.68rem;
|
|
color: var(--color-foreground);
|
|
}
|
|
.hermes-kanban-dep-chip-x {
|
|
appearance: none;
|
|
background: transparent;
|
|
border: 0;
|
|
color: var(--color-muted-foreground);
|
|
cursor: pointer;
|
|
font-size: 0.85rem;
|
|
line-height: 1;
|
|
padding: 0 0.15rem;
|
|
}
|
|
.hermes-kanban-dep-chip-x:hover { color: var(--color-destructive, #d14a4a); }
|
|
|
|
/* ---- Inline edit affordances --------------------------------------- */
|
|
|
|
.hermes-kanban-editable {
|
|
cursor: pointer;
|
|
border-bottom: 1px dotted color-mix(in srgb, var(--color-border) 80%, transparent);
|
|
}
|
|
.hermes-kanban-editable:hover {
|
|
color: var(--color-foreground);
|
|
border-bottom-color: var(--color-ring);
|
|
}
|
|
|
|
.hermes-kanban-drawer-title-text {
|
|
cursor: pointer;
|
|
}
|
|
.hermes-kanban-drawer-title-text:hover {
|
|
text-decoration: underline;
|
|
text-decoration-color: var(--color-ring);
|
|
text-decoration-style: dotted;
|
|
text-underline-offset: 3px;
|
|
}
|
|
|
|
.hermes-kanban-edit-row {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.35rem;
|
|
width: 100%;
|
|
}
|
|
|
|
.hermes-kanban-section-head-row {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 0.5rem;
|
|
}
|
|
.hermes-kanban-edit-link {
|
|
appearance: none;
|
|
background: transparent;
|
|
border: 0;
|
|
color: var(--color-muted-foreground);
|
|
font-size: 0.7rem;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.05em;
|
|
cursor: pointer;
|
|
padding: 0;
|
|
}
|
|
.hermes-kanban-edit-link:hover { color: var(--color-ring); }
|
|
|
|
.hermes-kanban-textarea {
|
|
width: 100%;
|
|
min-height: 8rem;
|
|
background: var(--color-card);
|
|
color: var(--color-foreground);
|
|
border: 1px solid var(--color-border);
|
|
border-radius: var(--radius-sm, 0.25rem);
|
|
padding: 0.5rem 0.6rem;
|
|
font-family: var(--font-mono, ui-monospace, monospace);
|
|
font-size: 0.8rem;
|
|
line-height: 1.5;
|
|
resize: vertical;
|
|
}
|
|
.hermes-kanban-textarea:focus {
|
|
outline: none;
|
|
border-color: var(--color-ring);
|
|
box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-ring) 30%, transparent);
|
|
}
|
|
|
|
/* ---- Markdown rendering -------------------------------------------- */
|
|
|
|
.hermes-kanban-md {
|
|
font-size: 0.85rem;
|
|
line-height: 1.6;
|
|
color: var(--color-foreground);
|
|
}
|
|
.hermes-kanban-md p { margin: 0.25rem 0; }
|
|
.hermes-kanban-md h1,
|
|
.hermes-kanban-md h2,
|
|
.hermes-kanban-md h3,
|
|
.hermes-kanban-md h4 {
|
|
margin: 0.6rem 0 0.2rem;
|
|
line-height: 1.25;
|
|
}
|
|
.hermes-kanban-md h1 { font-size: 1.05rem; }
|
|
.hermes-kanban-md h2 { font-size: 0.95rem; }
|
|
.hermes-kanban-md h3 { font-size: 0.88rem; }
|
|
.hermes-kanban-md h4 { font-size: 0.82rem; }
|
|
.hermes-kanban-md ul {
|
|
margin: 0.25rem 0 0.25rem 1.1rem;
|
|
padding: 0;
|
|
}
|
|
.hermes-kanban-md li { margin: 0.1rem 0; }
|
|
.hermes-kanban-md a {
|
|
color: var(--color-ring);
|
|
text-decoration: underline;
|
|
}
|
|
.hermes-kanban-md code {
|
|
font-family: var(--font-mono, ui-monospace, monospace);
|
|
font-size: 0.8rem;
|
|
padding: 0.05rem 0.3rem;
|
|
/* Background is set in the code/pre reset block at the top of this
|
|
* file with !important, so theme-level global code rules can't knock
|
|
* out this intentional pill. See #21086. */
|
|
border-radius: 3px;
|
|
color: inherit;
|
|
}
|
|
/* Fenced code block. Set a visible background even when --color-foreground
|
|
* is empty (color-mix falls through to transparent in that case), and force
|
|
* color: inherit so the text tracks the drawer foreground rather than the
|
|
* UA default on <code> elements — otherwise themes that don't set
|
|
* --color-foreground leave code text rendering near-black on dark themes
|
|
* (see issue #18576). */
|
|
.hermes-kanban pre.hermes-kanban-md-code {
|
|
margin: 0.35rem 0;
|
|
padding: 0.5rem 0.6rem;
|
|
/* Higher specificity (``.hermes-kanban pre.hermes-kanban-md-code`` vs
|
|
* the reset's ``.hermes-kanban pre``) so this intentional pill wins
|
|
* over our own ``<pre>`` reset. ``!important`` also needed so theme
|
|
* rules that drop their own ``code``/``pre`` fill don't knock it out
|
|
* either. #21086. */
|
|
background: color-mix(in srgb, currentColor 6%, transparent) !important;
|
|
border: 1px solid var(--color-border);
|
|
border-radius: var(--radius-sm, 0.25rem);
|
|
overflow-x: auto;
|
|
}
|
|
.hermes-kanban-md-code code {
|
|
background: transparent;
|
|
padding: 0;
|
|
font-size: 0.8rem;
|
|
white-space: pre;
|
|
color: inherit;
|
|
}
|
|
.hermes-kanban-md strong { font-weight: 600; }
|
|
|
|
/* ---- Touch-drag proxy ---------------------------------------------- */
|
|
|
|
.hermes-kanban-touch-proxy {
|
|
pointer-events: none;
|
|
opacity: 0.85;
|
|
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
|
|
transform: scale(1.02);
|
|
transition: none;
|
|
}
|
|
|
|
|
|
/* ---- Staleness tiers ------------------------------------------------ */
|
|
|
|
.hermes-kanban-card--stale-amber :where(.hermes-kanban-card-content) {
|
|
box-shadow: 0 0 0 1px #d4b34888 inset;
|
|
}
|
|
.hermes-kanban-card--stale-amber:hover :where(.hermes-kanban-card-content) {
|
|
box-shadow: 0 0 0 2px #d4b348 inset;
|
|
}
|
|
.hermes-kanban-card--stale-red :where(.hermes-kanban-card-content) {
|
|
box-shadow: 0 0 0 1px var(--color-destructive, #d14a4a) inset,
|
|
0 0 8px color-mix(in srgb, var(--color-destructive, #d14a4a) 30%, transparent);
|
|
}
|
|
.hermes-kanban-card--stale-red:hover :where(.hermes-kanban-card-content) {
|
|
box-shadow: 0 0 0 2px var(--color-destructive, #d14a4a) inset,
|
|
0 0 10px color-mix(in srgb, var(--color-destructive, #d14a4a) 45%, transparent);
|
|
}
|
|
|
|
/* ---- Worker log pane ------------------------------------------------ */
|
|
|
|
.hermes-kanban-log {
|
|
max-height: 360px;
|
|
overflow: auto;
|
|
white-space: pre;
|
|
font-size: 0.78rem;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
|
|
/* ---- Run history (per-attempt log in the drawer) ------------------- */
|
|
|
|
.hermes-kanban-run {
|
|
border-left: 2px solid var(--color-border);
|
|
padding: 0.35rem 0.5rem;
|
|
margin-bottom: 0.4rem;
|
|
background: color-mix(in srgb, var(--color-foreground) 3%, transparent);
|
|
border-radius: var(--radius-sm, 0.25rem);
|
|
}
|
|
.hermes-kanban-run--active { border-left-color: #3fb97d; }
|
|
.hermes-kanban-run--completed { border-left-color: #4a8cd1; }
|
|
.hermes-kanban-run--ended { border-left-color: #6b7280; } /* generic fallback when outcome is unset */
|
|
.hermes-kanban-run--blocked { border-left-color: var(--color-destructive, #d14a4a); }
|
|
.hermes-kanban-run--crashed,
|
|
.hermes-kanban-run--timed_out,
|
|
.hermes-kanban-run--gave_up,
|
|
.hermes-kanban-run--spawn_failed {
|
|
border-left-color: var(--color-destructive, #d14a4a);
|
|
background: color-mix(in srgb, var(--color-destructive, #d14a4a) 6%, transparent);
|
|
}
|
|
.hermes-kanban-run--reclaimed { border-left-color: #d4b348; }
|
|
|
|
.hermes-kanban-run-head {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.6rem;
|
|
font-size: 0.7rem;
|
|
}
|
|
.hermes-kanban-run-outcome {
|
|
font-family: var(--font-mono, ui-monospace, monospace);
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.05em;
|
|
color: var(--color-foreground);
|
|
}
|
|
.hermes-kanban-run-profile {
|
|
color: var(--color-muted-foreground);
|
|
}
|
|
.hermes-kanban-run-elapsed {
|
|
font-variant-numeric: tabular-nums;
|
|
color: var(--color-muted-foreground);
|
|
}
|
|
.hermes-kanban-run-ago {
|
|
margin-left: auto;
|
|
color: var(--color-muted-foreground);
|
|
}
|
|
.hermes-kanban-run-summary {
|
|
font-size: 0.82rem;
|
|
line-height: 1.5;
|
|
padding: 0.2rem 0 0;
|
|
color: var(--color-foreground);
|
|
}
|
|
.hermes-kanban-run-error {
|
|
font-size: 0.7rem;
|
|
color: var(--color-destructive, #d14a4a);
|
|
padding: 0.15rem 0 0;
|
|
font-family: var(--font-mono, ui-monospace, monospace);
|
|
}
|
|
.hermes-kanban-run-meta {
|
|
display: block;
|
|
font-size: 0.72rem;
|
|
line-height: 1.5;
|
|
padding: 0.15rem 0 0;
|
|
color: var(--color-muted-foreground);
|
|
white-space: pre-wrap;
|
|
word-break: break-word;
|
|
font-family: var(--font-mono, ui-monospace, monospace);
|
|
}
|
|
|
|
/* -------------------------------------------------------------------------
|
|
Multi-project: board switcher + create-board dialog
|
|
------------------------------------------------------------------------- */
|
|
.hermes-kanban-boardswitcher {
|
|
border: 1px solid var(--color-border, rgba(120, 120, 140, 0.25));
|
|
border-radius: 0.5rem;
|
|
padding: 0.6rem 0.85rem;
|
|
background: var(--color-card-subtle, rgba(255, 255, 255, 0.02));
|
|
}
|
|
.hermes-kanban-boardswitcher-inner {
|
|
display: flex;
|
|
align-items: flex-end;
|
|
gap: 0.75rem;
|
|
flex-wrap: wrap;
|
|
}
|
|
.hermes-kanban-boardswitcher-compact {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
padding: 0 0.25rem;
|
|
gap: 0.5rem;
|
|
align-items: center;
|
|
}
|
|
.hermes-kanban-docs-link {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 1.5rem;
|
|
height: 1.5rem;
|
|
border-radius: 9999px;
|
|
font-size: 0.75rem;
|
|
font-weight: 600;
|
|
line-height: 1;
|
|
color: var(--color-muted-foreground, rgba(180, 180, 200, 0.8));
|
|
background: var(--color-card-subtle, rgba(255, 255, 255, 0.04));
|
|
border: 1px solid var(--color-border, rgba(120, 120, 140, 0.25));
|
|
text-decoration: none;
|
|
cursor: help;
|
|
transition: color 0.15s, background 0.15s, border-color 0.15s;
|
|
}
|
|
.hermes-kanban-docs-link:hover,
|
|
.hermes-kanban-docs-link:focus-visible {
|
|
color: var(--color-foreground, #e7e7ee);
|
|
background: var(--color-card, rgba(255, 255, 255, 0.08));
|
|
border-color: var(--color-border, rgba(160, 160, 190, 0.45));
|
|
outline: none;
|
|
}
|
|
.hermes-kanban-dialog-backdrop {
|
|
position: fixed;
|
|
inset: 0;
|
|
background: rgba(8, 10, 16, 0.55);
|
|
backdrop-filter: blur(2px);
|
|
z-index: 60;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
.hermes-kanban-dialog {
|
|
background: var(--color-card, #121421);
|
|
color: var(--color-foreground);
|
|
border: 1px solid var(--color-border, rgba(120, 120, 140, 0.25));
|
|
border-radius: 0.5rem;
|
|
padding: 1.1rem 1.2rem 1rem;
|
|
width: 28rem;
|
|
max-width: calc(100vw - 2rem);
|
|
max-height: calc(100vh - 3rem);
|
|
overflow: auto;
|
|
box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
|
|
}
|
|
.hermes-kanban-dialog-title {
|
|
font-size: 1rem;
|
|
font-weight: 600;
|
|
margin-bottom: 0.25rem;
|
|
}
|
|
.hermes-kanban-dialog-actions {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
gap: 0.5rem;
|
|
margin-top: 1rem;
|
|
}
|
|
|
|
/* ---------------------------------------------------------------------- */
|
|
/* Hallucination warnings: per-card badge, events callout, attention */
|
|
/* strip, recovery popover. Orange/red palette but muted so the board */
|
|
/* doesn't scream on every render. */
|
|
/* ---------------------------------------------------------------------- */
|
|
.hermes-kanban-warning-badge {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 0.75rem;
|
|
color: #ff9e3b;
|
|
margin-left: 0.25rem;
|
|
cursor: help;
|
|
}
|
|
|
|
/* Attention strip — collapsed state is a thin bar. */
|
|
.hermes-kanban-attention {
|
|
border: 1px solid rgba(255, 158, 59, 0.35);
|
|
background: rgba(255, 158, 59, 0.06);
|
|
border-radius: 0.5rem;
|
|
overflow: hidden;
|
|
}
|
|
.hermes-kanban-attention-bar {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
padding: 0.4rem 0.75rem;
|
|
font-size: 0.8125rem;
|
|
}
|
|
.hermes-kanban-attention-icon { color: #ff9e3b; font-size: 1rem; }
|
|
.hermes-kanban-attention-text { flex: 1; }
|
|
.hermes-kanban-attention-toggle,
|
|
.hermes-kanban-attention-dismiss,
|
|
.hermes-kanban-attention-row-btn {
|
|
background: transparent;
|
|
border: 1px solid rgba(120, 120, 140, 0.3);
|
|
border-radius: 0.3rem;
|
|
padding: 0.15rem 0.55rem;
|
|
font-size: 0.75rem;
|
|
color: inherit;
|
|
cursor: pointer;
|
|
}
|
|
.hermes-kanban-attention-toggle:hover,
|
|
.hermes-kanban-attention-dismiss:hover,
|
|
.hermes-kanban-attention-row-btn:hover {
|
|
background: rgba(255, 158, 59, 0.12);
|
|
}
|
|
.hermes-kanban-attention-list {
|
|
border-top: 1px solid rgba(255, 158, 59, 0.2);
|
|
padding: 0.25rem 0;
|
|
}
|
|
.hermes-kanban-attention-row {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
padding: 0.3rem 0.75rem;
|
|
font-size: 0.8125rem;
|
|
}
|
|
.hermes-kanban-attention-row:hover {
|
|
background: rgba(255, 158, 59, 0.08);
|
|
}
|
|
.hermes-kanban-attention-row-id {
|
|
font-family: ui-monospace, SFMono-Regular, monospace;
|
|
font-size: 0.75rem;
|
|
color: var(--color-muted-foreground, #888);
|
|
min-width: 7rem;
|
|
}
|
|
.hermes-kanban-attention-row-title {
|
|
flex: 1;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
.hermes-kanban-attention-row-meta {
|
|
font-size: 0.75rem;
|
|
color: var(--color-muted-foreground, #888);
|
|
}
|
|
|
|
/* Events tab — callout style for hallucination events. */
|
|
.hermes-kanban-event--hallucination {
|
|
border-left: 3px solid #ff6b6b;
|
|
background: rgba(255, 107, 107, 0.08);
|
|
padding: 0.5rem 0.65rem;
|
|
border-radius: 0.35rem;
|
|
margin: 0.25rem 0;
|
|
}
|
|
.hermes-kanban-event-header,
|
|
.hermes-kanban-event-header-plain {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
}
|
|
.hermes-kanban-event-warning-icon { color: #ff6b6b; font-size: 1rem; }
|
|
.hermes-kanban-event-warning-label {
|
|
color: #ff6b6b;
|
|
font-weight: 600;
|
|
font-size: 0.8125rem;
|
|
}
|
|
.hermes-kanban-event-phantom-row {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.4rem;
|
|
flex-wrap: wrap;
|
|
margin-top: 0.3rem;
|
|
padding-left: 1.35rem;
|
|
}
|
|
.hermes-kanban-event-phantom-label {
|
|
font-size: 0.75rem;
|
|
color: var(--color-muted-foreground, #999);
|
|
}
|
|
.hermes-kanban-event-phantom-chip {
|
|
font-family: ui-monospace, SFMono-Regular, monospace;
|
|
font-size: 0.75rem;
|
|
padding: 0.1rem 0.4rem;
|
|
background: rgba(255, 107, 107, 0.15);
|
|
border: 1px solid rgba(255, 107, 107, 0.3);
|
|
border-radius: 0.3rem;
|
|
}
|
|
|
|
/* Recovery section header — amber accent when the task has warnings. */
|
|
.hermes-kanban-section-head-warning { color: #ff9e3b; }
|
|
.hermes-kanban-section-head-row {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 0.5rem;
|
|
}
|
|
.hermes-kanban-section-toggle {
|
|
background: transparent;
|
|
border: 1px solid rgba(120, 120, 140, 0.3);
|
|
border-radius: 0.3rem;
|
|
padding: 0.15rem 0.55rem;
|
|
font-size: 0.75rem;
|
|
color: inherit;
|
|
cursor: pointer;
|
|
}
|
|
|
|
/* Recovery popover body. */
|
|
.hermes-kanban-recovery {
|
|
border: 1px solid rgba(120, 120, 140, 0.25);
|
|
background: rgba(255, 158, 59, 0.04);
|
|
border-radius: 0.5rem;
|
|
padding: 0.75rem;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.75rem;
|
|
}
|
|
.hermes-kanban-recovery-title {
|
|
font-weight: 600;
|
|
font-size: 0.8125rem;
|
|
}
|
|
.hermes-kanban-recovery-hint {
|
|
font-size: 0.75rem;
|
|
color: var(--color-muted-foreground, #888);
|
|
line-height: 1.35;
|
|
}
|
|
.hermes-kanban-recovery-section {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.35rem;
|
|
}
|
|
.hermes-kanban-recovery-label {
|
|
font-size: 0.75rem;
|
|
color: var(--color-muted-foreground, #888);
|
|
}
|
|
.hermes-kanban-recovery-input,
|
|
.hermes-kanban-recovery-select {
|
|
padding: 0.25rem 0.4rem;
|
|
font-size: 0.8125rem;
|
|
background: rgba(0, 0, 0, 0.15);
|
|
border: 1px solid rgba(120, 120, 140, 0.3);
|
|
border-radius: 0.3rem;
|
|
color: inherit;
|
|
outline: none;
|
|
}
|
|
.hermes-kanban-recovery-action-row {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
flex-wrap: wrap;
|
|
}
|
|
.hermes-kanban-recovery-action-label {
|
|
font-size: 0.8125rem;
|
|
font-weight: 600;
|
|
min-width: 8rem;
|
|
}
|
|
.hermes-kanban-recovery-action-desc {
|
|
flex: 1;
|
|
font-size: 0.75rem;
|
|
color: var(--color-muted-foreground, #888);
|
|
}
|
|
.hermes-kanban-recovery-btn {
|
|
padding: 0.25rem 0.7rem;
|
|
font-size: 0.75rem;
|
|
background: rgba(255, 158, 59, 0.15);
|
|
border: 1px solid rgba(255, 158, 59, 0.4);
|
|
border-radius: 0.3rem;
|
|
color: inherit;
|
|
cursor: pointer;
|
|
}
|
|
.hermes-kanban-recovery-btn:hover:not(:disabled) {
|
|
background: rgba(255, 158, 59, 0.25);
|
|
}
|
|
.hermes-kanban-recovery-btn:disabled {
|
|
opacity: 0.4;
|
|
cursor: not-allowed;
|
|
}
|
|
.hermes-kanban-recovery-reassign-row {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
flex-wrap: wrap;
|
|
}
|
|
.hermes-kanban-recovery-checkbox {
|
|
font-size: 0.75rem;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 0.25rem;
|
|
}
|
|
.hermes-kanban-recovery-cmd-row {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
flex-wrap: wrap;
|
|
}
|
|
.hermes-kanban-recovery-cmd {
|
|
font-family: ui-monospace, SFMono-Regular, monospace;
|
|
font-size: 0.75rem;
|
|
padding: 0.2rem 0.5rem;
|
|
background: rgba(0, 0, 0, 0.2);
|
|
border: 1px solid rgba(120, 120, 140, 0.3);
|
|
border-radius: 0.3rem;
|
|
flex: 1;
|
|
min-width: 10rem;
|
|
overflow-x: auto;
|
|
white-space: nowrap;
|
|
}
|
|
.hermes-kanban-recovery-msg {
|
|
font-size: 0.75rem;
|
|
padding: 0.35rem 0.5rem;
|
|
border-radius: 0.3rem;
|
|
}
|
|
.hermes-kanban-recovery-msg--ok {
|
|
background: rgba(120, 200, 120, 0.12);
|
|
color: #6bc46b;
|
|
border: 1px solid rgba(120, 200, 120, 0.3);
|
|
}
|
|
.hermes-kanban-recovery-msg--err {
|
|
background: rgba(255, 107, 107, 0.12);
|
|
color: #ff8b8b;
|
|
border: 1px solid rgba(255, 107, 107, 0.3);
|
|
}
|
|
|
|
/* ---------------------------------------------------------------------- */
|
|
/* Diagnostics — generic, severity-coloured distress signals on tasks. */
|
|
/* Three rungs: warning (amber), error (orange), critical (red). */
|
|
/* ---------------------------------------------------------------------- */
|
|
|
|
/* Severity token variables so every diagnostic-coloured surface uses the */
|
|
/* same palette. */
|
|
.hermes-kanban-diag,
|
|
.hermes-kanban-attention,
|
|
.hermes-kanban-warning-badge,
|
|
.hermes-kanban-attention-row {
|
|
--hermes-diag-warning: #ff9e3b;
|
|
--hermes-diag-error: #ff6b3d;
|
|
--hermes-diag-critical: #ff4d4d;
|
|
}
|
|
|
|
/* Warning-badge severity variants (overrides the base colour). */
|
|
.hermes-kanban-warning-badge--warning { color: var(--hermes-diag-warning); }
|
|
.hermes-kanban-warning-badge--error { color: var(--hermes-diag-error); font-weight: 700; }
|
|
.hermes-kanban-warning-badge--critical { color: var(--hermes-diag-critical); font-weight: 700; }
|
|
|
|
/* Attention-strip severity variants. */
|
|
.hermes-kanban-attention--warning {
|
|
border-color: rgba(255, 158, 59, 0.35);
|
|
background: rgba(255, 158, 59, 0.06);
|
|
}
|
|
.hermes-kanban-attention--error {
|
|
border-color: rgba(255, 107, 61, 0.45);
|
|
background: rgba(255, 107, 61, 0.08);
|
|
}
|
|
.hermes-kanban-attention--critical {
|
|
border-color: rgba(255, 77, 77, 0.55);
|
|
background: rgba(255, 77, 77, 0.10);
|
|
}
|
|
.hermes-kanban-attention--error .hermes-kanban-attention-icon { color: var(--hermes-diag-error); }
|
|
.hermes-kanban-attention--critical .hermes-kanban-attention-icon { color: var(--hermes-diag-critical); }
|
|
|
|
/* Per-row severity marker in the expanded attention list. */
|
|
.hermes-kanban-attention-row-sev {
|
|
display: inline-block;
|
|
min-width: 1.5rem;
|
|
font-weight: 600;
|
|
}
|
|
.hermes-kanban-attention-row--warning .hermes-kanban-attention-row-sev { color: var(--hermes-diag-warning); }
|
|
.hermes-kanban-attention-row--error .hermes-kanban-attention-row-sev { color: var(--hermes-diag-error); font-weight: 700; }
|
|
.hermes-kanban-attention-row--critical .hermes-kanban-attention-row-sev { color: var(--hermes-diag-critical); font-weight: 700; }
|
|
|
|
/* Individual diagnostic card inside the drawer's Diagnostics section. */
|
|
.hermes-kanban-diag-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.6rem;
|
|
}
|
|
.hermes-kanban-diag {
|
|
border-left: 3px solid var(--hermes-diag-warning);
|
|
background: rgba(255, 158, 59, 0.05);
|
|
border-radius: 0.35rem;
|
|
padding: 0.6rem 0.75rem;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.4rem;
|
|
}
|
|
.hermes-kanban-diag--error {
|
|
border-left-color: var(--hermes-diag-error);
|
|
background: rgba(255, 107, 61, 0.06);
|
|
}
|
|
.hermes-kanban-diag--critical {
|
|
border-left-color: var(--hermes-diag-critical);
|
|
background: rgba(255, 77, 77, 0.07);
|
|
}
|
|
.hermes-kanban-diag-header {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
}
|
|
.hermes-kanban-diag-sev {
|
|
font-weight: 700;
|
|
min-width: 1.5rem;
|
|
}
|
|
.hermes-kanban-diag--warning .hermes-kanban-diag-sev { color: var(--hermes-diag-warning); }
|
|
.hermes-kanban-diag--error .hermes-kanban-diag-sev { color: var(--hermes-diag-error); }
|
|
.hermes-kanban-diag--critical .hermes-kanban-diag-sev { color: var(--hermes-diag-critical); }
|
|
.hermes-kanban-diag-title {
|
|
font-weight: 600;
|
|
font-size: 0.875rem;
|
|
}
|
|
.hermes-kanban-diag-detail {
|
|
font-size: 0.8125rem;
|
|
color: var(--color-foreground, #ccc);
|
|
line-height: 1.4;
|
|
}
|
|
.hermes-kanban-diag-data {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.2rem;
|
|
font-size: 0.75rem;
|
|
}
|
|
.hermes-kanban-diag-data-row {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.35rem;
|
|
flex-wrap: wrap;
|
|
}
|
|
.hermes-kanban-diag-data-key {
|
|
color: var(--color-muted-foreground, #888);
|
|
font-weight: 500;
|
|
}
|
|
.hermes-kanban-diag-data-val {
|
|
font-family: ui-monospace, SFMono-Regular, monospace;
|
|
}
|
|
.hermes-kanban-diag-reassign-row {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.4rem;
|
|
font-size: 0.75rem;
|
|
}
|
|
.hermes-kanban-diag-reassign-label {
|
|
color: var(--color-muted-foreground, #888);
|
|
}
|
|
.hermes-kanban-diag-actions {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 0.4rem;
|
|
margin-top: 0.1rem;
|
|
}
|
|
.hermes-kanban-diag-action-btn {
|
|
padding: 0.25rem 0.6rem;
|
|
font-size: 0.75rem;
|
|
background: rgba(0, 0, 0, 0.2);
|
|
border: 1px solid rgba(120, 120, 140, 0.3);
|
|
border-radius: 0.3rem;
|
|
color: inherit;
|
|
cursor: pointer;
|
|
text-decoration: none;
|
|
}
|
|
.hermes-kanban-diag-action-btn:hover:not(:disabled) {
|
|
background: rgba(0, 0, 0, 0.3);
|
|
}
|
|
.hermes-kanban-diag-action-btn:disabled {
|
|
opacity: 0.4;
|
|
cursor: not-allowed;
|
|
}
|
|
.hermes-kanban-diag-action-btn--suggested {
|
|
background: rgba(255, 158, 59, 0.15);
|
|
border-color: rgba(255, 158, 59, 0.4);
|
|
font-weight: 600;
|
|
}
|
|
.hermes-kanban-diag-action-btn--suggested:hover:not(:disabled) {
|
|
background: rgba(255, 158, 59, 0.25);
|
|
}
|
|
.hermes-kanban-diag-action-btn--unknown {
|
|
opacity: 0.6;
|
|
cursor: default;
|
|
}
|
|
.hermes-kanban-diag-msg {
|
|
font-size: 0.75rem;
|
|
padding: 0.35rem 0.5rem;
|
|
border-radius: 0.3rem;
|
|
}
|
|
.hermes-kanban-diag-msg--ok {
|
|
background: rgba(120, 200, 120, 0.12);
|
|
color: #6bc46b;
|
|
border: 1px solid rgba(120, 200, 120, 0.3);
|
|
}
|
|
.hermes-kanban-diag-msg--err {
|
|
background: rgba(255, 107, 61, 0.12);
|
|
color: #ff8b6b;
|
|
border: 1px solid rgba(255, 107, 61, 0.3);
|
|
}
|