@banch0u/core-project-test-repository 1.8.4 → 1.9.0
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/dist/assets/css/antd.css +723 -0
- package/dist/assets/icons/index.js +182 -0
- package/dist/components/Button/index.module.scss +14 -2
- package/dist/components/Delete/Delete.js +22 -0
- package/dist/components/Delete/Delete.module.scss +22 -0
- package/dist/components/DeleteModal/DeleteModal.js +31 -0
- package/dist/components/DeleteModal/DeleteModal.module.scss +11 -0
- package/dist/components/Filter/index.js +1 -1
- package/dist/components/Input/index.js +1 -2
- package/dist/components/Input/index.module.scss +21 -12
- package/dist/components/ProfileOptions/index.module.scss +3 -3
- package/dist/components/Success/Success.js +19 -0
- package/dist/components/Success/Success.module.scss +26 -0
- package/dist/components/Table/index.js +4 -2
- package/dist/components/ViewModal/index.js +30 -0
- package/dist/helpers/paginationLength.js +3 -0
- package/dist/helpers/querySearch.js +22 -0
- package/dist/index.js +2 -0
- package/dist/layout/Header/AppSelect/index.js +28 -9
- package/dist/layout/Header/AppSelect/index.module.scss +6 -1
- package/dist/layout/Portal/index.js +23 -0
- package/dist/layout/QuestionnairesLayout/index.js +17 -0
- package/dist/layout/QuestionnairesLayout/index.module.scss +0 -0
- package/dist/layout/QuestionnairesSidebar/index.js +126 -0
- package/dist/layout/QuestionnairesSidebar/index.module.scss +76 -0
- package/dist/pages/Questionnnaires/Questionnaires.module.scss +194 -0
- package/dist/pages/Questionnnaires/QuestionnairesApplicationFormContent/constant.js +58 -0
- package/dist/pages/Questionnnaires/QuestionnairesApplicationFormContent/index.js +255 -0
- package/dist/pages/Questionnnaires/QuestionnairesCountriesContent/constant.js +58 -0
- package/dist/pages/Questionnnaires/QuestionnairesCountriesContent/index.js +247 -0
- package/dist/pages/Questionnnaires/QuestionnairesDeliveryMethodContent/constant.js +58 -0
- package/dist/pages/Questionnnaires/QuestionnairesDeliveryMethodContent/index.js +247 -0
- package/dist/pages/Questionnnaires/QuestionnairesDocumentRecieveMethodsContent/constant.js +58 -0
- package/dist/pages/Questionnnaires/QuestionnairesDocumentRecieveMethodsContent/index.js +258 -0
- package/dist/pages/Questionnnaires/QuestionnairesDocumentTypeContent/constant.js +58 -0
- package/dist/pages/Questionnnaires/QuestionnairesDocumentTypeContent/index.js +284 -0
- package/dist/pages/Questionnnaires/QuestionnairesDocumentWhomContent/constant.js +82 -0
- package/dist/pages/Questionnnaires/QuestionnairesDocumentWhomContent/index.js +331 -0
- package/dist/pages/Questionnnaires/QuestionnairesExecutionRulesContent/constant.js +58 -0
- package/dist/pages/Questionnnaires/QuestionnairesExecutionRulesContent/index.js +258 -0
- package/dist/pages/Questionnnaires/QuestionnairesMarginNoteTextsContent/constant.js +58 -0
- package/dist/pages/Questionnnaires/QuestionnairesMarginNoteTextsContent/index.js +249 -0
- package/dist/pages/Questionnnaires/QuestionnairesOrganizationsContent/constant.js +88 -0
- package/dist/pages/Questionnnaires/QuestionnairesOrganizationsContent/index.js +320 -0
- package/dist/pages/Questionnnaires/QuestionnairesStreetsContent/constant.js +58 -0
- package/dist/pages/Questionnnaires/QuestionnairesStreetsContent/index.js +240 -0
- package/dist/pages/Questionnnaires/QuestionnairesStructuresContent/constant.js +58 -0
- package/dist/pages/Questionnnaires/QuestionnairesStructuresContent/index.js +247 -0
- package/dist/pages/Questionnnaires/QuestionnairesSubtopicContent/constant.js +58 -0
- package/dist/pages/Questionnnaires/QuestionnairesSubtopicContent/index.js +317 -0
- package/dist/pages/Questionnnaires/QuestionnairesTopicContent/constant.js +58 -0
- package/dist/pages/Questionnnaires/QuestionnairesTopicContent/index.js +271 -0
- package/dist/pages/Questionnnaires/index.js +5 -0
- package/dist/routes/QuestionnaireRoutes.js +108 -0
- package/dist/store/slices/global/index.js +96 -3
- package/dist/store/slices/questionnaire/index.js +2500 -0
- package/dist/store/slices/questionnaire/service.js +1557 -0
- package/dist/store/store.js +2 -1
- package/dist/utils/path.js +30 -1
- package/package.json +2 -1
package/dist/assets/css/antd.css
CHANGED
|
@@ -115,6 +115,729 @@
|
|
|
115
115
|
color: black !important;
|
|
116
116
|
}
|
|
117
117
|
|
|
118
|
+
.ant-tooltip-arrow {
|
|
119
|
+
display: none !important;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.ant-switch-checked {
|
|
123
|
+
background-color: #219653 !important;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
.ant-checkbox-checked .ant-checkbox-inner {
|
|
128
|
+
background-color: var(--blue) !important;
|
|
129
|
+
border-color: var(--blue) !important;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.ant-checkbox-disabled .ant-checkbox-inner {
|
|
133
|
+
background-color: var(--blue) !important;
|
|
134
|
+
border-color: var(--blue) !important;
|
|
135
|
+
opacity: 0.5 !important;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.ant-checkbox-inner {
|
|
139
|
+
width: 21px !important;
|
|
140
|
+
height: 21px !important;
|
|
141
|
+
border-color: var(--blue) !important;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.ant-checkbox-inner::after {
|
|
145
|
+
border-color: var(--white) !important;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.filter .ant-form-item {
|
|
149
|
+
margin-bottom: 0px !important;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
|
|
153
|
+
.sideBar .ant-menu-title-content {
|
|
154
|
+
color: #828282;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
.sideBar .ant-menu-item-selected {
|
|
158
|
+
background-color: #deeaf6 !important;
|
|
159
|
+
color: var(--darkBlueColor) !important;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
.sideBar .ant-menu-item-selected svg path {
|
|
163
|
+
stroke: var(--darkBlueColor);
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
.sideBar .ant-menu-item-selected .ant-menu-title-content a {
|
|
167
|
+
font-weight: 500 !important;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
.sideBar .ant-menu-item {
|
|
171
|
+
padding-left: 10px !important;
|
|
172
|
+
margin-block: 12px;
|
|
173
|
+
border-radius: 4px;
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
.sideBar .ant-menu-submenu .ant-menu-submenu-title {
|
|
177
|
+
padding-left: 10px !important;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
.sideBar .ant-menu-submenu .ant-menu-item {
|
|
181
|
+
padding-left: 34px !important;
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
.sideBar .ant-menu-item-selected .ant-menu-title-content {
|
|
185
|
+
color: var(--darkBlueColor) !important;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
.sideBar .ant-menu-title-content a {}
|
|
189
|
+
|
|
190
|
+
.sideBar .ant-menu-submenu span {}
|
|
191
|
+
|
|
192
|
+
.sideBar .ant-menu-inline {
|
|
193
|
+
border-inline-end: 0 !important;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
.ant-checkbox-checked .ant-checkbox-inner {
|
|
197
|
+
background-color: var(--darkBlueColor) !important;
|
|
198
|
+
border-color: var(--darkBlueColor) !important;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
.ant-checkbox-disabled .ant-checkbox-inner {
|
|
202
|
+
background-color: var(--darkBlueColor) !important;
|
|
203
|
+
border-color: var(--darkBlueColor) !important;
|
|
204
|
+
opacity: 0.5 !important;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
.ant-checkbox-inner {
|
|
208
|
+
width: 21px !important;
|
|
209
|
+
height: 21px !important;
|
|
210
|
+
border-color: var(--darkBlueColor) !important;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
.ant-checkbox-inner::after {
|
|
214
|
+
border-color: #fff !important;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
.ant-table-row td {
|
|
218
|
+
vertical-align: middle !important;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
.ant-pagination-item {
|
|
222
|
+
border-radius: 8px !important;
|
|
223
|
+
border: 1px solid #f1f1f1 !important;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
.ant-pagination-item a {
|
|
227
|
+
color: #333333 !important;
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
.ant-pagination-item-active {
|
|
231
|
+
border-color: #016DAF !important;
|
|
232
|
+
overflow: hidden;
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
.ant-pagination-item-active a {
|
|
236
|
+
color: #fff !important;
|
|
237
|
+
background: #016DAF !important;
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
.ant-pagination-item a:hover {
|
|
241
|
+
color: var(--defaultColor) !important;
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
.ant-pagination-next,
|
|
245
|
+
.ant-pagination-prev {
|
|
246
|
+
/* display: none !important; */
|
|
247
|
+
border: 1px solid #f1f1f1;
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
.pagination_select .ant-select-selector {
|
|
251
|
+
border-color: #f1f1f1 !important;
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
.rowClassName1 {
|
|
255
|
+
background-color: #f3f3f3 !important;
|
|
256
|
+
border-radius: 10px;
|
|
257
|
+
border-width: 3px;
|
|
258
|
+
border-style: solid;
|
|
259
|
+
margin-top: 10px !important;
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
.rowClassName1 td:first-child {
|
|
263
|
+
border-top-left-radius: 4px;
|
|
264
|
+
border-bottom-left-radius: 4px;
|
|
265
|
+
border-left: 1px solid #bdc4d250 !important;
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
.rowClassName1 td:first-child {
|
|
269
|
+
border-top: 1px solid #bdc4d250 !important;
|
|
270
|
+
border-bottom: 1px solid #bdc4d250 !important;
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
.rowClassName1 td:nth-child(2) {
|
|
274
|
+
border-top: 1px solid #bdc4d250 !important;
|
|
275
|
+
border-bottom: 1px solid #bdc4d250 !important;
|
|
276
|
+
border-right: 1px solid #bdc4d250 !important;
|
|
277
|
+
border-top-right-radius: 4px;
|
|
278
|
+
border-bottom-right-radius: 4px;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
.bigTable .rowClassName1 td:nth-child(2) {
|
|
282
|
+
border-top: 1px solid #bdc4d250 !important;
|
|
283
|
+
border-bottom: 1px solid #bdc4d250 !important;
|
|
284
|
+
border-right: none !important;
|
|
285
|
+
border-top-right-radius: 0px;
|
|
286
|
+
border-bottom-right-radius: 0px;
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
.bigTable .rowClassName1 td:first-child {
|
|
290
|
+
border-top-left-radius: 0px;
|
|
291
|
+
border-bottom-left-radius: 0px;
|
|
292
|
+
border-left: none !important;
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
.active_row {
|
|
296
|
+
background-color: #f3f3f3 !important;
|
|
297
|
+
border-radius: 10px;
|
|
298
|
+
border-width: 3px;
|
|
299
|
+
border-style: solid;
|
|
300
|
+
margin-top: 10px !important;
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
.active_row td:first-child {
|
|
304
|
+
border-top-left-radius: 4px;
|
|
305
|
+
border-bottom-left-radius: 4px;
|
|
306
|
+
border-left: 1px solid #bdc4d250 !important;
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
.active_row td:first-child {
|
|
310
|
+
border-top: 1px solid #bdc4d250 !important;
|
|
311
|
+
border-bottom: 1px solid #bdc4d250 !important;
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
.active_row td:nth-child(2) {
|
|
315
|
+
border-top: 1px solid #bdc4d250 !important;
|
|
316
|
+
border-bottom: 1px solid #bdc4d250 !important;
|
|
317
|
+
border-right: 1px solid #bdc4d250 !important;
|
|
318
|
+
border-top-right-radius: 4px;
|
|
319
|
+
border-bottom-right-radius: 4px;
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
.bigTable .active_row td:nth-child(2) {
|
|
323
|
+
border-top: 1px solid #bdc4d250 !important;
|
|
324
|
+
border-bottom: 1px solid #bdc4d250 !important;
|
|
325
|
+
border-right: none !important;
|
|
326
|
+
border-top-right-radius: 0px;
|
|
327
|
+
border-bottom-right-radius: 0px;
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
.bigTable .active_row td:first-child {
|
|
331
|
+
border-top-left-radius: 0px;
|
|
332
|
+
border-bottom-left-radius: 0px;
|
|
333
|
+
border-left: none !important;
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
.ant-table table {
|
|
337
|
+
border-spacing: 0px 7px !important;
|
|
338
|
+
min-width: 96.2% !important;
|
|
339
|
+
margin: auto !important;
|
|
340
|
+
width: 90% !important;
|
|
341
|
+
background: white !important;
|
|
342
|
+
border-radius: 0 !important;
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
.qv .ant-table table {
|
|
346
|
+
border-spacing: 0 !important;
|
|
347
|
+
min-width: 100% !important;
|
|
348
|
+
margin: auto !important;
|
|
349
|
+
width: 100% !important;
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
.ant-table-header table {
|
|
353
|
+
border-spacing: 0px !important;
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
.bigTable .ant-table .ant-table-body table {
|
|
357
|
+
border-spacing: 0px 7px !important;
|
|
358
|
+
|
|
359
|
+
min-width: 100% !important;
|
|
360
|
+
margin: auto !important;
|
|
361
|
+
width: 100% !important;
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
.modal_table .ant-table .ant-table-body table {
|
|
365
|
+
border-spacing: 0px 7px !important;
|
|
366
|
+
|
|
367
|
+
min-width: 99% !important;
|
|
368
|
+
margin: auto !important;
|
|
369
|
+
width: 99% !important;
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
.bigTable .rowClassName1 {
|
|
373
|
+
background-color: #f3f3f3 !important;
|
|
374
|
+
border-radius: 4px;
|
|
375
|
+
border-width: 3px;
|
|
376
|
+
border-style: solid;
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
.bigTable .active_row {
|
|
380
|
+
background-color: #a0bfde !important;
|
|
381
|
+
border-radius: 4px;
|
|
382
|
+
border-width: 3px;
|
|
383
|
+
border-style: solid;
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
.modal_table .rowClassName2 {
|
|
387
|
+
border-radius: 4px;
|
|
388
|
+
border-width: 3px;
|
|
389
|
+
border-style: solid;
|
|
390
|
+
}
|
|
391
|
+
|
|
392
|
+
.bigTable .rowClassName1 td:first-child {
|
|
393
|
+
background-color: #fff !important;
|
|
394
|
+
border-top: none !important;
|
|
395
|
+
border-bottom: none !important;
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
.bigTable .rowClassName1 td:last-child {
|
|
399
|
+
background-color: #fff !important;
|
|
400
|
+
border-top: none !important;
|
|
401
|
+
border-bottom: none !important;
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
.bigTable .rowClassName1 td:nth-child(2) {
|
|
405
|
+
border-top: none !important;
|
|
406
|
+
border-bottom: none !important;
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
.bigTable .rowClassName1 td {
|
|
410
|
+
background-color: #f3f3f3 !important;
|
|
411
|
+
border-top: none !important;
|
|
412
|
+
border-bottom: none !important;
|
|
413
|
+
transition: 250ms;
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
.bigTable .active_row td:first-child {
|
|
417
|
+
background-color: #fff !important;
|
|
418
|
+
border-top: none !important;
|
|
419
|
+
border-bottom: none !important;
|
|
420
|
+
}
|
|
421
|
+
|
|
422
|
+
.bigTable .active_row td:last-child {
|
|
423
|
+
background-color: #fff !important;
|
|
424
|
+
border-top: none !important;
|
|
425
|
+
border-bottom: none !important;
|
|
426
|
+
}
|
|
427
|
+
|
|
428
|
+
.bigTable .active_row td:nth-child(2) {
|
|
429
|
+
border-top: none !important;
|
|
430
|
+
border-bottom: none !important;
|
|
431
|
+
}
|
|
432
|
+
|
|
433
|
+
.bigTable .active_row td {
|
|
434
|
+
background-color: #a0bfde !important;
|
|
435
|
+
border-top: none !important;
|
|
436
|
+
border-bottom: none !important;
|
|
437
|
+
transition: 250ms;
|
|
438
|
+
}
|
|
439
|
+
|
|
440
|
+
.modal_table .rowClassName2 td {
|
|
441
|
+
background-color: #ededed !important;
|
|
442
|
+
border-top: none !important;
|
|
443
|
+
border-bottom: none !important;
|
|
444
|
+
transition: 250ms;
|
|
445
|
+
}
|
|
446
|
+
|
|
447
|
+
.bigTable .rowClassName1:hover td {
|
|
448
|
+
background-color: #deeaf6 !important;
|
|
449
|
+
transition: 250ms;
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
.bigTable .rowClassName1:hover td:first-child {
|
|
453
|
+
background-color: #fff !important;
|
|
454
|
+
}
|
|
455
|
+
|
|
456
|
+
.bigTable .rowClassName1:hover td:last-child {
|
|
457
|
+
background-color: #fff !important;
|
|
458
|
+
}
|
|
459
|
+
|
|
460
|
+
/* .bigTable .active_row:hover td {
|
|
461
|
+
background-color: #deeaf6 !important;
|
|
462
|
+
transition: 250ms;
|
|
463
|
+
}
|
|
464
|
+
.bigTable .active_row:hover td:first-child {
|
|
465
|
+
background-color: #fff !important;
|
|
466
|
+
}
|
|
467
|
+
.bigTable .active_row:hover td:last-child {
|
|
468
|
+
background-color: #fff !important;
|
|
469
|
+
} */
|
|
470
|
+
.ant-table-wrapper .ant-table-body .ant-table-tbody {
|
|
471
|
+
transform: translateY(-7px) !important;
|
|
472
|
+
}
|
|
473
|
+
|
|
474
|
+
.bigTable .rowClassName1 td:nth-child(2) {
|
|
475
|
+
border-top-left-radius: 4px;
|
|
476
|
+
border-bottom-left-radius: 4px;
|
|
477
|
+
}
|
|
478
|
+
|
|
479
|
+
.bigTable .active_row td:nth-child(2) {
|
|
480
|
+
border-top-left-radius: 4px;
|
|
481
|
+
border-bottom-left-radius: 4px;
|
|
482
|
+
}
|
|
483
|
+
|
|
484
|
+
.modal_table .rowClassName2 td:nth-child(1) {
|
|
485
|
+
border-top-left-radius: 8px;
|
|
486
|
+
border-bottom-left-radius: 8px;
|
|
487
|
+
}
|
|
488
|
+
|
|
489
|
+
.bigTable .rowClassName1 td:last-child {
|
|
490
|
+
border-top-right-radius: 4px;
|
|
491
|
+
border-bottom-right-radius: 4px;
|
|
492
|
+
}
|
|
493
|
+
|
|
494
|
+
.bigTable .active_row td:last-child {
|
|
495
|
+
border-top-right-radius: 4px;
|
|
496
|
+
border-bottom-right-radius: 4px;
|
|
497
|
+
}
|
|
498
|
+
|
|
499
|
+
.modal_table .rowClassName2 td:last-child {
|
|
500
|
+
border-top-right-radius: 8px;
|
|
501
|
+
border-bottom-right-radius: 8px;
|
|
502
|
+
}
|
|
503
|
+
|
|
504
|
+
.bigTable .rowClassName1 td:nth-last-child(2) {
|
|
505
|
+
border-top-right-radius: 4px;
|
|
506
|
+
border-bottom-right-radius: 4px;
|
|
507
|
+
}
|
|
508
|
+
|
|
509
|
+
.bigTable .active_row td:nth-last-child(2) {
|
|
510
|
+
border-top-right-radius: 4px;
|
|
511
|
+
border-bottom-right-radius: 4px;
|
|
512
|
+
}
|
|
513
|
+
|
|
514
|
+
.ant-switch-checked {
|
|
515
|
+
background-color: #219653 !important;
|
|
516
|
+
}
|
|
517
|
+
|
|
518
|
+
.ant-form-item-label {
|
|
519
|
+
padding-bottom: 0 !important;
|
|
520
|
+
}
|
|
521
|
+
|
|
522
|
+
.ant-upload-wrapper .ant-upload-drag {
|
|
523
|
+
height: 193px !important;
|
|
524
|
+
background: #f2f7ff !important;
|
|
525
|
+
border: 2px dashed #86a8ff !important;
|
|
526
|
+
border-radius: 8px !important;
|
|
527
|
+
}
|
|
528
|
+
|
|
529
|
+
.ant-form-item-control-input {
|
|
530
|
+
border-color: #b9b9b9 !important;
|
|
531
|
+
}
|
|
532
|
+
|
|
533
|
+
/* Error state input border color */
|
|
534
|
+
.ant-form-item-has-error .ant-form-item-control-input {
|
|
535
|
+
border-color: red;
|
|
536
|
+
}
|
|
537
|
+
|
|
538
|
+
.filter .ant-form-item {
|
|
539
|
+
margin-bottom: 0px !important;
|
|
540
|
+
}
|
|
541
|
+
|
|
542
|
+
.ant-modal-title {
|
|
543
|
+
font-family: Inter !important;
|
|
544
|
+
font-size: 30px !important;
|
|
545
|
+
font-weight: 500 !important;
|
|
546
|
+
line-height: 45px !important;
|
|
547
|
+
text-align: left !important;
|
|
548
|
+
color: #0b0b0b !important;
|
|
549
|
+
}
|
|
550
|
+
|
|
551
|
+
.delete_modal .ant-modal .ant-modal-content {
|
|
552
|
+
padding: 12px !important;
|
|
553
|
+
}
|
|
554
|
+
|
|
555
|
+
.questionnaires_menu .ant-menu-item {
|
|
556
|
+
background: #f2f2f2;
|
|
557
|
+
margin-block: 14px;
|
|
558
|
+
padding-inline: 15px !important;
|
|
559
|
+
transition: 250ms;
|
|
560
|
+
}
|
|
561
|
+
|
|
562
|
+
.questionnaires_menu .ant-menu-item:hover {
|
|
563
|
+
background: #deeaf6 !important;
|
|
564
|
+
transition: 250ms;
|
|
565
|
+
}
|
|
566
|
+
|
|
567
|
+
.questionnaires_menu .ant-menu-item .ant-menu-title-content {
|
|
568
|
+
margin-left: 0px !important;
|
|
569
|
+
}
|
|
570
|
+
|
|
571
|
+
.questionnaires_menu .ant-menu-item-selected {
|
|
572
|
+
border-left: 5px solid var(--darkBlueColor) !important;
|
|
573
|
+
background: #deeaf6 !important;
|
|
574
|
+
padding-inline: 10px !important;
|
|
575
|
+
}
|
|
576
|
+
|
|
577
|
+
.questionnaires_menu .ant-menu-item-selected .ant-menu-title-content {
|
|
578
|
+
margin-left: 0px !important;
|
|
579
|
+
}
|
|
580
|
+
|
|
581
|
+
.questionnaires_menu .ant-menu {
|
|
582
|
+
border-inline-end: unset !important;
|
|
583
|
+
}
|
|
584
|
+
|
|
585
|
+
.ant-modal-footer {
|
|
586
|
+
margin-top: 0 !important;
|
|
587
|
+
}
|
|
588
|
+
|
|
589
|
+
.modal_table_search .rowClassName1 td:nth-child(2) {
|
|
590
|
+
border-top-right-radius: 0px;
|
|
591
|
+
border-bottom-right-radius: 0px;
|
|
592
|
+
}
|
|
593
|
+
|
|
594
|
+
.modal_table_search .rowClassName1 td:first-child {
|
|
595
|
+
border-top-left-radius: 0px;
|
|
596
|
+
border-bottom-left-radius: 0px;
|
|
597
|
+
}
|
|
598
|
+
|
|
599
|
+
.modal_table_search .ant-table .ant-table-body table {
|
|
600
|
+
border-spacing: 0px 5px !important;
|
|
601
|
+
|
|
602
|
+
min-width: 98% !important;
|
|
603
|
+
margin: auto !important;
|
|
604
|
+
width: 98% !important;
|
|
605
|
+
}
|
|
606
|
+
|
|
607
|
+
.modal_table_search .rowClassName1 {
|
|
608
|
+
background-color: #f3f3f3 !important;
|
|
609
|
+
border-radius: 4px;
|
|
610
|
+
border-width: 3px;
|
|
611
|
+
border-style: solid;
|
|
612
|
+
}
|
|
613
|
+
|
|
614
|
+
.modal_table_search .rowClassName1 td:first-child {
|
|
615
|
+
background-color: #fff !important;
|
|
616
|
+
}
|
|
617
|
+
|
|
618
|
+
.modal_table_search .rowClassName1 td {
|
|
619
|
+
background-color: #f3f3f3 !important;
|
|
620
|
+
border-top: none !important;
|
|
621
|
+
border-bottom: none !important;
|
|
622
|
+
transition: 250ms;
|
|
623
|
+
}
|
|
624
|
+
|
|
625
|
+
.modal_table_search .rowClassName1:hover td {
|
|
626
|
+
background-color: #deeaf6 !important;
|
|
627
|
+
transition: 250ms;
|
|
628
|
+
}
|
|
629
|
+
|
|
630
|
+
.modal_table_search .rowClassName1:hover td:first-child {
|
|
631
|
+
background-color: #fff !important;
|
|
632
|
+
}
|
|
633
|
+
|
|
634
|
+
.ant-table-wrapper .ant-table-body .ant-table-tbody {
|
|
635
|
+
transform: translateY(-5px) !important;
|
|
636
|
+
}
|
|
637
|
+
|
|
638
|
+
.modal_table_search .rowClassName1 td:nth-child(2) {
|
|
639
|
+
border-top-left-radius: 4px;
|
|
640
|
+
border-bottom-left-radius: 4px;
|
|
641
|
+
}
|
|
642
|
+
|
|
643
|
+
.modal_table_search .rowClassName1 td:last-child {
|
|
644
|
+
border-top-right-radius: 4px;
|
|
645
|
+
border-bottom-right-radius: 4px;
|
|
646
|
+
}
|
|
647
|
+
|
|
648
|
+
.modal_table_search .active_row td:nth-child(2) {
|
|
649
|
+
border-top-right-radius: 0px;
|
|
650
|
+
border-bottom-right-radius: 0px;
|
|
651
|
+
}
|
|
652
|
+
|
|
653
|
+
.modal_table_search .active_row td:first-child {
|
|
654
|
+
border-top-left-radius: 0px;
|
|
655
|
+
border-bottom-left-radius: 0px;
|
|
656
|
+
}
|
|
657
|
+
|
|
658
|
+
.modal_table_search .active_row {
|
|
659
|
+
background-color: #a0bfde !important;
|
|
660
|
+
border-radius: 4px;
|
|
661
|
+
border-width: 3px;
|
|
662
|
+
border-style: solid;
|
|
663
|
+
}
|
|
664
|
+
|
|
665
|
+
.modal_table_search .active_row td:first-child {
|
|
666
|
+
background-color: #fff !important;
|
|
667
|
+
}
|
|
668
|
+
|
|
669
|
+
.modal_table_search .active_row td {
|
|
670
|
+
background-color: #a0bfde !important;
|
|
671
|
+
border-top: none !important;
|
|
672
|
+
border-bottom: none !important;
|
|
673
|
+
transition: 250ms;
|
|
674
|
+
}
|
|
675
|
+
|
|
676
|
+
/* .modal_table_search .active_row:hover td {
|
|
677
|
+
background-color: #deeaf6 !important;
|
|
678
|
+
transition: 250ms;
|
|
679
|
+
}
|
|
680
|
+
.modal_table_search .active_row:hover td:first-child {
|
|
681
|
+
background-color: #fff !important;
|
|
682
|
+
} */
|
|
683
|
+
|
|
684
|
+
.modal_table_search .active_row td:nth-child(2) {
|
|
685
|
+
border-top-left-radius: 4px;
|
|
686
|
+
border-bottom-left-radius: 4px;
|
|
687
|
+
}
|
|
688
|
+
|
|
689
|
+
.modal_table_search .active_row td:last-child {
|
|
690
|
+
border-top-right-radius: 4px;
|
|
691
|
+
border-bottom-right-radius: 4px;
|
|
692
|
+
}
|
|
693
|
+
|
|
694
|
+
.modal_table_1 table {
|
|
695
|
+
border-spacing: 0px !important;
|
|
696
|
+
width: 100% !important;
|
|
697
|
+
}
|
|
698
|
+
|
|
699
|
+
.modal_table_1 .ant-table-wrapper .ant-table-body .ant-table-tbody {
|
|
700
|
+
transform: translateY(-20px) !important;
|
|
701
|
+
}
|
|
702
|
+
|
|
703
|
+
.modal_table_search .hover_row td:nth-child(2) {
|
|
704
|
+
border-top-right-radius: 0px;
|
|
705
|
+
border-bottom-right-radius: 0px;
|
|
706
|
+
}
|
|
707
|
+
|
|
708
|
+
.modal_table_search .hover_row td:first-child {
|
|
709
|
+
border-top-left-radius: 0px;
|
|
710
|
+
border-bottom-left-radius: 0px;
|
|
711
|
+
}
|
|
712
|
+
|
|
713
|
+
.modal_table_search .hover_row {
|
|
714
|
+
background-color: #ddeaf6 !important;
|
|
715
|
+
border-radius: 4px;
|
|
716
|
+
border-width: 3px;
|
|
717
|
+
border-style: solid;
|
|
718
|
+
}
|
|
719
|
+
|
|
720
|
+
.modal_table_search .hover_row td:first-child {
|
|
721
|
+
background-color: #fff !important;
|
|
722
|
+
}
|
|
723
|
+
|
|
724
|
+
.modal_table_search .hover_row td {
|
|
725
|
+
background-color: #ddeaf6 !important;
|
|
726
|
+
border-top: none !important;
|
|
727
|
+
border-bottom: none !important;
|
|
728
|
+
transition: 250ms;
|
|
729
|
+
}
|
|
730
|
+
|
|
731
|
+
.modal_table_search .hover_row td:nth-child(2) {
|
|
732
|
+
border-top-left-radius: 4px;
|
|
733
|
+
border-bottom-left-radius: 4px;
|
|
734
|
+
}
|
|
735
|
+
|
|
736
|
+
.modal_table_search .hover_row td:last-child {
|
|
737
|
+
border-top-right-radius: 4px;
|
|
738
|
+
border-bottom-right-radius: 4px;
|
|
739
|
+
}
|
|
740
|
+
|
|
741
|
+
.bigTable .hover_row td:nth-child(2) {
|
|
742
|
+
border-top-left-radius: 4px;
|
|
743
|
+
border-bottom-left-radius: 4px;
|
|
744
|
+
}
|
|
745
|
+
|
|
746
|
+
.bigTable .hover_row td:last-child {
|
|
747
|
+
border-top-right-radius: 4px;
|
|
748
|
+
border-bottom-right-radius: 4px;
|
|
749
|
+
}
|
|
750
|
+
|
|
751
|
+
.bigTable .hover_row td:nth-last-child(2) {
|
|
752
|
+
border-top-right-radius: 4px;
|
|
753
|
+
border-bottom-right-radius: 4px;
|
|
754
|
+
}
|
|
755
|
+
|
|
756
|
+
.hover_row {
|
|
757
|
+
background-color: #f3f3f3 !important;
|
|
758
|
+
border-radius: 10px;
|
|
759
|
+
border-width: 3px;
|
|
760
|
+
border-style: solid;
|
|
761
|
+
margin-top: 10px !important;
|
|
762
|
+
}
|
|
763
|
+
|
|
764
|
+
.hover_row td:first-child {
|
|
765
|
+
border-top-left-radius: 4px;
|
|
766
|
+
border-bottom-left-radius: 4px;
|
|
767
|
+
border-left: 1px solid #bdc4d250 !important;
|
|
768
|
+
}
|
|
769
|
+
|
|
770
|
+
.hover_row td:first-child {
|
|
771
|
+
border-top: 1px solid #bdc4d250 !important;
|
|
772
|
+
border-bottom: 1px solid #bdc4d250 !important;
|
|
773
|
+
}
|
|
774
|
+
|
|
775
|
+
.hover_row td:nth-child(2) {
|
|
776
|
+
border-top: 1px solid #bdc4d250 !important;
|
|
777
|
+
border-bottom: 1px solid #bdc4d250 !important;
|
|
778
|
+
border-right: 1px solid #bdc4d250 !important;
|
|
779
|
+
border-top-right-radius: 4px;
|
|
780
|
+
border-bottom-right-radius: 4px;
|
|
781
|
+
}
|
|
782
|
+
|
|
783
|
+
.bigTable .hover_row td:nth-child(2) {
|
|
784
|
+
border-top: 1px solid #bdc4d250 !important;
|
|
785
|
+
border-bottom: 1px solid #bdc4d250 !important;
|
|
786
|
+
border-right: none !important;
|
|
787
|
+
border-top-right-radius: 0px;
|
|
788
|
+
border-bottom-right-radius: 0px;
|
|
789
|
+
}
|
|
790
|
+
|
|
791
|
+
.bigTable .hover_row td:first-child {
|
|
792
|
+
border-top-left-radius: 0px;
|
|
793
|
+
border-bottom-left-radius: 0px;
|
|
794
|
+
border-left: none !important;
|
|
795
|
+
}
|
|
796
|
+
|
|
797
|
+
.bigTable .hover_row td:first-child {
|
|
798
|
+
background-color: #fff !important;
|
|
799
|
+
border-top: none !important;
|
|
800
|
+
border-bottom: none !important;
|
|
801
|
+
}
|
|
802
|
+
|
|
803
|
+
.bigTable .hover_row td:last-child {
|
|
804
|
+
background-color: #fff !important;
|
|
805
|
+
border-top: none !important;
|
|
806
|
+
border-bottom: none !important;
|
|
807
|
+
}
|
|
808
|
+
|
|
809
|
+
.bigTable .hover_row td:nth-child(2) {
|
|
810
|
+
border-top: none !important;
|
|
811
|
+
border-bottom: none !important;
|
|
812
|
+
}
|
|
813
|
+
|
|
814
|
+
.bigTable .hover_row td {
|
|
815
|
+
background-color: #ddeaf6 !important;
|
|
816
|
+
border-top: none !important;
|
|
817
|
+
border-bottom: none !important;
|
|
818
|
+
transition: 250ms;
|
|
819
|
+
}
|
|
820
|
+
|
|
821
|
+
.bigTable .hover_row {
|
|
822
|
+
background-color: #ddeaf6 !important;
|
|
823
|
+
border-radius: 4px;
|
|
824
|
+
border-width: 3px;
|
|
825
|
+
border-style: solid;
|
|
826
|
+
}
|
|
827
|
+
|
|
828
|
+
body {
|
|
829
|
+
overflow: hidden !important;
|
|
830
|
+
}
|
|
831
|
+
|
|
832
|
+
.ant-tooltip-inner {
|
|
833
|
+
background-color: #fff !important;
|
|
834
|
+
color: black !important;
|
|
835
|
+
}
|
|
836
|
+
|
|
837
|
+
.ant-tooltip-inner a {
|
|
838
|
+
color: black !important;
|
|
839
|
+
}
|
|
840
|
+
|
|
118
841
|
.ant-tooltip-arrow {
|
|
119
842
|
display: none !important;
|
|
120
843
|
}
|