From 6842b7713e2091dc0a666697365813f17decb6d0 Mon Sep 17 00:00:00 2001 From: Stratoula Kalafateli Date: Fri, 26 Jan 2024 16:35:43 +0200 Subject: [PATCH] [ES|QL] Use the border indicator in the resizable button (#175661) ## Summary Closes https://github.com/elastic/kibana/issues/171379 Uses the new border indicator in the editor ![image (19)](https://github.com/elastic/kibana/assets/17003240/d4f8a8ba-6686-454b-bafc-8d286bda3c1b) --- packages/kbn-text-based-editor/src/resizable_button.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/kbn-text-based-editor/src/resizable_button.tsx b/packages/kbn-text-based-editor/src/resizable_button.tsx index 5a52d67780ca6..f421a00c61e74 100644 --- a/packages/kbn-text-based-editor/src/resizable_button.tsx +++ b/packages/kbn-text-based-editor/src/resizable_button.tsx @@ -27,6 +27,7 @@ export function ResizableButton({ onMouseDown={onMouseDownResizeHandler} onKeyDown={onKeyDownResizeHandler} onTouchStart={onMouseDownResizeHandler} + indicator="border" css={css` position: ${editorIsInline ? 'relative' : 'absolute'}; bottom: 0;