king
3 天以前 047dbd742341e268ca772eda8d2ff0b6ba09cb44
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
.editboard {
  position: fixed;
  z-index: 1070;
  padding-top: 48px;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background: rgba(0, 0, 0, 0.35);
  .workplace {
    position: relative;
    width: calc(100vw - 235px);
    height: 100%;
    overflow-y: auto;
    left: 235px;
    background: #ffffff;
 
    .top-btn {
      position: absolute;
      z-index: 1;
      top: 12px;
      right: 20px;
      cursor: pointer;
    }
    .top-btn.submit {
      right: 100px;
    }
    
  }
  .workplace::-webkit-scrollbar {
    width: 7px;
  }
  .workplace::-webkit-scrollbar-thumb {
    border-radius: 5px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.13);
    background: rgba(0, 0, 0, 0.13);
  }
  .workplace::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05);
    border-radius: 3px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    background: rgba(0, 0, 0, 0);
  }
}
.mk-template-modal {
  width: calc(100vw - 235px)!important;
  left: 117px;
  top: 48px;
  padding-bottom: 0px;
  .ant-modal-close {
    .ant-modal-close-x {
      height: 50px;
      line-height: 50px;
    }
  }
  .ant-modal-header {
    display: none;
  }
  .ant-modal-footer {
    display: none;
  }
  .ant-modal-body {
    padding: 0px;
 
    .ant-tabs-tabpane {
      height: calc(100vh - 110px);
      overflow-y: auto;
      padding: 0 15px 20px 15px;
 
      .ant-col {
        padding: 10px;
      }
      .ant-card-head {
        padding: 0 10px;
      }
      .ant-col.disabled {
        cursor: not-allowed;
        .ant-card-head-title {
          color: #959595;
        }
        .card-operation {
          display: none;
        }
        img {
          cursor: not-allowed;
        }
      }
      .ant-card-head-title {
        text-align: center;
        .title-wrap {
          position: relative;
          top: -8px;
          height: 30px;
          div {
            overflow: hidden;
            text-overflow: ellipsis;
          }
        }
      }
      .ant-card-body {
        padding: 2px;
        position: relative;
        text-align: center;
        overflow: hidden;
        .card-operation {
          position: absolute;
          right: 0px;
          top: 0;
          height: 0px;
          overflow: hidden;
          transition: height 0.3s;
          button {
            height: 30px;
            padding: 0 10px;
            margin-top: 5px;
            margin-right: 10px;
            display: none;
          }
        }
      }
      .ant-card-body:hover {
        .card-operation {
          height: 40px;
          button {
            display: inline-block;
          }
        }
      }
      img {
        max-width: 100%;
        cursor: zoom-in;
      }
    }
    .ant-tabs-tabpane::-webkit-scrollbar {
      width: 7px;
    }
    .ant-tabs-tabpane::-webkit-scrollbar-thumb {
      border-radius: 5px;
      box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.13);
      background: rgba(0, 0, 0, 0.13);
    }
    .ant-tabs-tabpane::-webkit-scrollbar-track {
      box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05);
      border-radius: 3px;
      border: 1px solid rgba(0, 0, 0, 0.07);
      background: rgba(0, 0, 0, 0);
    }
  }
}