From 7b4c3bfb32871e6c3b9f9667e4b5b2d95c145be6 Mon Sep 17 00:00:00 2001 From: Martin Fleck Date: Wed, 6 Mar 2024 01:35:32 +0000 Subject: [PATCH] Improve styling of column resize handles (#92) --- media/memory-table.css | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/media/memory-table.css b/media/memory-table.css index 0086410..5382d3b 100644 --- a/media/memory-table.css +++ b/media/memory-table.css @@ -85,3 +85,19 @@ .radix-prefix { opacity: 0.6; } + +/* == Resize Handle == */ + +.memory-inspector-table span.p-column-resizer { + border-right: 2px solid var(--vscode-editor-lineHighlightBorder); + transition: border-right .1s ease-out; +} + +.memory-inspector-table span.p-column-resizer:hover { + border-right: 2px solid var(--vscode-sash-hoverBorder); +} + +.memory-inspector-table .p-column-resizer-helper { + margin-top: 32px !important; /* avoid overlap with top 'Load more' widget */ + width: 2px; +}