From 1b60547cb25f5c0a4371e5be0517adf092f2dc62 Mon Sep 17 00:00:00 2001 From: king <18310653075@163.com> Date: 星期六, 28 一月 2023 16:08:21 +0800 Subject: [PATCH] 2023-01-28 --- src/tabviews/custom/components/module/voucher/voucherTable/index.scss | 45 +++++++++++++++++++++++++++++++++++++++------ 1 files changed, 39 insertions(+), 6 deletions(-) diff --git a/src/tabviews/custom/components/module/voucher/voucherTable/index.scss b/src/tabviews/custom/components/module/voucher/voucherTable/index.scss index 4d4702a..987cb80 100644 --- a/src/tabviews/custom/components/module/voucher/voucherTable/index.scss +++ b/src/tabviews/custom/components/module/voucher/voucherTable/index.scss @@ -175,12 +175,12 @@ bottom: 0px; border: 1px solid #1890ff; } - .anticon { - color: #ff4d4f; - position: absolute; - right: 3px; - top: calc(50% - 8px); - } + // .anticon { + // color: #ff4d4f; + // position: absolute; + // right: 3px; + // top: calc(50% - 8px); + // } } td.pointer { position: relative; @@ -196,6 +196,39 @@ right: 0; } } + + .anticon-plus { + position: absolute; + left: 0px; + height: 60px; + top: 0px; + line-height: 60px; + width: 25px; + color: #26C281; + cursor: pointer; + display: none; + } + .anticon-close { + position: absolute; + right: 0px; + height: 60px; + top: 0px; + line-height: 60px; + width: 25px; + color: #ff4d4f; + cursor: pointer; + display: none; + } + tr:hover { + .anticon-plus { + left: -25px; + display: inline-block; + } + .anticon-close { + right: -25px; + display: inline-block; + } + } } .edit-table-dropdown { -- Gitblit v1.8.0