From 539ac1c33f5733a1e43edd294bc3c6c51006578f Mon Sep 17 00:00:00 2001 From: king <18310653075@163.com> Date: 星期四, 05 一月 2023 09:44:55 +0800 Subject: [PATCH] Merge branch 'develop' --- src/views/systemproc/proc/index.scss | 91 +++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 90 insertions(+), 1 deletions(-) diff --git a/src/views/systemproc/proc/index.scss b/src/views/systemproc/proc/index.scss index d8d5749..653bc5c 100644 --- a/src/views/systemproc/proc/index.scss +++ b/src/views/systemproc/proc/index.scss @@ -1,12 +1,89 @@ .mk-proc-wrap { position: relative; padding: 65px 20px 0px; + display: flex; + .searh-list { + width: 0px; + margin-right: 15px; + overflow: hidden; + transition: width 0.2s; + + .ant-input-search { + width: 300px; + } + .proc-list { + width: 300px; + height: calc(100vh - 128px); + overflow-y: auto; + overflow-x: hidden; + margin-top: 10px; + border: 1px solid #e8e8e8; + + .proc-item { + padding: 5px; + margin: 5px; + word-break: break-all; + cursor: pointer; + } + .ant-empty { + margin-top: 50px; + } + } + .proc-list::-webkit-scrollbar { + width: 7px; + height: 7px; + } + .proc-list::-webkit-scrollbar-thumb { + border-radius: 5px; + box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.13); + background: rgba(0, 0, 0, 0.13); + } + .proc-list::-webkit-scrollbar-track { + box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05); + border-radius: 3px; + border: 1px solid rgba(0, 0, 0, 0.07); + background: rgba(0, 0, 0, 0); + } + } + .searh-list.open { + width: 300px; + } + .proc-wrap { + flex: 1; + } .control-wrap { display: flex; .search-wrap { - width: 300px; + width: 360px; + display: flex; + + .ant-btn[disabled] { + background-color: #1890ff!important; + border-color: #1890ff!important; + color: #ffffff!important; + opacity: 0.5; + } + .ant-input { + border-radius: 0; + } + >.anticon { + line-height: 30px; + width: 35px; + border: 1px solid #e8e8e8; + cursor: pointer; + border-top-left-radius: 4px; + border-bottom-left-radius: 4px; + } + } + .action-wrap { + text-align: right; + flex: 1; + + .ant-btn { + margin-left: 20px; + } .ant-btn[disabled] { background-color: #1890ff!important; @@ -33,3 +110,15 @@ } } } + +.mk-create-func { + .ant-modal-body { + min-height: 180px; + } + .ant-form-item { + display: flex; + .ant-form-item-control-wrapper { + flex: 1; + } + } +} -- Gitblit v1.8.0