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,18 @@
|
|
|
1
|
+
.form-filters .fiiter-item .ant-checkbox-wrapper {
|
|
2
|
+
margin-bottom: 5px;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.form-filters .fiiter-item .checked-content .options-select {
|
|
6
|
+
width : 100%;
|
|
7
|
+
margin-bottom: 12px;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.form-filters .fiiter-item .checked-content .ant-form-item {
|
|
11
|
+
margin-bottom: 12px;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.form-filters .fiiter-item .checked-content .ant-select,
|
|
15
|
+
.form-filters .fiiter-item .checked-content .ant-input-number,
|
|
16
|
+
.form-filters .fiiter-item .checked-content .ant-picker {
|
|
17
|
+
width: 100%;
|
|
18
|
+
}
|
|
@@ -0,0 +1,152 @@
|
|
|
1
|
+
.ant-drawer.filters .ant-drawer-content-wrapper {
|
|
2
|
+
width: 450px !important;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
@media (max-width: 768px) {
|
|
6
|
+
.ant-drawer.filters .ant-drawer-content-wrapper {
|
|
7
|
+
width: 100% !important;
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.ant-drawer.filters .ant-drawer-content-wrapper .ant-drawer-wrapper-body .ant-drawer-title svg {
|
|
12
|
+
margin-right: 6px;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.ant-drawer.filters .ant-drawer-content-wrapper .ant-drawer-wrapper-body .ant-drawer-body {
|
|
16
|
+
padding: 0px 0px;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.ant-drawer.filters .ant-drawer-content-wrapper .ant-drawer-wrapper-body .ant-drawer-body .title-type {
|
|
20
|
+
margin-bottom: 15px;
|
|
21
|
+
padding: 0px 24px;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.ant-drawer.filters .ant-drawer-content-wrapper .ant-drawer-wrapper-body .ant-drawer-body .import-export-content {
|
|
25
|
+
margin-bottom: 3px;
|
|
26
|
+
padding: 8px 24px;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.ant-drawer.filters .ant-drawer-content-wrapper .ant-drawer-wrapper-body .ant-drawer-body .import-export-content .left-section .ant-typography {
|
|
30
|
+
line-height: 32px;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.ant-drawer.filters .ant-drawer-content-wrapper .ant-drawer-wrapper-body .ant-drawer-body h3.ant-typography {
|
|
34
|
+
color: var(--success-color);
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.ant-drawer.filters .ant-drawer-content-wrapper .ant-drawer-wrapper-body .ant-drawer-body .progress {
|
|
38
|
+
padding: 0px 24px;
|
|
39
|
+
margin-bottom: 15px;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.ant-drawer.filters .filter-list {
|
|
43
|
+
padding: 10px 20px;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.ant-drawer.filters .editable-row {
|
|
47
|
+
background-color: #f1f2f5;
|
|
48
|
+
padding: 5px;
|
|
49
|
+
border-radius: 3px;
|
|
50
|
+
display: flex;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.ant-drawer.filters .editable-row-icon {
|
|
54
|
+
cursor: pointer;
|
|
55
|
+
padding-right: 5px;
|
|
56
|
+
padding-left: 5px;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.ant-drawer.filters .edit-icon {
|
|
60
|
+
color: var(--btn-primary-bg);
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.ant-drawer.filters .del-icon {
|
|
64
|
+
color: var(--btn-danger-bg);
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.ant-drawer.filters .drag-wrap {
|
|
68
|
+
background: #f1f2f5;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.ant-drawer.filters .drag-row {
|
|
72
|
+
background-color: white;
|
|
73
|
+
padding: 10px;
|
|
74
|
+
display: flex;
|
|
75
|
+
box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.15);
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.ant-drawer.filters .drag-row:only-child {
|
|
79
|
+
background-color: white;
|
|
80
|
+
padding: 10px;
|
|
81
|
+
display: flex;
|
|
82
|
+
box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.15);
|
|
83
|
+
border-radius: 7px 7px 7px 7px;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.ant-drawer.filters .drag-row:first-child:not(:only-child) {
|
|
87
|
+
background-color: white;
|
|
88
|
+
padding: 10px;
|
|
89
|
+
display: flex;
|
|
90
|
+
box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.15);
|
|
91
|
+
border-radius: 7px 7px 0px 0px;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.ant-drawer.filters .drag-row:last-child:not(:only-child) {
|
|
95
|
+
background-color: white;
|
|
96
|
+
padding: 10px;
|
|
97
|
+
display: flex;
|
|
98
|
+
box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.15);
|
|
99
|
+
border-radius: 0px 0px 7px 7px;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.ant-drawer.filters .drag-row-icon {
|
|
103
|
+
cursor: pointer;
|
|
104
|
+
padding-right: 5px;
|
|
105
|
+
padding-left: 5px;
|
|
106
|
+
margin-left: -7px;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
.anticon-plus.add-filter {
|
|
110
|
+
color: var(--btn-primary-bg);
|
|
111
|
+
cursor: pointer;
|
|
112
|
+
margin-left: 10px;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.anticon-minus.del-filter {
|
|
116
|
+
color: var(--btn-danger-bg);
|
|
117
|
+
cursor: pointer;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.text-filter {
|
|
121
|
+
font-weight: 700;
|
|
122
|
+
font-size: 16px;
|
|
123
|
+
line-height: 19px;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
.box-filter {
|
|
127
|
+
background: #f1f2f5;
|
|
128
|
+
padding: 20px 20px;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.box-inside-filter {
|
|
132
|
+
background: #ffffff;
|
|
133
|
+
padding: 10px 20px;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.total-filter {
|
|
137
|
+
vertical-align: baseline;
|
|
138
|
+
width: 410px;
|
|
139
|
+
height: 37px;
|
|
140
|
+
background: #f6f7f9;
|
|
141
|
+
padding: 7px 10px 10px 10px;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.filter-name {
|
|
145
|
+
padding-top: 7px;
|
|
146
|
+
width: 47px;
|
|
147
|
+
height: 17px;
|
|
148
|
+
font-weight: 400;
|
|
149
|
+
font-size: 14px;
|
|
150
|
+
line-height: 17px;
|
|
151
|
+
color: #625f6e;
|
|
152
|
+
}
|
|
@@ -0,0 +1,140 @@
|
|
|
1
|
+
@import url("./custom-antd.css");
|
|
2
|
+
|
|
3
|
+
.filter-item {
|
|
4
|
+
margin-left: 15px;
|
|
5
|
+
display: flex;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.filter-item .title {
|
|
9
|
+
margin-right: 5px;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.hook-item {
|
|
13
|
+
border-bottom: 1px solid #EFEFEF;
|
|
14
|
+
width: 100%;
|
|
15
|
+
padding: 10px;
|
|
16
|
+
display: flex;
|
|
17
|
+
align-items: center;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.hook-tabs {
|
|
21
|
+
height: 100%;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.hook-tabs .ant-tabs-content {
|
|
25
|
+
height: 100%;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.hook-tabs .ant-tabs-nav-list {
|
|
29
|
+
width: 100%;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.hook-tabs .ant-tabs-nav {
|
|
33
|
+
margin-bottom: 0px;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.hook-tabs .ant-tabs-tab {
|
|
37
|
+
flex: 1;
|
|
38
|
+
justify-content: center;
|
|
39
|
+
margin-right: 0px !important;
|
|
40
|
+
border-radius: 0px !important;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.hook-tabs .list-container {
|
|
44
|
+
min-height: 500px;
|
|
45
|
+
border: 1px solid var(--border-color-split);
|
|
46
|
+
border-top: 0px;
|
|
47
|
+
display: flex;
|
|
48
|
+
flex-direction: column;
|
|
49
|
+
height: 100%;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.method-item {
|
|
53
|
+
font-size: 12px;
|
|
54
|
+
border: 1px solid var(--border-color-base);
|
|
55
|
+
padding: 2px 10px;
|
|
56
|
+
display: flex;
|
|
57
|
+
justify-content: center;
|
|
58
|
+
align-items: center;
|
|
59
|
+
cursor: pointer;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.method-item span {
|
|
63
|
+
margin-right: 3px;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.method-item.active {
|
|
67
|
+
color: var(--primary-color);
|
|
68
|
+
border-color: var(--primary-color);
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.method-filter-item.active {
|
|
72
|
+
background-color: var(--primary-color);
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.hook-filter-row {
|
|
76
|
+
padding: 10px 6px;
|
|
77
|
+
border-bottom: 1px solid var(--border-color-split);
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.filter-wrapper {
|
|
81
|
+
flex: 1;
|
|
82
|
+
display: flex;
|
|
83
|
+
height: 32px;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.filter-wrapper .method-item:first-child {
|
|
87
|
+
border-top-left-radius: 15px;
|
|
88
|
+
border-bottom-left-radius: 15px;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.filter-wrapper .method-item:last-child {
|
|
92
|
+
border-top-right-radius: 15px;
|
|
93
|
+
border-bottom-right-radius: 15px;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.hook-add-new-row {
|
|
97
|
+
padding: 10px 0px;
|
|
98
|
+
border-bottom: 1px solid var(--border-color-split);
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.hook-list-item {
|
|
102
|
+
height: 65px;
|
|
103
|
+
background-color: white;
|
|
104
|
+
border-bottom: 1px solid var(--border-color-split);
|
|
105
|
+
display: flex;
|
|
106
|
+
margin-bottom: 5px;
|
|
107
|
+
border-radius: 5px;
|
|
108
|
+
cursor: pointer;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.hook-list-item.active {
|
|
112
|
+
background-color: rgba(253, 223, 151, 0.5);
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.hook-flex {
|
|
116
|
+
display: flex;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
.hook-space-between {
|
|
120
|
+
justify-content: space-between;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.hook-mr-10 {
|
|
124
|
+
margin-right: 10px;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
.hook-mt-10 {
|
|
128
|
+
margin-top: 10px;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.hook-input {
|
|
132
|
+
width: 100%;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
.hook-params-container {
|
|
136
|
+
margin: 5px;
|
|
137
|
+
padding: 5px 10px;
|
|
138
|
+
background-color: #EFEFEF;
|
|
139
|
+
border-radius: 5px;
|
|
140
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
.ant-drawer.import-export .ant-drawer-content-wrapper {
|
|
2
|
+
width: 450px !important;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.ant-drawer.import-export .ant-drawer-content-wrapper .ant-drawer-wrapper-body .ant-drawer-title svg {
|
|
6
|
+
margin-right: 6px;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.ant-drawer.import-export .ant-drawer-content-wrapper .ant-drawer-wrapper-body .ant-drawer-body {
|
|
10
|
+
padding: 24px 0px;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.ant-drawer.import-export .ant-drawer-content-wrapper .ant-drawer-wrapper-body .ant-drawer-body .title-type {
|
|
14
|
+
margin-bottom: 15px;
|
|
15
|
+
padding: 0px 24px;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.ant-drawer.import-export .ant-drawer-content-wrapper .ant-drawer-wrapper-body .ant-drawer-body .import-export-content {
|
|
19
|
+
margin-bottom: 3px;
|
|
20
|
+
padding: 8px 24px;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.ant-drawer.import-export .ant-drawer-content-wrapper .ant-drawer-wrapper-body .ant-drawer-body .import-export-content .left-section .ant-typography {
|
|
24
|
+
line-height: 32px;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.ant-drawer.import-export .ant-drawer-content-wrapper .ant-drawer-wrapper-body .ant-drawer-body h3.ant-typography {
|
|
28
|
+
color: var(--success-color);
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.ant-drawer.import-export .ant-drawer-content-wrapper .ant-drawer-wrapper-body .ant-drawer-body .progress {
|
|
32
|
+
padding: 0px 24px;
|
|
33
|
+
margin-bottom: 15px;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.ant-modal.import-export .ant-modal-body .progress {
|
|
37
|
+
padding: 10px 0px;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.ant-modal.import-export .ant-modal-body .progress button {
|
|
41
|
+
margin-top: 15px;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
@media (max-width: 768px) {
|
|
45
|
+
.ant-drawer.import-export .ant-drawer-content-wrapper {
|
|
46
|
+
width: 85% !important;
|
|
47
|
+
}
|
|
48
|
+
}
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
.input-label-container {
|
|
2
|
+
margin-bottom: 6px;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.input-label-container .input-label {
|
|
6
|
+
font-size: 14px;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.input-label-modal-Layout {
|
|
10
|
+
font-size: 14px;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.input-description-container {
|
|
14
|
+
margin-top: 4px;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.input-description-container .input-description {
|
|
18
|
+
font-size: 12px;
|
|
19
|
+
color: var(--text-color-secondary);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.input-switch-container .input-switch {
|
|
23
|
+
width: 44px;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.input-switch-container .input-show-value-container {
|
|
27
|
+
margin-left: 20px;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.input-switch-container .input-show-value-container .input-show-value {
|
|
31
|
+
font-size: 14px;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.input-select-container .ant-select {
|
|
35
|
+
width: 100%;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.input-reason-container .ant-select {
|
|
39
|
+
width: 100%;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.input-reason-container .icon-comment svg {
|
|
43
|
+
width: 18px;
|
|
44
|
+
height: 18px;
|
|
45
|
+
cursor: pointer;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.input-font-container .ant-col.active .ant-btn {
|
|
49
|
+
color: var(--primary-color);
|
|
50
|
+
border-color: var(--primary-color);
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.input-border-container .ant-btn.active {
|
|
54
|
+
color: var(--primary-color);
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.input-border-content .ant-col .anticon svg {
|
|
58
|
+
width: 1.6em;
|
|
59
|
+
height: 1.6em;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.input-border-content .ant-col.active .ant-btn {
|
|
63
|
+
color: var(--primary-color);
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.input-border-content .anticon.anticon-pause {
|
|
67
|
+
transform: rotate(90deg);
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.ant-form-item.editable-field.reason.ant-form-item-has-error .ant-form-item-children-icon {
|
|
71
|
+
right: 46px;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.input-icon {
|
|
75
|
+
text-align: center;
|
|
76
|
+
margin-top: 10px;
|
|
77
|
+
}
|