king
2025-05-13 1a176e4bdba485301385caac1a29102e598d25cc
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
.model-datasource-setting-form-box {
  position: relative;
 
  .model-setting-form {
    .data-source {
      .ant-form-item-label {
        width: 11%;
      }
      .ant-form-item-control-wrapper {
        width: 89%;
      }
      .CodeMirror {
        height: 150px;
      }
    }
    .mk-dot {
      display: inline-block;
      width: 4px;
      height: 4px;
      border-radius: 4px;
      background-color: orange;
      vertical-align: top;
      position: relative;
    }
    .mk-dot::before {
      content: ' ';
      display: block;
      position: absolute;
      top: -5px;
      bottom: -10px;
      left: -10px;
      right: -5px;
    }
  }
  .ant-radio-group {
    white-space: nowrap;
  }
  .compact {
    padding-left: 0px!important;
    .ant-radio-group {
      span.ant-radio + * {
        padding-left: 6px;
        padding-right: 6px;
      }
    }
  }
  .outer-interface {
    .ant-form-item-label {
      width: 10.5%;
    }
    .ant-form-item-control-wrapper {
      width: 89.5%;
    }
  }
 
  .process-btn {
    position: absolute;
    top: -22px;
    font-size: 12px;
    right: 15px;
    color: #1890ff;
    cursor: pointer;
  }
  .ant-input-group-addon {
    padding: 0;
    .anticon-plus {
      cursor: pointer;
      padding: 7px 9px;
    }
  }
  .ant-form-item-control.has-error {
    .ant-input-group-addon {
      display: none;
    }
  }
}
.mk-flow-type {
  .ant-modal-body {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.85);
    text-align: center;
    padding: 40px 0 20px;
  }
  .ant-modal-footer {
    border: 0;
    text-align: center;
    padding: 25px 16px;
 
    button + button {
      margin-left: 15px;
    }
  }
}