king
2021-07-23 c7414c3cc93649479119d51b230c4b8e36884ca7
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
.mk-role-manage {
  background: #fff;
  min-height: 100vh;
  padding: 70px 30px;
 
  .loading-mask {
    position: fixed;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.35);
 
    .ant-spin {
      position: absolute;
      left: 50%;
      top: 50%;
    }
  }
  .mob-header-container {
    padding-right: 0px;
    z-index: 10;
    left: 0;
  }
  .view-wrap {
    width: 100%;
    position: relative;
    display: flex;
 
    .left-view {
      flex: 1;
      width: 50%;
      padding-right: 5px;
      .ant-table-tbody > tr > td {
        padding: 8px 16px;
      }
    }
    .right-view {
      width: 50%;
      padding-left: 20px;
 
      .draggable-tree {
        border: 1px solid #e8e8e8;
        padding: 10px 10px 30px;
        min-height: 400px;
        border-radius: 4px;
        .ant-tree-title {
          max-width: 100%;
          display: inline-block;
          overflow: hidden;
          white-space: nowrap;
          text-overflow: ellipsis;
        }
      }
      .empty {
        border: 1px solid #e8e8e8;
        padding: 100px 10px 30px;
        min-height: 400px;
        border-radius: 4px;
      }
    }
  }
  .ant-table-wrapper {
    .ant-table-body {
      border: 1px solid #e8e8e8;
      border-bottom: 0;
      border-radius: 4px;
    }
    .ant-table-tbody {
      > tr.ant-table-row-selected td {
        background: #bae7ff;
      }
    }
  }
  .app-action {
    >button {
      margin-bottom: 10px;
      margin-right: 15px;
    }
    .ant-input-search {
      width: 250px;
      float: right;
    }
    .save {
      float: right;
      margin-right: 0px;
    }
  }
}