fix: make drag handle more visible in LogisticsReadinessBoard

This commit is contained in:
root 2026-06-30 12:39:10 +00:00
parent 23c0ed78ef
commit 5c957c3c05
1 changed files with 9 additions and 8 deletions

View File

@ -160,17 +160,18 @@ const SortableSection = ({ statusValue, label, groups, isCollapsed, onToggle, on
{/* Drag handle */}
<button
type="button"
className="px-3 py-3 cursor-grab active:cursor-grabbing text-[var(--color-text-muted)] hover:text-[var(--color-text)] touch-none"
className="flex items-center px-3 py-3 cursor-grab active:cursor-grabbing text-[var(--color-text)] hover:bg-[var(--color-accent-soft)] rounded-l-[28px] touch-none"
title="Перетащите для изменения порядка"
{...attributes}
{...listeners}
>
<svg className="h-4 w-4" fill="currentColor" viewBox="0 0 24 24">
<circle cx="9" cy="6" r="1.5" />
<circle cx="15" cy="6" r="1.5" />
<circle cx="9" cy="12" r="1.5" />
<circle cx="15" cy="12" r="1.5" />
<circle cx="9" cy="18" r="1.5" />
<circle cx="15" cy="18" r="1.5" />
<svg className="h-5 w-5" fill="currentColor" viewBox="0 0 24 24" style={{ opacity: 0.6 }}>
<circle cx="9" cy="5" r="1.8" />
<circle cx="15" cy="5" r="1.8" />
<circle cx="9" cy="12" r="1.8" />
<circle cx="15" cy="12" r="1.8" />
<circle cx="9" cy="19" r="1.8" />
<circle cx="15" cy="19" r="1.8" />
</svg>
</button>