miniMenu.less 1.44 KB
Newer Older
1 2
.box {
  height: calc(100vh - 240px) !important;
Maofei94's avatar
Maofei94 committed
3 4
  display: flex;
}
5
.left {
Maofei94's avatar
Maofei94 committed
6
  min-width: 300px;
Maofei94's avatar
Maofei94 committed
7
  width: 350px;
Maofei94's avatar
Maofei94 committed
8 9 10
  min-height: 100%;
  border: 1px solid #eee;
  padding: 10px;
11
  .ant-tree-node-content-wrapper {
Maofei94's avatar
Maofei94 committed
12 13
    display: flex;
    align-items: center;
14
    .ant-tree-iconEle {
Maofei94's avatar
Maofei94 committed
15 16 17
      display: flex;
      align-items: center;
    }
18
    .ant-tree-title {
Maofei94's avatar
Maofei94 committed
19 20 21
      width: 100%;
    }
  }
22
  .leftTop {
Maofei94's avatar
Maofei94 committed
23 24 25 26
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    justify-content: space-between;
27
    .tRight {
Maofei94's avatar
Maofei94 committed
28 29
      display: flex;
      align-items: center;
30
      .icon1 {
Maofei94's avatar
Maofei94 committed
31 32 33
        font-size: 20px;
        margin-right: 10px;
      }
34
      .icon2 {
Maofei94's avatar
Maofei94 committed
35 36 37
        font-size: 18px;
        margin-right: 5px;
      }
38
      .icon:hover {
Maofei94's avatar
Maofei94 committed
39 40 41 42 43
        cursor: pointer;
      }
    }
  }
}
44
.middle {
Maofei94's avatar
Maofei94 committed
45
  min-width: 500px;
46
  width: 100%;
Maofei94's avatar
Maofei94 committed
47
  min-height: 100%;
48
  overflow-y: scroll;
Maofei94's avatar
Maofei94 committed
49 50
  border: 1px solid #eee;
  padding: 10px;
51
  margin: 0 0 0 10px;
Maofei94's avatar
Maofei94 committed
52
}
53
.title {
Maofei94's avatar
Maofei94 committed
54 55 56 57
  display: flex;
  align-items: center;
  width: 100%;
}
58
.tip {
Maofei94's avatar
Maofei94 committed
59 60
  display: none;
}
61 62
.title:hover {
  .tip {
Maofei94's avatar
Maofei94 committed
63 64 65 66 67 68
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
  }
}
69 70 71 72
.fs {
  font-size: 18px;
  margin-left: 10px;
}
73
.fsize {
Maofei94's avatar
Maofei94 committed
74 75
  font-size: 18px;
  margin-left: 10px;
Maofei94's avatar
Maofei94 committed
76
}
77
.rightBox {
Maofei94's avatar
Maofei94 committed
78
  min-width: 200px;
Maofei94's avatar
Maofei94 committed
79
  // width: 600px;
Maofei94's avatar
Maofei94 committed
80
  width: 100%;
Maofei94's avatar
Maofei94 committed
81 82 83
  min-height: 100%;
  border: 1px solid #eee;
  padding: 10px;
Maofei94's avatar
Maofei94 committed
84
}
85 86
:global {
  .ant-tree .ant-tree-node-content-wrapper .ant-tree-iconEle .anticon-folder {
Maofei94's avatar
Maofei94 committed
87
  }
88
}