fix(ui): 3 user-reported issues

1) MODAL OFF-SCREEN (Schema/AOI/Confirm dialogs)
DialogContent had `inset-0 w-full h-full` + `min-[880px]:inset-auto`
конфликтовал — inset-0 winning по CSS specificity, modal приклеивался
к левому краю viewport вместо центра. User screenshot показал Schema edit
выходящим за левую границу экрана.

Fix: remove inset-0 fullscreen pattern. Use simple centered modal —
left-1/2 top-1/2 -translate-x-1/2 -translate-y-1/2 + w-[95vw] max-h-[95vh]
overflow-y-auto. На mobile <880px max-w из size variant даёт ширину 95vw
(natural fit). На desktop max-w ограничивает до 440/560/720/880/920px.

2) LOGO 'ORDINIS MDM' С CIRCLE ICON (per redesign prototype)
Sidebar logo: 'ORDINIS' → circle icon (accent orbit ring + dot) +
'ORDINIS' bold + 'MDM' mute subtitle (Tektur). SVG inline — нет external
dep.

Collapsed mode: только circle icon, no text (uses Tektur ORDINIS dropped).

3) TIMELINE BUTTON LABEL
InfoPanel button 'Time-travel…' → 'Таймлайн' (per user feedback). Behaviour
не меняется — клик открывает picker. Inline таймлайн visualization
отложен (большой refactor, нужен product decision).

Verified:
  - Dialog modal центрируется на десктоп
  - Logo рендерится с svg + text
  - Tests: 116 pass
This commit is contained in:
Zimin A.N.
2026-05-11 17:49:57 +03:00
parent 6b277a78a5
commit abdfaa8fcc
3 changed files with 28 additions and 11 deletions
@@ -172,20 +172,37 @@ function SidebarContent({
const { t } = useTranslation()
return (
<>
{/* Logo block */}
{/* Logo block per redesign prototype: circle (accent) + ORDINIS + MDM mute */}
<div
className={cn(
'h-14 flex items-center border-b border-line shrink-0',
collapsed ? 'justify-center px-2' : 'px-5',
collapsed ? 'justify-center px-2' : 'px-5 gap-2',
)}
>
<Link
to="/"
className="font-display text-base tracking-wider text-navy hover:opacity-80 transition-opacity"
className="flex items-center gap-2 hover:opacity-80 transition-opacity focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring rounded-sm"
onClick={onNavigate}
title="ORDINIS"
title="ORDINIS MDM"
>
{collapsed ? 'O' : 'ORDINIS'}
{/* Circle orbit icon — accent ring + dot center */}
<svg
width="20"
height="20"
viewBox="0 0 20 20"
fill="none"
xmlns="http://www.w3.org/2000/svg"
aria-hidden
className="shrink-0"
>
<circle cx="10" cy="10" r="8.5" stroke="var(--color-accent)" strokeWidth="1.4" />
<circle cx="10" cy="10" r="2" fill="var(--color-accent)" />
</svg>
{!collapsed && (
<span className="font-display text-base tracking-wider text-ink">
ORDINIS <span className="text-mute font-normal">MDM</span>
</span>
)}
</Link>
</div>