king
2021-07-28 2e3d8e7d5715862733e43070e7df73b48a81948f
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
.rolemanage {
  min-height: calc(100vh - 94px);
  height: 100%;
  position: relative;
  padding: 15px;
  
  .role-list {
    min-height: calc(100vh - 125px);
    box-shadow: 0px 0px 2px #eeeeee;
    .ant-card-head {
      padding: 0 10px;
      .ant-card-head-title {
        padding: 15px 0 10px;
        .role-title {
          display: inline-block;
          width: 100%;
          color: rgba(0, 0, 0, 0.65);
          .anticon-bank {
            margin-right: 5px;
          }
          .ant-input-affix-wrapper {
            width: calc(100% - 140px);
            max-width: 130px;
            margin-top: -2px;
            float: right;
            input {
              border-radius: 20px;
              // border: 1px solid #e9e9e9;
              height: 30px;
            }
          }
        }
      }
    }
    .ant-card-body {
      padding: 0px;
      .ant-menu-inline {
        border-right: 0;
        margin-top: 2px;
      }
    }
  }
  > .ant-spin {
    position: fixed;
    left: calc(50vw - 22px);
    top: calc(50vh - 70px);
    z-index: 1;
  }
  .ant-tabs-bar.ant-tabs-card-bar {
    .ant-tabs-tab {
      min-width: 120px;
      text-align: center;
    }
  }
  .ant-tabs.ant-tabs-line {
    background: #fff;
    min-height: calc(100vh - 125px);
    box-shadow: 0px 0px 2px #eeeeee;
    .ant-tabs-tab {
      padding: 19px 16px 14px;
    }
    .ant-tabs-tab-active.ant-tabs-tab {
      cursor: default;
    }
    .ant-tabs-extra-content {
      padding: 5px 20px 0px 0px;
    }
    .ant-tabs-content {
      .ant-tree li {
        padding: 4px 0px 0px;
      }
      .ant-tree-child-tree > li:first-child {
        padding-top: 6px;
      }
      .load-tree {
        margin-left: 15px;
      }
      .nodata {
        line-height: 50px;
        text-align: center;
        color: #bcbcbc;
      }
      .submitBtn {
        position: absolute;
        right: 10px;
        top: 15px;
      }
    }
  }
  .app-select {
    position: absolute;
    top: 0px;
    right: 0px;
    .mk-form-item {
      display: inline-block;
      width: 230px;
      label {
        width: 60px;
        display: inline-block;
        text-align: right;
        padding-right: 5px;
        white-space: nowrap;
      }
      .ant-select {
        width: 150px;
      }
    }
  }
}