easy3wui 1.5.89-beta1 → 1.5.89-beta2
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/assets/formPage.css +300 -0
- package/assets/globalFooter.css +26 -0
- package/assets/globalHeader.css +69 -0
- package/assets/gridPage.css +154 -0
- package/assets/index.css +2842 -0
- package/assets/login.css +58 -0
- package/assets/loginLayout.css +115 -0
- package/assets/modal.css +0 -0
- package/assets/result.css +45 -0
- package/assets/skeleton.css +4 -0
- package/assets/tree.css +4 -0
- package/assets/userLayout.css +70 -0
- package/package.json +1 -1
|
@@ -0,0 +1,300 @@
|
|
|
1
|
+
.ant-upload-list-item {
|
|
2
|
+
width: auto;
|
|
3
|
+
}
|
|
4
|
+
.ant-upload-list-item .ant-upload-list-item-info {
|
|
5
|
+
width: auto;
|
|
6
|
+
}
|
|
7
|
+
.ant-upload-list-item .ant-upload-list-item-name {
|
|
8
|
+
padding-right: 24px;
|
|
9
|
+
}
|
|
10
|
+
.ant-upload-list-item .anticon-cross {
|
|
11
|
+
right: -2px;
|
|
12
|
+
}
|
|
13
|
+
.e3wFormPageWrap .e3wFormItem .ant-form-item {
|
|
14
|
+
margin-bottom: 8px;
|
|
15
|
+
}
|
|
16
|
+
.e3wFormPageWrap .inputNumberFormat,
|
|
17
|
+
.e3wFormPageWrap .inputAmount,
|
|
18
|
+
.e3wFormPageWrap .inputDigit {
|
|
19
|
+
display: -ms-flexbox;
|
|
20
|
+
display: flex;
|
|
21
|
+
-ms-flex-direction: row;
|
|
22
|
+
flex-direction: row;
|
|
23
|
+
-ms-flex-wrap: nowrap;
|
|
24
|
+
flex-wrap: nowrap;
|
|
25
|
+
line-height: 32px;
|
|
26
|
+
}
|
|
27
|
+
.e3wFormPageWrap .inputNumberFormat .addonBtns,
|
|
28
|
+
.e3wFormPageWrap .inputAmount .addonBtns,
|
|
29
|
+
.e3wFormPageWrap .inputDigit .addonBtns {
|
|
30
|
+
height: 32px;
|
|
31
|
+
width: auto;
|
|
32
|
+
border-left: none;
|
|
33
|
+
border-right: 1px solid #d9d9d9;
|
|
34
|
+
}
|
|
35
|
+
.e3wFormPageWrap .inputNumberFormat .inputNumberBtns .e3wFootBtn,
|
|
36
|
+
.e3wFormPageWrap .inputAmount .inputNumberBtns .e3wFootBtn,
|
|
37
|
+
.e3wFormPageWrap .inputDigit .inputNumberBtns .e3wFootBtn {
|
|
38
|
+
margin: 0;
|
|
39
|
+
}
|
|
40
|
+
.e3wFormPageWrap .bf-container {
|
|
41
|
+
border: 1px solid #eee;
|
|
42
|
+
}
|
|
43
|
+
.approval_flag_only .e3wFormPageWrapPC .bf-container {
|
|
44
|
+
border: 1px solid #eee;
|
|
45
|
+
}
|
|
46
|
+
.approval_flag_only .e3wFormPageWrapPC .ant-form-item-label {
|
|
47
|
+
line-height: 24px;
|
|
48
|
+
}
|
|
49
|
+
.approval_flag_only .e3wFormPageWrapPC .ant-form-item-control {
|
|
50
|
+
line-height: 24px;
|
|
51
|
+
}
|
|
52
|
+
.approval_flag_only .e3wFormPageWrapPC .ant-form-item-required::before {
|
|
53
|
+
content: "";
|
|
54
|
+
}
|
|
55
|
+
.approval_flag_only .e3wFormPageWrapPC .ant-form-item-label > label::after {
|
|
56
|
+
content: "";
|
|
57
|
+
margin: 0px;
|
|
58
|
+
}
|
|
59
|
+
.approval_flag_only .e3wFormPageWrapPC .ant-form-item-label > label {
|
|
60
|
+
width: 100%;
|
|
61
|
+
display: inline-block;
|
|
62
|
+
overflow: hidden;
|
|
63
|
+
white-space: nowrap;
|
|
64
|
+
text-overflow: ellipsis;
|
|
65
|
+
padding-right: 20px;
|
|
66
|
+
}
|
|
67
|
+
.approval_flag_only .e3wFormPageWrapPC .ant-form-item-label > label.ant-form-item-required::after {
|
|
68
|
+
content: "*";
|
|
69
|
+
color: var(--label-required-color);
|
|
70
|
+
}
|
|
71
|
+
.approval_flag_only .e3wFormPageWrapPC .ant-form-item-label > label.ant-form-item-required {
|
|
72
|
+
position: relative;
|
|
73
|
+
}
|
|
74
|
+
.approval_flag_only .e3wFormPageWrapPC .ant-form-item-label > label.ant-form-item-required::after {
|
|
75
|
+
position: absolute;
|
|
76
|
+
right: 0;
|
|
77
|
+
width: 20px;
|
|
78
|
+
text-align: center;
|
|
79
|
+
}
|
|
80
|
+
.approval_flag_only .e3wFormPageWrapPC .ant-form-item:has(.ant-form-item-label) > .ant-form-item-control-wrapper .e3wFootBtn:first-child {
|
|
81
|
+
margin-left: 0;
|
|
82
|
+
}
|
|
83
|
+
.approval_flag_only .e3wFormPageWrapPC .e3wFormCol[data-fieldtype][data-col-readflag="1"]:not([data-fieldtype="e3wFormCol_strTemplate"]) .ant-form-item:has(.ant-form-item-label) > .ant-form-item-control-wrapper {
|
|
84
|
+
border-bottom: 1px solid var(--primary-color);
|
|
85
|
+
height: auto;
|
|
86
|
+
}
|
|
87
|
+
.approval_flag_only .e3wFormPageWrapPC .e3wFormCol[data-fieldtype][data-col-readflag="1"]:not([data-fieldtype="e3wFormCol_strTemplate"]) .ant-form-item:has(.ant-form-item-label) > .ant-form-item-control-wrapper textarea {
|
|
88
|
+
border: none;
|
|
89
|
+
padding: 0;
|
|
90
|
+
}
|
|
91
|
+
.approval_flag_only .e3wFormPageWrapPC .e3wFormCol[data-fieldtype][data-col-readflag="1"]:not([data-fieldtype="e3wFormCol_strTemplate"]) .ant-form-item:has(.ant-form-item-label) > .ant-form-item-control-wrapper .bf-container {
|
|
92
|
+
border: none;
|
|
93
|
+
}
|
|
94
|
+
.approval_flag_only .e3wFormPageWrapPC .e3wFormCol[data-fieldtype][data-col-readflag="1"]:not([data-fieldtype="e3wFormCol_strTemplate"]) .ant-form-item:has(.ant-form-item-label) > .ant-form-item-control-wrapper .bf-container .public-DraftEditor-content > div {
|
|
95
|
+
padding-bottom: 0;
|
|
96
|
+
}
|
|
97
|
+
.approval_flag_only .e3wFormPageWrapPC .e3wFormCol[data-fieldtype][data-col-readflag="1"]:not([data-fieldtype="e3wFormCol_strTemplate"]) .ant-form-item:has(.ant-form-item-label) > .ant-form-item-control-wrapper .bf-container .public-DraftEditor-content {
|
|
98
|
+
padding: 0;
|
|
99
|
+
}
|
|
100
|
+
.approval_flag_only .e3wFormPageWrapPC .e3wFormCol[data-fieldtype][data-col-readflag="1"]:not([data-fieldtype="e3wFormCol_strTemplate"]) .ant-form-item:has(.ant-form-item-label) > .ant-form-item-control-wrapper .bf-content {
|
|
101
|
+
padding-bottom: 0;
|
|
102
|
+
}
|
|
103
|
+
.approval_flag_only .e3wFormPageWrapPC .e3wFormCol[data-fieldtype][data-fieldtype="e3wFormCol_strTemplate"] .e3wFormStrTemplate .ant-form-item > .ant-form-item-control-wrapper {
|
|
104
|
+
width: 100%;
|
|
105
|
+
height: auto;
|
|
106
|
+
}
|
|
107
|
+
.approval_flag_only .e3wFormPageWrapPC .e3wFormCol[data-fieldtype][data-fieldtype="e3wFormCol_strTemplate"] .e3wFormStrTemplate .ant-form-item > .ant-form-item-control-wrapper .e3wFootBtn:first-child {
|
|
108
|
+
margin-left: 0;
|
|
109
|
+
}
|
|
110
|
+
.approval_flag_only .e3wFormPageWrapPC .e3wFormCol[data-fieldtype][data-col-readflag="1"][data-fieldtype="e3wFormCol_strTemplate"] .e3wFormStrTemplate .ant-form-item > .ant-form-item-control-wrapper {
|
|
111
|
+
border-bottom: 1px solid var(--primary-color);
|
|
112
|
+
}
|
|
113
|
+
.approval_flag_only .e3wFormPageWrapPC .ant-row.ant-form-item {
|
|
114
|
+
display: -ms-flexbox;
|
|
115
|
+
display: flex;
|
|
116
|
+
-ms-flex-direction: row;
|
|
117
|
+
flex-direction: row;
|
|
118
|
+
}
|
|
119
|
+
input.ant-input-number-input {
|
|
120
|
+
text-align: right;
|
|
121
|
+
padding-right: 21px;
|
|
122
|
+
}
|
|
123
|
+
.rightText {
|
|
124
|
+
text-align: right;
|
|
125
|
+
}
|
|
126
|
+
.bf-container.read-only .bf-content {
|
|
127
|
+
height: auto;
|
|
128
|
+
}
|
|
129
|
+
.bf-container.read-only .bf-controlbar {
|
|
130
|
+
display: none;
|
|
131
|
+
}
|
|
132
|
+
.e3wFormPageWrapTight .e3wFormPageNoBorder {
|
|
133
|
+
margin: 12px;
|
|
134
|
+
}
|
|
135
|
+
.e3wFormPageWrapTight .e3wFormPageNoBorder > div > .ant-row {
|
|
136
|
+
padding: 3px;
|
|
137
|
+
}
|
|
138
|
+
.e3wFormPageWrapTight .e3wFormPageNoBorder > div > .ant-row .ant-btn {
|
|
139
|
+
height: 24px;
|
|
140
|
+
color: #5468b2;
|
|
141
|
+
}
|
|
142
|
+
.e3wFormPageWrapTight .e3wFormPageNoBorder .hasAfterBtns :global .ant-calendar-picker {
|
|
143
|
+
min-width: 100% !important;
|
|
144
|
+
}
|
|
145
|
+
.e3wFormPageWrapTight .e3wFormPage {
|
|
146
|
+
border-top: 1px solid #e8e8e8;
|
|
147
|
+
border-left: 1px solid #e8e8e8;
|
|
148
|
+
border-right: 1px solid #e8e8e8;
|
|
149
|
+
margin: 12px;
|
|
150
|
+
}
|
|
151
|
+
.e3wFormPageWrapTight .e3wFormPage > div > .ant-row {
|
|
152
|
+
padding: 3px;
|
|
153
|
+
border-bottom: 1px solid #e8e8e8;
|
|
154
|
+
}
|
|
155
|
+
.e3wFormPageWrapTight .e3wFormPage > div > .ant-row .ant-btn {
|
|
156
|
+
height: 24px;
|
|
157
|
+
color: #5468b2;
|
|
158
|
+
}
|
|
159
|
+
.e3wFormPageWrapTight .e3wFormPage .hasAfterBtns :global .ant-calendar-picker {
|
|
160
|
+
min-width: 100% !important;
|
|
161
|
+
}
|
|
162
|
+
.e3wFormPageWrapTight .e3wFormItem .ant-form-item {
|
|
163
|
+
margin-bottom: 8px;
|
|
164
|
+
}
|
|
165
|
+
.e3wFormPageWrapTight .formContent:not(:first-child) {
|
|
166
|
+
padding-left: 3px;
|
|
167
|
+
}
|
|
168
|
+
.e3wFormPageWrapTight .formContent :global .ant-input-group-wrapper {
|
|
169
|
+
vertical-align: middle;
|
|
170
|
+
}
|
|
171
|
+
.e3wFormPageWrapTight .formContent :global .ant-form-item-label {
|
|
172
|
+
line-height: 24px;
|
|
173
|
+
}
|
|
174
|
+
.e3wFormPageWrapTight .formContent :global .ant-form-item-control {
|
|
175
|
+
line-height: 24px;
|
|
176
|
+
}
|
|
177
|
+
.e3wFormPageWrapTight .formContent :global .ant-form-item-required::before {
|
|
178
|
+
margin-left: -10px;
|
|
179
|
+
}
|
|
180
|
+
.e3wFormPageWrapTight .formContent :global .ant-form-item-label {
|
|
181
|
+
padding-left: 12px;
|
|
182
|
+
}
|
|
183
|
+
.e3wFormPageWrapTight .formContentAlone:not(:first-child) {
|
|
184
|
+
padding-left: 3px;
|
|
185
|
+
}
|
|
186
|
+
.e3wFormPageWrapTight .formContentAlone:not(:first-child) {
|
|
187
|
+
padding-left: 3px;
|
|
188
|
+
}
|
|
189
|
+
.e3wFormPageWrapTight .formContentAlone :global .ant-input-group-wrapper {
|
|
190
|
+
vertical-align: middle;
|
|
191
|
+
}
|
|
192
|
+
.e3wFormPageWrapTight .formContentAlone :global .ant-form-item-label {
|
|
193
|
+
line-height: 24px;
|
|
194
|
+
}
|
|
195
|
+
.e3wFormPageWrapTight .formContentAlone :global .ant-form-item-control {
|
|
196
|
+
line-height: 24px;
|
|
197
|
+
}
|
|
198
|
+
.e3wFormPageWrapTight .formContentAlone :global .ant-form-item-required::before {
|
|
199
|
+
margin-left: -10px;
|
|
200
|
+
}
|
|
201
|
+
.e3wFormPageWrapTight .formContentAlone :global .ant-form-item-label {
|
|
202
|
+
padding-left: 12px;
|
|
203
|
+
}
|
|
204
|
+
.e3wFormPageWrapTight .formContentAlone :global .ant-input-number {
|
|
205
|
+
border-radius: 4px 0 0 4px;
|
|
206
|
+
}
|
|
207
|
+
.e3wFormPageWrapTight .formContentAlone :global .ant-form-item-required::before {
|
|
208
|
+
margin-left: -10px;
|
|
209
|
+
}
|
|
210
|
+
.e3wFormPageWrapTight .formContentAlone :global .ant-form-item-label {
|
|
211
|
+
padding-left: 12px;
|
|
212
|
+
}
|
|
213
|
+
.e3wFormPageWrapTight .countContent:after {
|
|
214
|
+
content: attr(data-count);
|
|
215
|
+
color: rgba(0, 0, 0, 0.45);
|
|
216
|
+
pointer-events: none;
|
|
217
|
+
float: right;
|
|
218
|
+
white-space: nowrap;
|
|
219
|
+
}
|
|
220
|
+
@media (max-width: 768px) and (orientation: portrait) {
|
|
221
|
+
:global .ant-form-item-label::after {
|
|
222
|
+
content: ":";
|
|
223
|
+
color: rgba(0, 0, 0, 0.75);
|
|
224
|
+
}
|
|
225
|
+
}
|
|
226
|
+
@media (max-width: 768px) and (orientation: landscape) {
|
|
227
|
+
:global .ant-form-item-label::after {
|
|
228
|
+
content: "";
|
|
229
|
+
}
|
|
230
|
+
}
|
|
231
|
+
@media (max-width: 768px) {
|
|
232
|
+
:global .ant-form-item-label {
|
|
233
|
+
padding: 0;
|
|
234
|
+
height: auto;
|
|
235
|
+
line-height: 30px;
|
|
236
|
+
text-align: right;
|
|
237
|
+
white-space: wrap;
|
|
238
|
+
overflow: visible;
|
|
239
|
+
}
|
|
240
|
+
:global .ant-form-item-label .ant-badge {
|
|
241
|
+
display: none;
|
|
242
|
+
}
|
|
243
|
+
:global .ant-form-item-label label {
|
|
244
|
+
display: inline-block;
|
|
245
|
+
width: 80%;
|
|
246
|
+
}
|
|
247
|
+
:global .ant-form-item-control {
|
|
248
|
+
line-height: 30px;
|
|
249
|
+
white-space: wrap;
|
|
250
|
+
color: black;
|
|
251
|
+
}
|
|
252
|
+
:global .ant-form-item-label,
|
|
253
|
+
:global .ant-form-item-control-wrapper {
|
|
254
|
+
width: unset;
|
|
255
|
+
}
|
|
256
|
+
:global .ant-col-6 {
|
|
257
|
+
width: 25% !important;
|
|
258
|
+
}
|
|
259
|
+
:global .ant-col-12 {
|
|
260
|
+
width: 50% !important;
|
|
261
|
+
}
|
|
262
|
+
:global .ant-col-18 {
|
|
263
|
+
width: 75% !important;
|
|
264
|
+
}
|
|
265
|
+
:global .ant-form-item {
|
|
266
|
+
font-size: 12px !important;
|
|
267
|
+
margin-bottom: 8px !important;
|
|
268
|
+
}
|
|
269
|
+
:global .ant-radio-wrapper {
|
|
270
|
+
font-size: 12px !important;
|
|
271
|
+
}
|
|
272
|
+
:global .ant-checkbox-wrapper {
|
|
273
|
+
font-size: 12px !important;
|
|
274
|
+
}
|
|
275
|
+
:global .ant-input {
|
|
276
|
+
font-size: 12px !important;
|
|
277
|
+
}
|
|
278
|
+
:global .ant-input[disabled] {
|
|
279
|
+
background-color: #fcfcfc !important;
|
|
280
|
+
}
|
|
281
|
+
:global .ant-table-body {
|
|
282
|
+
font-size: 12px !important;
|
|
283
|
+
}
|
|
284
|
+
:global .adm-collapse-panel-content {
|
|
285
|
+
padding: 0 12px;
|
|
286
|
+
}
|
|
287
|
+
:global .adm-list-item-content-main {
|
|
288
|
+
width: 100%;
|
|
289
|
+
}
|
|
290
|
+
:global .adm-form-item-horizontal .adm-list-item-content-main {
|
|
291
|
+
text-align: right;
|
|
292
|
+
}
|
|
293
|
+
:global .ant-form-item-label > label {
|
|
294
|
+
color: rgba(0, 0, 0, 0.75);
|
|
295
|
+
}
|
|
296
|
+
:global .adm-text-area-element,
|
|
297
|
+
:global .adm-text-area-count {
|
|
298
|
+
font-size: 14px;
|
|
299
|
+
}
|
|
300
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
|
|
2
|
+
/* stylelint-disable no-duplicate-selectors */
|
|
3
|
+
/* stylelint-disable */
|
|
4
|
+
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
|
|
5
|
+
.e3wGlobalFooterDiv {
|
|
6
|
+
padding: 0 16px;
|
|
7
|
+
margin: 24px 0 24px 0;
|
|
8
|
+
text-align: center;
|
|
9
|
+
}
|
|
10
|
+
.e3wGlobalFooterDiv .e3wGlobalFooterLinks {
|
|
11
|
+
margin-bottom: 8px;
|
|
12
|
+
}
|
|
13
|
+
.e3wGlobalFooterDiv .e3wGlobalFooterLinks a {
|
|
14
|
+
color: rgba(0, 0, 0, 0.45);
|
|
15
|
+
transition: all .3s;
|
|
16
|
+
}
|
|
17
|
+
.e3wGlobalFooterDiv .e3wGlobalFooterLinks a:not(:last-child) {
|
|
18
|
+
margin-right: 40px;
|
|
19
|
+
}
|
|
20
|
+
.e3wGlobalFooterDiv .e3wGlobalFooterLinks a:hover {
|
|
21
|
+
color: rgba(0, 0, 0, 0.65);
|
|
22
|
+
}
|
|
23
|
+
.e3wGlobalFooterDiv .e3wGlobalFooterCopyright {
|
|
24
|
+
color: rgba(0, 0, 0, 0.45);
|
|
25
|
+
font-size: 14px;
|
|
26
|
+
}
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
|
|
2
|
+
/* stylelint-disable no-duplicate-selectors */
|
|
3
|
+
/* stylelint-disable */
|
|
4
|
+
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
|
|
5
|
+
.e3wGlobalHeaderHeader {
|
|
6
|
+
padding: 0 12px 0 0;
|
|
7
|
+
background: #fff;
|
|
8
|
+
box-shadow: 0 1px 4px rgba(0, 21, 41, 0.08);
|
|
9
|
+
position: relative;
|
|
10
|
+
}
|
|
11
|
+
.e3wGlobalHeaderHeader h1 {
|
|
12
|
+
color: #000;
|
|
13
|
+
display: inline-block;
|
|
14
|
+
vertical-align: middle;
|
|
15
|
+
font-size: 14px;
|
|
16
|
+
font-family: 'Myriad Pro', 'Helvetica Neue', Arial, Helvetica, sans-serif;
|
|
17
|
+
font-weight: 400;
|
|
18
|
+
}
|
|
19
|
+
:global(.ant-layout-sider-collapsed) .logo {
|
|
20
|
+
padding-left: 10px;
|
|
21
|
+
}
|
|
22
|
+
:global(.ant-layout-sider-collapsed) .logo > a {
|
|
23
|
+
width: 32px;
|
|
24
|
+
}
|
|
25
|
+
.e3wGlobalHeaderTrigger {
|
|
26
|
+
font-size: 20px;
|
|
27
|
+
line-height: 64px;
|
|
28
|
+
cursor: pointer;
|
|
29
|
+
transition: all .3s;
|
|
30
|
+
padding: 0 24px;
|
|
31
|
+
}
|
|
32
|
+
.e3wGlobalHeaderTrigger:hover {
|
|
33
|
+
background: #e6f7ff;
|
|
34
|
+
}
|
|
35
|
+
.e3wGlobalHeaderRight {
|
|
36
|
+
float: right;
|
|
37
|
+
height: 100%;
|
|
38
|
+
}
|
|
39
|
+
.e3wGlobalHeaderRight .e3wGlobalHeaderAction {
|
|
40
|
+
cursor: pointer;
|
|
41
|
+
padding: 0 12px;
|
|
42
|
+
display: inline-block;
|
|
43
|
+
transition: all .3s;
|
|
44
|
+
height: 100%;
|
|
45
|
+
}
|
|
46
|
+
.e3wGlobalHeaderRight .e3wGlobalHeaderAction > i {
|
|
47
|
+
font-size: 14px;
|
|
48
|
+
vertical-align: middle;
|
|
49
|
+
}
|
|
50
|
+
.e3wGlobalHeaderRight .e3wGlobalHeaderAction:global(.ant-popover-open),
|
|
51
|
+
.e3wGlobalHeaderRight .e3wGlobalHeaderAction:hover {
|
|
52
|
+
background: #e6f7ff;
|
|
53
|
+
}
|
|
54
|
+
.e3wGlobalHeaderRight .e3wGlobalHeaderAccount .e3wGlobalHeaderAvatar {
|
|
55
|
+
margin: 20px 8px 20px 0;
|
|
56
|
+
color: var(--primary-color);
|
|
57
|
+
background: rgba(255, 255, 255, 0.85);
|
|
58
|
+
vertical-align: middle;
|
|
59
|
+
}
|
|
60
|
+
.e3wGlobalHeaderRight .e3wGlobalHeaderIcon {
|
|
61
|
+
font-size: 14px;
|
|
62
|
+
padding: 4px;
|
|
63
|
+
}
|
|
64
|
+
.e3wGlobalHeaderMenu :global(.anticon) {
|
|
65
|
+
margin-right: 8px;
|
|
66
|
+
}
|
|
67
|
+
.e3wGlobalHeaderMenu :global(.ant-dropdown-menu-item) {
|
|
68
|
+
width: 160px;
|
|
69
|
+
}
|
|
@@ -0,0 +1,154 @@
|
|
|
1
|
+
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
|
|
2
|
+
/* stylelint-disable no-duplicate-selectors */
|
|
3
|
+
/* stylelint-disable */
|
|
4
|
+
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
|
|
5
|
+
.scrollY .ant-table-tbody > .ant-table-row .e3wGridShortText {
|
|
6
|
+
text-align: center;
|
|
7
|
+
}
|
|
8
|
+
.scrollY .ant-table-tbody > .ant-table-row .e3wGridLongText {
|
|
9
|
+
text-align: left;
|
|
10
|
+
}
|
|
11
|
+
.scrollY .ant-table-tbody > .ant-table-row .e3wGridNumber {
|
|
12
|
+
text-align: right;
|
|
13
|
+
}
|
|
14
|
+
.scrollY .ant-table-tbody > .ant-table-row .e3wMaxText {
|
|
15
|
+
text-align: left;
|
|
16
|
+
max-width: 240px;
|
|
17
|
+
text-overflow: ellipsis;
|
|
18
|
+
white-space: nowrap;
|
|
19
|
+
overflow: hidden;
|
|
20
|
+
}
|
|
21
|
+
.scrollY .ant-table-thead > tr > th {
|
|
22
|
+
text-align: center;
|
|
23
|
+
}
|
|
24
|
+
.scrollY .ant-table-wrapper .ant-table-tbody > tr:nth-child(even) > td {
|
|
25
|
+
background: var(--table-header-bg);
|
|
26
|
+
}
|
|
27
|
+
.scrollY .ant-table-wrapper .ant-table-tbody > tr:nth-child(odd) > td {
|
|
28
|
+
background: #fff;
|
|
29
|
+
}
|
|
30
|
+
.scrollY .ant-table-wrapper .ant-table-tbody > tr:hover:not(.antd-table-expanded-row):not(.antd-table-row-selected) > td {
|
|
31
|
+
background: var(--table-row-hover-bg);
|
|
32
|
+
}
|
|
33
|
+
.scrollY .ant-table-wrapper .ant-table-bordered .ant-table-thead > tr > th,
|
|
34
|
+
.scrollY .ant-table-wrapper .ant-table-bordered .ant-table-tbody > tr > td {
|
|
35
|
+
border-right: 0;
|
|
36
|
+
}
|
|
37
|
+
.scrollY .ant-table-wrapper .ant-table-thead > tr > th,
|
|
38
|
+
.scrollY .ant-table-wrapper .ant-table-tbody > tr > td {
|
|
39
|
+
border-bottom: 0;
|
|
40
|
+
}
|
|
41
|
+
.scrollX .ant-table-thead > tr > th {
|
|
42
|
+
word-break: keep-all;
|
|
43
|
+
white-space: nowrap;
|
|
44
|
+
text-align: center;
|
|
45
|
+
}
|
|
46
|
+
.scrollX .ant-table-tbody > .ant-table-row td {
|
|
47
|
+
max-width: 240px;
|
|
48
|
+
word-break: keep-all;
|
|
49
|
+
text-overflow: ellipsis;
|
|
50
|
+
white-space: nowrap;
|
|
51
|
+
overflow: hidden;
|
|
52
|
+
}
|
|
53
|
+
.scrollX .ant-table-tbody > .ant-table-row .e3wText {
|
|
54
|
+
white-space: normal;
|
|
55
|
+
text-align: left;
|
|
56
|
+
}
|
|
57
|
+
.scrollX .ant-table-tbody > .ant-table-row .e3wGridShortText {
|
|
58
|
+
text-align: center;
|
|
59
|
+
}
|
|
60
|
+
.scrollX .ant-table-tbody > .ant-table-row .e3wGridLongText {
|
|
61
|
+
text-align: left;
|
|
62
|
+
}
|
|
63
|
+
.scrollX .ant-table-tbody > .ant-table-row .e3wGridNumber {
|
|
64
|
+
text-align: right;
|
|
65
|
+
}
|
|
66
|
+
.scrollX .ant-table-tbody > .ant-table-row .e3wMaxText {
|
|
67
|
+
text-align: left;
|
|
68
|
+
max-width: 240px;
|
|
69
|
+
text-overflow: ellipsis;
|
|
70
|
+
white-space: nowrap;
|
|
71
|
+
overflow: hidden;
|
|
72
|
+
}
|
|
73
|
+
.scrollX .ant-table-wrapper .ant-table-tbody > tr:nth-child(even) > td {
|
|
74
|
+
background: var(--table-header-bg);
|
|
75
|
+
}
|
|
76
|
+
.scrollX .ant-table-wrapper .ant-table-tbody > tr:nth-child(odd) > td {
|
|
77
|
+
background: #fff;
|
|
78
|
+
}
|
|
79
|
+
.scrollX .ant-table-wrapper .ant-table-tbody > tr:hover:not(.antd-table-expanded-row):not(.antd-table-row-selected) > td {
|
|
80
|
+
background: var(--table-row-hover-bg);
|
|
81
|
+
}
|
|
82
|
+
.scrollX .ant-table-wrapper .ant-table-bordered .ant-table-thead > tr > th,
|
|
83
|
+
.scrollX .ant-table-wrapper .ant-table-bordered .ant-table-tbody > tr > td {
|
|
84
|
+
border-right: 0;
|
|
85
|
+
}
|
|
86
|
+
.scrollX .ant-table-wrapper .ant-table-thead > tr > th,
|
|
87
|
+
.scrollX .ant-table-wrapper .ant-table-tbody > tr > td {
|
|
88
|
+
border-bottom: 0;
|
|
89
|
+
}
|
|
90
|
+
.scrollPrint .ant-table-thead > tr > th {
|
|
91
|
+
text-align: center;
|
|
92
|
+
}
|
|
93
|
+
.scrollPrint .ant-table-tbody > .ant-table-row td {
|
|
94
|
+
max-width: 240px;
|
|
95
|
+
}
|
|
96
|
+
.scrollPrint .ant-table-tbody > .ant-table-row .e3wText {
|
|
97
|
+
text-align: left;
|
|
98
|
+
}
|
|
99
|
+
.scrollPrint .ant-table-tbody > .ant-table-row .e3wGridShortText {
|
|
100
|
+
text-align: center;
|
|
101
|
+
}
|
|
102
|
+
.scrollPrint .ant-table-tbody > .ant-table-row .e3wGridLongText {
|
|
103
|
+
text-align: justify;
|
|
104
|
+
}
|
|
105
|
+
.scrollPrint .ant-table-tbody > .ant-table-row .e3wGridNumber {
|
|
106
|
+
text-align: right;
|
|
107
|
+
}
|
|
108
|
+
.scrollPrint .ant-table-tbody > .ant-table-row .e3wMaxText {
|
|
109
|
+
max-width: 240px;
|
|
110
|
+
text-align: left;
|
|
111
|
+
}
|
|
112
|
+
.scrollPrint .ant-table-wrapper .ant-table-tbody > tr:nth-child(even) > td {
|
|
113
|
+
background: var(--table-header-bg);
|
|
114
|
+
}
|
|
115
|
+
.scrollPrint .ant-table-wrapper .ant-table-tbody > tr:nth-child(odd) > td {
|
|
116
|
+
background: #fff;
|
|
117
|
+
}
|
|
118
|
+
.scrollPrint .ant-table-wrapper .ant-table-tbody > tr:hover:not(.antd-table-expanded-row):not(.antd-table-row-selected) > td {
|
|
119
|
+
background: var(--table-row-hover-bg);
|
|
120
|
+
}
|
|
121
|
+
.scrollPrint .ant-table-wrapper .ant-table-bordered .ant-table-thead > tr > th,
|
|
122
|
+
.scrollPrint .ant-table-wrapper .ant-table-bordered .ant-table-tbody > tr > td {
|
|
123
|
+
border-right: 0;
|
|
124
|
+
}
|
|
125
|
+
.scrollPrint .ant-table-wrapper .ant-table-thead > tr > th,
|
|
126
|
+
.scrollPrint .ant-table-wrapper .ant-table-tbody > tr > td {
|
|
127
|
+
border-bottom: 0;
|
|
128
|
+
}
|
|
129
|
+
.butt {
|
|
130
|
+
background-color: var(--primary-color);
|
|
131
|
+
color: #fff;
|
|
132
|
+
font-size: 14px;
|
|
133
|
+
}
|
|
134
|
+
.butt:visited,
|
|
135
|
+
.butt:focus,
|
|
136
|
+
.butt:hover,
|
|
137
|
+
.butt:active {
|
|
138
|
+
background-color: var(--primary-color);
|
|
139
|
+
color: #fff;
|
|
140
|
+
}
|
|
141
|
+
.onRow tr:hover {
|
|
142
|
+
cursor: pointer;
|
|
143
|
+
}
|
|
144
|
+
@media (max-width: 768px) {
|
|
145
|
+
.gridBox :global .ant-table-tbody > .ant-table-row .e3wGridLongText {
|
|
146
|
+
text-align: left;
|
|
147
|
+
white-space: wrap;
|
|
148
|
+
word-break: normal;
|
|
149
|
+
}
|
|
150
|
+
.gridBox td a:not([href]) {
|
|
151
|
+
pointer-events: none;
|
|
152
|
+
color: #000000;
|
|
153
|
+
}
|
|
154
|
+
}
|