From fccfb5eb459f5ac992de3d89938b98c90a00ea9d Mon Sep 17 00:00:00 2001 From: Alex Andreev Date: Thu, 25 Aug 2022 12:41:16 +0300 Subject: [PATCH] Restyling resizing handle Signed-off-by: Alex Andreev --- src/renderer/components/table/table-header.module.scss | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/renderer/components/table/table-header.module.scss b/src/renderer/components/table/table-header.module.scss index 94980f64db..8f74d60b4a 100644 --- a/src/renderer/components/table/table-header.module.scss +++ b/src/renderer/components/table/table-header.module.scss @@ -7,16 +7,17 @@ position: absolute; right: 0; top: 0; - height: 100%; - width: 5px; - background: #ccc; + height: 20px; + width: 2px; + border-radius: 3px; + background: var(--textColorDimmed); cursor: col-resize; user-select: none; touch-action: none; } .resizer.isResizing { - background: blue; + background: var(--textColorAccent); opacity: 1; } @@ -27,5 +28,6 @@ *:hover > .resizer { opacity: 1; + background: var(--textColorTertiary) } } \ No newline at end of file