Index.less 971 Bytes
Newer Older
DarkForst's avatar
DarkForst committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
.menu_sidebar{
    position: relative;
  width: 100%;
  height: 100%;
}
.right_list{
    //height: 100%;
    position: absolute;
    right: 0;
    width: 77%;
}
.sidebar {
  position: absolute;
  top: 0; bottom: 0; left: 0;
  display: flex;
  width: 250px;
  height: 100%;
}
.sidebarCard {
  display: flex;
  flex: 1;
  flex-direction: column;
}
.border_title{
  padding: 0 10px 5px;
  border-bottom: 1px solid #eee;
}
.treeBox {
  flex: 1;
  overflow: auto;
  border: 1px #eee solid;
  :global {
    .ant-tree-treenode {
      padding: 6px 0;
    }
    .ant-tree.ant-tree-directory .ant-tree-treenode::before{
      bottom: 0 !important;
    }
    .ant-tree-switcher-noop { display: none; }
    .ant-tree-treenode-switcher-open, .ant-tree-treenode-switcher-close {
      border-bottom: 1px #eee solid;
      .ant-tree-switcher-noop { display: inline; }
    }
  }
}
.inputNum{
  width: 100%;
  :global{
    .ant-input-number-handler-wrap{
      display: none;
    }
  }
}