From 2e5fe5427d6db393e0495598ff43d90a052f4791 Mon Sep 17 00:00:00 2001 From: king <18310653075@163.com> Date: 星期日, 28 四月 2024 14:06:42 +0800 Subject: [PATCH] 2024-04-28 --- src/tabviews/custom/components/module/invoice/invoiceTable/index.scss | 32 ++++++++++++++++++-------------- 1 files changed, 18 insertions(+), 14 deletions(-) diff --git a/src/tabviews/custom/components/module/invoice/invoiceTable/index.scss b/src/tabviews/custom/components/module/invoice/invoiceTable/index.scss index d0a87e3..2621d4a 100644 --- a/src/tabviews/custom/components/module/invoice/invoiceTable/index.scss +++ b/src/tabviews/custom/components/module/invoice/invoiceTable/index.scss @@ -6,8 +6,7 @@ right: -40px; top: 5px; font-size: 26px; - border: 1px solid #d9d9d9; - border-radius: 32px; + border: 1px solid var(--inv-color, #13509c); width: 30px; height: 30px; transition: all 0.3s; @@ -22,7 +21,7 @@ top: 13px; width: 12px; height: 1px; - background: #b8b8b8; + background: var(--inv-color, #13509c); transition: all 0.3s; } .plus-line::after { @@ -31,21 +30,26 @@ top: 13px; width: 12px; height: 1px; - background: #b8b8b8; + background: var(--inv-color, #13509c); transform: rotate(90deg); transition: all 0.3s; } - .plus-line:hover { - border-color: #26C281; + + .del-line { + display: none; } - .plus-line:hover::before, .plus-line:hover::after { - background: #26C281; - } - .del-line:hover { - border-color: #ff4d4f; - } - .del-line:hover::before { - background: #ff4d4f; + .mk-tr:hover { + .del-line { + display: flex; + } + .del-line::after { + content: ' '; + position: absolute; + top: -6px; + width: 12px; + height: 40px; + left: -12px; + } } .mk-th, .mk-tr, .mk-total { -- Gitblit v1.8.0