This commit is contained in:
2025-10-26 07:49:26 +04:00
parent 3fc8329303
commit 12b4685457
9 changed files with 457 additions and 110 deletions

View File

@@ -11,18 +11,25 @@ html, body {
/* Column Resizer */
.column-resizer {
width: 4px;
width: 1px;
background-color: var(--border-color);
cursor: col-resize;
transition: background-color 0.2s ease;
transition: background-color 0.2s ease, width 0.2s ease, box-shadow 0.2s ease;
user-select: none;
flex-shrink: 0;
padding: 0 3px; /* Add invisible padding for easier grab */
margin: 0 -3px; /* Compensate for padding */
}
.column-resizer:hover {
background-color: var(--link-color);
width: 6px;
margin: 0 -1px;
width: 1px;
box-shadow: 0 0 6px rgba(13, 110, 253, 0.3); /* Visual feedback instead of width change */
}
.column-resizer.dragging {
background-color: var(--link-color);
box-shadow: 0 0 8px rgba(13, 110, 253, 0.5);
}
.column-resizer.dragging {