miniMenu.less 1.36 KB
Newer Older
1
.box {
2
  height: 100%;
Maofei94's avatar
Maofei94 committed
3 4
  display: flex;
}
5

6
.left {
Maofei94's avatar
Maofei94 committed
7
  min-width: 300px;
Maofei94's avatar
Maofei94 committed
8
  width: 350px;
Maofei94's avatar
Maofei94 committed
9 10 11
  min-height: 100%;
  border: 1px solid #eee;
  padding: 10px;
12 13 14



15
  .ant-tree-node-content-wrapper {
Maofei94's avatar
Maofei94 committed
16 17
    display: flex;
    align-items: center;
18

19
    .ant-tree-iconEle {
Maofei94's avatar
Maofei94 committed
20 21
      display: flex;
      align-items: center;
22
      line-height: 20px;
Maofei94's avatar
Maofei94 committed
23
    }
24

25
    .ant-tree-title {
Maofei94's avatar
Maofei94 committed
26 27 28
      width: 100%;
    }
  }
29

30
  .leftTop {
Maofei94's avatar
Maofei94 committed
31 32 33 34
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    justify-content: space-between;
35

36
    .tRight {
Maofei94's avatar
Maofei94 committed
37 38
      display: flex;
      align-items: center;
39

40
      .icon1 {
Maofei94's avatar
Maofei94 committed
41 42 43
        font-size: 20px;
        margin-right: 10px;
      }
44

45
      .icon2 {
Maofei94's avatar
Maofei94 committed
46 47 48
        font-size: 18px;
        margin-right: 5px;
      }
49

50
      .icon:hover {
Maofei94's avatar
Maofei94 committed
51 52 53 54 55
        cursor: pointer;
      }
    }
  }
}
56

57
.middle {
Maofei94's avatar
Maofei94 committed
58
  min-width: 500px;
59
  width: 100%;
Maofei94's avatar
Maofei94 committed
60
  min-height: 100%;
61
  overflow-y: scroll;
Maofei94's avatar
Maofei94 committed
62 63
  border: 1px solid #eee;
  padding: 10px;
64
  margin: 0 0 0 10px;
Maofei94's avatar
Maofei94 committed
65
}
66

67
.title {
Maofei94's avatar
Maofei94 committed
68 69 70 71
  display: flex;
  align-items: center;
  width: 100%;
}
72

73
.tip {
Maofei94's avatar
Maofei94 committed
74 75
  display: none;
}
76

77 78
.title:hover {
  .tip {
Maofei94's avatar
Maofei94 committed
79 80 81 82 83 84
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
  }
}
85

86 87 88 89
.fs {
  font-size: 18px;
  margin-left: 10px;
}
90

91
.fsize {
Maofei94's avatar
Maofei94 committed
92 93
  font-size: 18px;
  margin-left: 10px;
Maofei94's avatar
Maofei94 committed
94
}
95

96
.rightBox {
Maofei94's avatar
Maofei94 committed
97
  min-width: 200px;
Maofei94's avatar
Maofei94 committed
98
  // width: 600px;
Maofei94's avatar
Maofei94 committed
99
  width: 100%;
Maofei94's avatar
Maofei94 committed
100 101 102
  min-height: 100%;
  border: 1px solid #eee;
  padding: 10px;
103
}