ny
昨天 282fbc6488f4e8ceb5fda759f963ee88fbf7b999
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
.jnpf-basic-generator {
  .right-board {
    flex-shrink: 0;
    width: 340px;
    background-color: var(--component-background);
 
    .field-box {
      position: relative;
      box-sizing: border-box;
      height: calc(100% - 42px);
      overflow: hidden;
 
      & > .scrollbar > .scrollbar__wrap > .scrollbar__view {
        padding: 10px;
      }
    }
 
    .right-board-form {
      .ant-form-item {
        margin-bottom: 18px;
      }
 
      .right-radio {
        .ant-radio-button-wrapper {
          padding: 0 11px;
        }
      }
 
      .btn-config-list {
        .btn-cell {
          display: flex;
          align-items: center;
          margin-bottom: 18px;
 
          .ant-checkbox-wrapper {
            flex-shrink: 0;
            width: 100px;
          }
        }
      }
 
      .reg-item {
        position: relative;
        padding: 12px 6px;
        background-color: var(--app-content-background);
        border-radius: 4px;
 
        .close-btn {
          position: absolute;
          top: -6px;
          right: -6px;
          z-index: 1;
          display: block;
          width: 16px;
          height: 16px;
          font-size: 12px;
          line-height: 16px;
          color: #fff;
          text-align: center;
          cursor: pointer;
          background: rgb(0 0 0 / 20%);
          border-radius: 50%;
 
          i {
            font-size: 12px;
          }
 
          &:hover {
            background: var(--error-color);
          }
        }
 
        & + .reg-item {
          margin-top: 18px;
        }
      }
 
      .options-list {
        margin-bottom: -10px;
 
        .scrollbar__wrap {
          margin-bottom: 0 !important;
        }
 
        .select-item {
          box-sizing: border-box;
          display: flex;
          border: 1px dashed var(--component-background);
 
          & .ant-input + .ant-input {
            margin-left: 4px;
          }
 
          .ant-select {
            width: 100%;
          }
 
          & + .select-item {
            margin-top: 4px;
          }
 
          &.sortable-chosen {
            border: 1px dashed var(--primary-color);
          }
 
          .select-line-icon {
            padding: 0 4px;
            font-size: 22px;
            line-height: 31px;
            color: #606266;
 
            .icon-ym-darg {
              display: inline-block;
              font-size: 20px;
              line-height: 31px;
            }
 
            .icon-ym-btn-clearn {
              font-size: 18px;
            }
          }
 
          .close-btn {
            display: flex;
            align-items: center;
            height: 32px;
            color: var(--error-color);
            cursor: pointer;
          }
 
          .option-drag {
            cursor: move;
          }
        }
 
        .add-btn {
          padding-left: 27px;
        }
 
        .jnpf-tree__name {
          width: calc(100% - 60px);
        }
      }
    }
  }
}
 
.select-item-add {
  text-align: center;
 
  .ant-btn {
    padding: 4px 12px !important;
  }
}
 
.ant-select-item-option-content {
  .custom-option-left {
    float: left;
  }
 
  .custom-option-right {
    float: right;
    margin-left: 20px;
    font-size: 13px;
    color: var(--text-color-secondary);
  }
}