From f64a620b22975ced9d58b022a091fb8f5fdf8a7d Mon Sep 17 00:00:00 2001 From: turingcat Date: Wed, 22 Mar 2023 19:59:04 +0800 Subject: [PATCH] add table tool style --- src/editor/assets/css/table/table.css | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/src/editor/assets/css/table/table.css b/src/editor/assets/css/table/table.css index 7b47297..7ec8293 100644 --- a/src/editor/assets/css/table/table.css +++ b/src/editor/assets/css/table/table.css @@ -82,4 +82,23 @@ z-index: 9; position: absolute; border: 1px dotted #000000; -} \ No newline at end of file +} + +.ce-table-tool__line { + position: absolute; + z-index: 1; + background: transparent; + pointer-events: none; +} + +.ce-table-tool__rline__resize { + position: absolute; + cursor: row-resize; + pointer-events: auto; +} + +.ce-table-tool__cline__resize { + position: absolute; + cursor: col-resize; + pointer-events: auto; +}