cc-core-cli 1.0.138 → 1.0.140
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/template/admin/next.config.js +16 -56
- package/template/admin/pages/_app.js +5 -4
- package/template/admin/public/private-image-worker.js +1 -1
- package/template/admin/public/static/styles/activity_log.css +133 -0
- package/template/admin/public/static/styles/{calendar.less → calendar.css} +84 -26
- package/template/admin/public/static/styles/collections.css +120 -0
- package/template/admin/public/static/styles/compute_field.css +244 -0
- package/template/admin/public/static/styles/custom-antd.css +109 -0
- package/template/admin/public/static/styles/{custom_icon.less → custom_icon.css} +94 -70
- package/template/admin/public/static/styles/{date_search.less → date_search.css} +11 -15
- package/template/admin/public/static/styles/datepicker.css +301 -0
- package/template/admin/public/static/styles/detail.css +2645 -0
- package/template/admin/public/static/styles/{editTable.less → editTable.css} +12 -5
- package/template/admin/public/static/styles/entities.css +864 -0
- package/template/admin/public/static/styles/filter.css +18 -0
- package/template/admin/public/static/styles/filter_new.css +152 -0
- package/template/admin/public/static/styles/hook.css +140 -0
- package/template/admin/public/static/styles/import_export.css +48 -0
- package/template/admin/public/static/styles/input.css +77 -0
- package/template/admin/public/static/styles/layout.css +1465 -0
- package/template/admin/public/static/styles/login.css +269 -0
- package/template/admin/public/static/styles/mainheader.css +45 -0
- package/template/admin/public/static/styles/matrix.css +90 -0
- package/template/admin/public/static/styles/menu.css +60 -0
- package/template/admin/public/static/styles/permission_denied.css +13 -0
- package/template/admin/public/static/styles/pipeline.css +82 -0
- package/template/admin/public/static/styles/print_template.css +659 -0
- package/template/admin/public/static/styles/rabbitmq.css +5 -0
- package/template/admin/public/static/styles/restful.css +19 -0
- package/template/admin/public/static/styles/setting.css +480 -0
- package/template/admin/public/static/styles/style.css +1632 -0
- package/template/admin/public/static/styles/style_backup.css +1616 -0
- package/template/admin/public/static/styles/style_clean.css +51 -0
- package/template/admin/public/static/styles/system.css +11 -0
- package/template/admin/public/static/styles/theme-override.css +118 -0
- package/template/admin/public/static/styles/tree_theme_minimal.css +284 -0
- package/template/admin/public/static/styles/versioning_control.css +16 -0
- package/template/admin/public/static/styles/wysiwyg.css +3 -0
- package/template/admin/theme/main.css +38 -0
- package/template/admin/theme/vars.css +10 -0
- package/template/admin/public/static/styles/activity_log.less +0 -157
- package/template/admin/public/static/styles/collections.less +0 -123
- package/template/admin/public/static/styles/compute_field.less +0 -250
- package/template/admin/public/static/styles/custom-antd.less +0 -80
- package/template/admin/public/static/styles/datepicker.less +0 -323
- package/template/admin/public/static/styles/detail.less +0 -2690
- package/template/admin/public/static/styles/entities.less +0 -897
- package/template/admin/public/static/styles/filter.less +0 -24
- package/template/admin/public/static/styles/filter_new.less +0 -154
- package/template/admin/public/static/styles/hook.less +0 -142
- package/template/admin/public/static/styles/import_export.less +0 -62
- package/template/admin/public/static/styles/input.less +0 -386
- package/template/admin/public/static/styles/layout.less +0 -1455
- package/template/admin/public/static/styles/login.less +0 -263
- package/template/admin/public/static/styles/mainheader.less +0 -32
- package/template/admin/public/static/styles/matrix.less +0 -105
- package/template/admin/public/static/styles/permission_denied.less +0 -13
- package/template/admin/public/static/styles/pipeline.less +0 -84
- package/template/admin/public/static/styles/print_template.less +0 -730
- package/template/admin/public/static/styles/rabbitmq.less +0 -3
- package/template/admin/public/static/styles/restful.less +0 -22
- package/template/admin/public/static/styles/setting.less +0 -534
- package/template/admin/public/static/styles/style.less +0 -1957
- package/template/admin/public/static/styles/system.less +0 -11
- package/template/admin/public/static/styles/tree_theme_minimal.less +0 -321
- package/template/admin/public/static/styles/versioning_control.less +0 -24
- package/template/admin/public/static/styles/wysiwyg.less +0 -8
- /package/template/admin/public/static/styles/{custom.less → custom.css} +0 -0
|
@@ -0,0 +1,269 @@
|
|
|
1
|
+
/* New login.css without LESS imports */
|
|
2
|
+
@import url("./custom-antd.css");
|
|
3
|
+
|
|
4
|
+
.layout-login {
|
|
5
|
+
background-color: #ffffff;
|
|
6
|
+
min-height: 100vh;
|
|
7
|
+
flex-direction: column;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.logo-layout {
|
|
11
|
+
padding: 0rem 4rem;
|
|
12
|
+
justify-content: center;
|
|
13
|
+
display: flex;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.logo-layout .logo-content {
|
|
17
|
+
width: 100%;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.logo-layout-v3 {
|
|
21
|
+
justify-content: center;
|
|
22
|
+
display: flex;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
@media only screen and (max-width: 768px) {
|
|
26
|
+
.logo-layout {
|
|
27
|
+
padding: 0rem 1rem;
|
|
28
|
+
width: 100%;
|
|
29
|
+
height: 100vh;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.logo-layout-v3 {
|
|
33
|
+
padding: 0rem 1rem;
|
|
34
|
+
width: 100%;
|
|
35
|
+
height: 100vh;
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
@media only screen and (min-width: 768px) and (max-width: 992px) {
|
|
40
|
+
.logo-layout {
|
|
41
|
+
padding: 0rem 4rem;
|
|
42
|
+
width: 100%;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.logo-layout-v3 {
|
|
46
|
+
padding: 0rem 4rem;
|
|
47
|
+
width: 100%;
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
@media only screen and (min-width: 992px) {
|
|
52
|
+
.logo-layout {
|
|
53
|
+
padding: 0rem 4rem;
|
|
54
|
+
justify-content: center;
|
|
55
|
+
display: flex;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.logo-layout .logo-content {
|
|
59
|
+
width: 100%;
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.login-form {
|
|
64
|
+
overflow-y: hidden;
|
|
65
|
+
padding: 1.5rem;
|
|
66
|
+
border-radius: var(--border-radius-base);
|
|
67
|
+
width: 100%;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.login-form .form-login-authentication {
|
|
71
|
+
margin-bottom: 15px;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.login-form .image-center {
|
|
75
|
+
max-width: 100%;
|
|
76
|
+
margin-top: 8px;
|
|
77
|
+
margin-bottom: 16px;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.login-form h3.ant-typography {
|
|
81
|
+
text-align: center;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.login-form button {
|
|
85
|
+
width: 100%;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.login-form a.ant-typography {
|
|
89
|
+
color: var(--info-color);
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.login-form .ant-btn-google,
|
|
93
|
+
.login-form .ant-btn-cognito,
|
|
94
|
+
.login-form .ant-btn-azure-ad,
|
|
95
|
+
.login-form .ant-btn-social {
|
|
96
|
+
display: flex;
|
|
97
|
+
justify-content: center;
|
|
98
|
+
align-items: center;
|
|
99
|
+
height: 44px;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.login-form .ant-btn-google img,
|
|
103
|
+
.login-form .ant-btn-cognito img,
|
|
104
|
+
.login-form .ant-btn-azure-ad img,
|
|
105
|
+
.login-form .ant-btn-social img {
|
|
106
|
+
height: 20px;
|
|
107
|
+
width: auto;
|
|
108
|
+
margin-right: 10px;
|
|
109
|
+
margin-top: 1px;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.login-form .ant-btn-id-connect {
|
|
113
|
+
display: flex;
|
|
114
|
+
justify-content: center;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.login-form .ant-btn-id-connect img {
|
|
118
|
+
height: 20px;
|
|
119
|
+
width: auto;
|
|
120
|
+
margin-right: 10px;
|
|
121
|
+
margin-top: 1px;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.login-form .ant-dropdown-trigger.languages .anticon {
|
|
125
|
+
display: none;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.login-modal {
|
|
129
|
+
max-width: 500px !important;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.login-modal .description {
|
|
133
|
+
margin-top: 10px;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.login-modal .button {
|
|
137
|
+
margin-top: 15px;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
.login-modal .qrcode-description {
|
|
141
|
+
margin-bottom: 20px;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.login-modal .qrcode-container {
|
|
145
|
+
padding: 20px 50px 10px;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.login-modal .modal-container {
|
|
149
|
+
padding: 20px 50px 40px;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.login-modal .modal-flow-container {
|
|
153
|
+
padding: 20px;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.login-modal .modal-flow-container .login-form {
|
|
157
|
+
padding: 0px;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.login-modal .logo {
|
|
161
|
+
width: 100px;
|
|
162
|
+
margin-bottom: 50px;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
.login-modal .modal-title {
|
|
166
|
+
font-weight: 600;
|
|
167
|
+
font-size: 16px;
|
|
168
|
+
color: black;
|
|
169
|
+
text-align: center;
|
|
170
|
+
margin-bottom: 10px;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
.login-modal .login-otp-container {
|
|
174
|
+
flex-direction: row;
|
|
175
|
+
justify-content: space-between;
|
|
176
|
+
margin-top: 30px;
|
|
177
|
+
width: 100%;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
@media (max-width: 768px) {
|
|
181
|
+
.login-modal .login-otp-container {
|
|
182
|
+
margin-top: 14px;
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
.login-modal .login-otp-container input {
|
|
187
|
+
width: 35px !important;
|
|
188
|
+
max-width: 100%;
|
|
189
|
+
text-align: center;
|
|
190
|
+
border-top: none;
|
|
191
|
+
border-right: none;
|
|
192
|
+
border-left: none;
|
|
193
|
+
border-bottom: 1px solid #979797;
|
|
194
|
+
font-size: 22px;
|
|
195
|
+
font-weight: 500;
|
|
196
|
+
font-stretch: normal;
|
|
197
|
+
font-style: normal;
|
|
198
|
+
line-height: normal;
|
|
199
|
+
letter-spacing: normal;
|
|
200
|
+
text-align: center;
|
|
201
|
+
color: #000000;
|
|
202
|
+
outline: none;
|
|
203
|
+
border-radius: 0;
|
|
204
|
+
padding: 0;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
.login-modal .login-otp-container input.active,
|
|
208
|
+
.login-modal .login-otp-container input:focus {
|
|
209
|
+
border-top: none;
|
|
210
|
+
border-right: none;
|
|
211
|
+
border-left: none;
|
|
212
|
+
border-bottom: 2px solid black !important;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
.login-modal .login-otp-container input:disabled,
|
|
216
|
+
.login-modal .login-otp-container input[disabled] {
|
|
217
|
+
border-bottom: 2px #979797 solid;
|
|
218
|
+
background-color: #ffffff;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
.login-modal .login-otp-container input:disabled.active,
|
|
222
|
+
.login-modal .login-otp-container input[disabled].active {
|
|
223
|
+
border-bottom: 2px black solid;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
.forgot-password-description {
|
|
227
|
+
color: black;
|
|
228
|
+
text-align: "center";
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
.forgot-password-title {
|
|
232
|
+
margin-top: 0;
|
|
233
|
+
padding-top: 0;
|
|
234
|
+
text-align: center;
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
.login-input .ant-input {
|
|
238
|
+
height: 34px;
|
|
239
|
+
font-size: 16px !important;
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
.login-input .ant-form-item-feedback-icon-success {
|
|
243
|
+
display: none;
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
.login-input-password .ant-form-item-feedback-icon-success {
|
|
247
|
+
display: none;
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
.login-input-password .ant-input-suffix {
|
|
251
|
+
padding-right: 0px !important;
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
.login-input-password .ant-input-password {
|
|
255
|
+
height: 44px;
|
|
256
|
+
font-size: 16px;
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
.button_login {
|
|
260
|
+
height: 44px;
|
|
261
|
+
font-size: 16px;
|
|
262
|
+
background: var(--primary-color) !important;
|
|
263
|
+
border-color: var(--primary-color) !important;
|
|
264
|
+
color: white !important;
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
.button_login:hover {
|
|
268
|
+
opacity: 70%;
|
|
269
|
+
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
/* New mainheader.css without LESS imports */
|
|
2
|
+
@import url("./custom-antd.css");
|
|
3
|
+
|
|
4
|
+
.ant-popover-inner {
|
|
5
|
+
padding: 0 !important;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.ant-popover-inner-content {
|
|
9
|
+
padding: 12px !important;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.ant-popover.ant-popover-placement-bottomRight {
|
|
13
|
+
.ant-popover-inner-content {
|
|
14
|
+
padding: 0 !important;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.ant-popover-inner-content .menu-header-account.ant-menu-vertical {
|
|
18
|
+
border-right: none;
|
|
19
|
+
border-radius: 5px;
|
|
20
|
+
box-shadow: 0 18px 35px rgba(50, 50, 93, .1), -1px 0 15px rgba(0, 0, 0, .07);
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.ant-popover-inner-content .menu-header-account.ant-menu-vertical .ant-menu-item {
|
|
24
|
+
margin: 0;
|
|
25
|
+
width: 100%;
|
|
26
|
+
border-radius: 0px;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.ant-popover-inner-content .menu-header-account.ant-menu-vertical .ant-menu-item:first-child {
|
|
30
|
+
border-top-left-radius: 3px;
|
|
31
|
+
border-top-right-radius: 3px;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.ant-popover-inner-content .menu-header-account.ant-menu-vertical .ant-menu-item:last-child {
|
|
35
|
+
border-top: 1px solid var(--border-color-split);
|
|
36
|
+
border-top-left-radius: 0px;
|
|
37
|
+
border-top-right-radius: 0px;
|
|
38
|
+
border-bottom-left-radius: 3px;
|
|
39
|
+
border-bottom-right-radius: 3px;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.ant-popover.ant-popover-placement-bottomRight .sub-menu-sider .ant-menu-submenu:hover>.ant-menu-submenu-title>.ant-menu-submenu-arrow {
|
|
44
|
+
color: var(--menu-item-group-title-color) !important;
|
|
45
|
+
}
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
th.matrix-table-column-sort {
|
|
2
|
+
background: var(--table-header-sort-bg) !important;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
td.matrix-table-column-sort {
|
|
6
|
+
background: var(--table-body-sort-bg) !important;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.sortable-tree-matrix-container {
|
|
10
|
+
min-height: 100px;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.sortable-tree-matrix-container .sortable-tree-matrix-content {
|
|
14
|
+
display: inline-block;
|
|
15
|
+
vertical-align: middle;
|
|
16
|
+
flex: 0 1 auto;
|
|
17
|
+
padding-right: 20px;
|
|
18
|
+
width: 100%;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.sortable-tree-matrix-container .sortable-tree-matrix-content-rows {
|
|
22
|
+
display: inline-block;
|
|
23
|
+
vertical-align: middle;
|
|
24
|
+
position: relative;
|
|
25
|
+
height: 100%;
|
|
26
|
+
min-width: 230px;
|
|
27
|
+
flex: 1 0 auto;
|
|
28
|
+
display: flex;
|
|
29
|
+
align-items: center;
|
|
30
|
+
justify-content: space-between;
|
|
31
|
+
background-color: white;
|
|
32
|
+
border: 1px dashed rgb(217, 217, 217);
|
|
33
|
+
border-radius: 5px;
|
|
34
|
+
box-shadow: none !important;
|
|
35
|
+
transition: none !important;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.sortable-tree-matrix-container .sortable-tree-matrix-row {
|
|
39
|
+
cursor: pointer;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.sortable-tree-matrix-container .sortable-tree-matrix-row-with-subtitle {
|
|
43
|
+
display: block;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.sortable-tree-matrix-container .sortable-tree-matrix-content-rows-move-drag-source {
|
|
47
|
+
display: flex;
|
|
48
|
+
height: 100%;
|
|
49
|
+
align-items: center;
|
|
50
|
+
padding: 5px;
|
|
51
|
+
background: #f6f7f9;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.sortable-tree-matrix-container .sortable-tree-matrix-row-text {
|
|
55
|
+
display: flex;
|
|
56
|
+
align-items: center;
|
|
57
|
+
padding-left: 15px;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.sortable-tree-matrix-container .sortable-tree-matrix-row-text-toolbar {
|
|
61
|
+
display: inline-block;
|
|
62
|
+
vertical-align: middle;
|
|
63
|
+
flex: 0 1 auto;
|
|
64
|
+
display: flex;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.sortable-tree-matrix-container .sortable-tree-matrix-row-text-toolbar-button {
|
|
68
|
+
display: inline-block;
|
|
69
|
+
vertical-align: middle;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.sortable-tree-matrix-container .sortable-tree-matrix-content-rows:hover .remove-icon {
|
|
73
|
+
display: flex !important;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.sortable-tree-matrix-container .sortable-tree-matrix-row-text-toolbar-invalid-drop {
|
|
77
|
+
background: #ffe3df;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.sortable-tree-matrix-content-rows .draggable-row > .move {
|
|
81
|
+
padding: 7px !important;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.draggable-row:hover .matrix-table-remove-btn {
|
|
85
|
+
display: block;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.draggable-row .matrix-table-remove-btn {
|
|
89
|
+
display: none;
|
|
90
|
+
}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
.menu-node {
|
|
2
|
+
background-color: white;
|
|
3
|
+
margin-bottom: 4px;
|
|
4
|
+
padding-right: 12px;
|
|
5
|
+
border: 1px dashed #d9d9d9;
|
|
6
|
+
border-radius: 8px;
|
|
7
|
+
width: 100%;
|
|
8
|
+
display: flex;
|
|
9
|
+
flex-direction: row;
|
|
10
|
+
justify-content: space-between;
|
|
11
|
+
align-items: center;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.menu-node:hover {
|
|
15
|
+
border-color: var(--primary-color);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.menu-drag-source {
|
|
19
|
+
cursor: grab;
|
|
20
|
+
padding: 8px 4px;
|
|
21
|
+
background-color: #f6f7f9;
|
|
22
|
+
align-self: stretch;
|
|
23
|
+
border-top-left-radius: 8px;
|
|
24
|
+
border-bottom-left-radius: 8px;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.menu-node .menu-label {
|
|
28
|
+
cursor: pointer;
|
|
29
|
+
display: flex;
|
|
30
|
+
flex-direction: row;
|
|
31
|
+
align-items: center;
|
|
32
|
+
flex: 1;
|
|
33
|
+
padding: 8px 8px 8px 0px;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.menu-node .menu-label .icon {
|
|
37
|
+
height: 20px;
|
|
38
|
+
margin-bottom: 2px;
|
|
39
|
+
padding-top: 0px;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.menu-arrow-icon {
|
|
43
|
+
cursor: pointer;
|
|
44
|
+
padding: 0px 4px;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.menu-del-icon {
|
|
48
|
+
padding: 0px 4px;
|
|
49
|
+
cursor: pointer;
|
|
50
|
+
display: none;
|
|
51
|
+
color: #C3C3C3;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.menu-node:hover .menu-del-icon {
|
|
55
|
+
display: flex;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.menu-del-icon:hover {
|
|
59
|
+
color: #F44336;
|
|
60
|
+
}
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
/* New pipeline.css without LESS imports */
|
|
2
|
+
@import url("./custom-antd.css");
|
|
3
|
+
.pipeline-card {
|
|
4
|
+
border: 1px solid rgba(0, 0, 0, 0.05) !important;
|
|
5
|
+
border-radius: 5px;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.pipeline-card .pipeline-main {
|
|
9
|
+
height: 720px;
|
|
10
|
+
display: flex;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.pipeline-card .pipeline-main .pipeline-column-one {
|
|
14
|
+
border-right: 1px solid rgba(0, 0, 0, 0.05) !important;
|
|
15
|
+
padding: 15px;
|
|
16
|
+
padding-right: 0px;
|
|
17
|
+
padding-left: 0px;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.pipeline-card .pipeline-main .pipeline-column-one .pipeline-react-flow {
|
|
21
|
+
width: 230px;
|
|
22
|
+
height: 685px;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.pipeline-card .pipeline-main .pipeline-column-one .pipeline-add-item {
|
|
26
|
+
position: absolute;
|
|
27
|
+
left: 0;
|
|
28
|
+
bottom: 0px;
|
|
29
|
+
z-index: 9999;
|
|
30
|
+
border-radius: 0px;
|
|
31
|
+
border: unset;
|
|
32
|
+
width: 100%;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.pipeline-card .pipeline-main .pipeline-column-two {
|
|
36
|
+
padding: 15px;
|
|
37
|
+
overflow: scroll;
|
|
38
|
+
height: 720px;
|
|
39
|
+
flex: 1;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.pipeline-card .pipeline-main .pipeline-icon-add {
|
|
43
|
+
position: absolute;
|
|
44
|
+
bottom: 0px;
|
|
45
|
+
right: 0px;
|
|
46
|
+
width: 100%;
|
|
47
|
+
z-index: 9999;
|
|
48
|
+
border-radius: 0px;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.pipeline-card .custom-edge-react-flow-edge-path {
|
|
52
|
+
stroke-width: 1;
|
|
53
|
+
fill: none;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.pipeline-card .edgebutton-body {
|
|
57
|
+
align-items: center;
|
|
58
|
+
background: transparent;
|
|
59
|
+
display: flex;
|
|
60
|
+
height: 40px;
|
|
61
|
+
justify-content: center;
|
|
62
|
+
min-height: 40px;
|
|
63
|
+
width: 40px;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.pipeline-card .edgebutton-body .edgebutton {
|
|
67
|
+
border : none;
|
|
68
|
+
border-radius: 50%;
|
|
69
|
+
cursor: pointer;
|
|
70
|
+
font-size: 16px;
|
|
71
|
+
height: 30px;
|
|
72
|
+
line-height: 1;
|
|
73
|
+
width: 30px;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
.pipeline-layout-detail .pipeline-layout-detail-button {
|
|
78
|
+
display: flex;
|
|
79
|
+
justify-content: flex-end;
|
|
80
|
+
padding-left: 15px !important;
|
|
81
|
+
padding-right: 15px !important;
|
|
82
|
+
}
|