From 20185ab64a165df51515d9fa1c9b12a7a8c55f59 Mon Sep 17 00:00:00 2001 From: king <18310653075@163.com> Date: 星期五, 07 四月 2023 23:11:04 +0800 Subject: [PATCH] 2023-04-07 --- src/menu/components/card/cardcomponent/index.scss | 54 +++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 files changed, 53 insertions(+), 1 deletions(-) diff --git a/src/menu/components/card/cardcomponent/index.scss b/src/menu/components/card/cardcomponent/index.scss index d8fcee1..930a06f 100644 --- a/src/menu/components/card/cardcomponent/index.scss +++ b/src/menu/components/card/cardcomponent/index.scss @@ -45,4 +45,56 @@ } } } -} \ No newline at end of file +} + +.card-control { + position: absolute; + top: 0px; + left: 0px; + .anticon-tool { + position: absolute; + left: 1px; + top: 1px; + padding: 1px; + z-index: 2; + font-size: 16px; + cursor: pointer; + 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; + } +} +// 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-table-header { + .sort-wrap { + display: inline; + } +} -- Gitblit v1.8.0