king
2025-04-21 f3d4db769ba9b51b799d981511a710fd443d0e08
src/views/systemproc/proc/index.scss
@@ -1,18 +1,80 @@
.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 {
@@ -47,6 +109,19 @@
      background-color: #ffffff;
    }
  }
  .code-mirror-wrap .anticon-font-size {
    position: absolute;
  }
  .anticon-swap {
    position: absolute;
    z-index: 11;
    left: auto;
    right: 10px;
    top: auto;
    bottom: 20px;
  }
}
.mk-create-func {