From 8137ac074ce6370e4b46295e7acf9c7870ef82d2 Mon Sep 17 00:00:00 2001 From: king <18310653075@163.com> Date: 星期五, 17 二月 2023 22:19:23 +0800 Subject: [PATCH] 2023-02-17 --- src/menu/components/card/doublecardcomponent/index.scss | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 47 insertions(+), 0 deletions(-) diff --git a/src/menu/components/card/doublecardcomponent/index.scss b/src/menu/components/card/doublecardcomponent/index.scss index a32dfaa..93f72bf 100644 --- a/src/menu/components/card/doublecardcomponent/index.scss +++ b/src/menu/components/card/doublecardcomponent/index.scss @@ -62,3 +62,50 @@ background: rgba(255, 255, 255, 0.55); } } + +.card-item { + >.circle-select { + position: relative; + display: none; + width: 16px; + height: 16px; + border: 1px solid #cccccc; + border-radius: 50%; + box-sizing: content-box; + margin: auto; + margin-right: 5px; + background-color: #ffffff; + transition: border-color 0.2s; + cursor: pointer; + } + >.anticon-up { + position: absolute; + bottom: 10px; + right: 10px; + display: none; + } + >.anticon-plus-square { + margin: auto 5px; + font-size: 18px; + } +} +// square +.card-item.mk-checkable { + display: flex; + .circle-select { + display: inline-block; + } + .model-menu-card-cell-list { + flex: 1; + } +} +.card-item.mk-checkable.square { + .circle-select { + border-radius: 0; + } +} +.card-item.mk-unfold, .card-item.mk-collapse { + >.anticon-up { + display: inline-block; + } +} -- Gitblit v1.8.0