datastake-daf 0.6.99 → 0.6.100

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.
Files changed (56) hide show
  1. package/.vscode/settings.json +13 -0
  2. package/dist/components/index.js +114 -54
  3. package/dist/style/datastake/_index.css +5 -0
  4. package/dist/style/datastake/datastake.css +5081 -0
  5. package/dist/style/datastake/fonts/Outfit-Black.ttf +0 -0
  6. package/dist/style/datastake/fonts/Outfit-Bold.ttf +0 -0
  7. package/dist/style/datastake/fonts/Outfit-ExtraBold.ttf +0 -0
  8. package/dist/style/datastake/fonts/Outfit-ExtraLight.ttf +0 -0
  9. package/dist/style/datastake/fonts/Outfit-Light.ttf +0 -0
  10. package/dist/style/datastake/fonts/Outfit-Medium.ttf +0 -0
  11. package/dist/style/datastake/fonts/Outfit-Regular.ttf +0 -0
  12. package/dist/style/datastake/fonts/Outfit-SemiBold.ttf +0 -0
  13. package/dist/style/datastake/fonts/Outfit-Thin.ttf +0 -0
  14. package/dist/style/datastake/fonts/outfit.css +62 -0
  15. package/dist/style/datastake/fonts/sf-ui-display-black-58646a6b80d5a.woff +0 -0
  16. package/dist/style/datastake/fonts/sf-ui-display-bold-58646a511e3d9.woff +0 -0
  17. package/dist/style/datastake/fonts/sf-ui-display-heavy-586470160b9e5.woff +0 -0
  18. package/dist/style/datastake/fonts/sf-ui-display-light-58646b33e0551.woff +0 -0
  19. package/dist/style/datastake/fonts/sf-ui-display-medium-58646be638f96.woff +0 -0
  20. package/dist/style/datastake/fonts/sf-ui-display-semibold-58646eddcae92.woff +0 -0
  21. package/dist/style/datastake/fonts/sf-ui-display-thin-58646e9b26e8b.woff +0 -0
  22. package/dist/style/datastake/fonts/sf-ui-display-ultralight-58646b19bf205.woff +0 -0
  23. package/dist/style/datastake/fonts/sfDisplay.css +59 -0
  24. package/dist/style/datastake/leaflet.css +671 -0
  25. package/dist/style/datastake/leaflet.markercluster.css +60 -0
  26. package/dist/style/style.css +1 -0
  27. package/package.json +1 -1
  28. package/rollup.config.js +83 -41
  29. package/src/@daf/core/components/Dashboard/Map/helper.js +439 -434
  30. package/src/@daf/core/components/Dashboard/Map/storyConfig1.js +233 -230
  31. package/src/helpers/Map.js +82 -6
  32. package/src/styles/_index.scss +1 -1
  33. package/src/styles/datastake/_index.css +5 -0
  34. package/src/styles/datastake/datastake.css +5081 -0
  35. package/src/styles/datastake/fonts/Outfit-Black.ttf +0 -0
  36. package/src/styles/datastake/fonts/Outfit-Bold.ttf +0 -0
  37. package/src/styles/datastake/fonts/Outfit-ExtraBold.ttf +0 -0
  38. package/src/styles/datastake/fonts/Outfit-ExtraLight.ttf +0 -0
  39. package/src/styles/datastake/fonts/Outfit-Light.ttf +0 -0
  40. package/src/styles/datastake/fonts/Outfit-Medium.ttf +0 -0
  41. package/src/styles/datastake/fonts/Outfit-Regular.ttf +0 -0
  42. package/src/styles/datastake/fonts/Outfit-SemiBold.ttf +0 -0
  43. package/src/styles/datastake/fonts/Outfit-Thin.ttf +0 -0
  44. package/src/styles/datastake/fonts/outfit.css +62 -0
  45. package/src/styles/datastake/fonts/sf-ui-display-black-58646a6b80d5a.woff +0 -0
  46. package/src/styles/datastake/fonts/sf-ui-display-bold-58646a511e3d9.woff +0 -0
  47. package/src/styles/datastake/fonts/sf-ui-display-heavy-586470160b9e5.woff +0 -0
  48. package/src/styles/datastake/fonts/sf-ui-display-light-58646b33e0551.woff +0 -0
  49. package/src/styles/datastake/fonts/sf-ui-display-medium-58646be638f96.woff +0 -0
  50. package/src/styles/datastake/fonts/sf-ui-display-semibold-58646eddcae92.woff +0 -0
  51. package/src/styles/datastake/fonts/sf-ui-display-thin-58646e9b26e8b.woff +0 -0
  52. package/src/styles/datastake/fonts/sf-ui-display-ultralight-58646b19bf205.woff +0 -0
  53. package/src/styles/datastake/fonts/sfDisplay.css +59 -0
  54. package/src/styles/datastake/leaflet.css +671 -0
  55. package/src/styles/datastake/leaflet.markercluster.css +60 -0
  56. package/src/styles/datastake.scss +1 -4454
@@ -1,4454 +1 @@
1
- .loading-indicator {
2
- align-self: center;
3
- max-width: 20px;
4
- max-height: 20px;
5
- min-width: 20px;
6
- min-height: 20px;
7
- width: 20px;
8
- height: 20px;
9
- border: 3px solid blue;
10
- border-radius: 10px;
11
- animation-name: rotate;
12
- animation-timing-function: linear;
13
- animation-duration: 500ms;
14
- animation-iteration-count: infinite;
15
- }
16
-
17
- .loading-indicator::after {
18
- content: "";
19
- position: absolute;
20
- top: -20%;
21
- left: -20%;
22
- width: 50%;
23
- height: 50%;
24
- background-color: white;
25
- }
26
-
27
- @keyframes rotate {
28
- from {
29
- transform: rotate(0);
30
- }
31
-
32
- to {
33
- transform: rotate(360deg);
34
- }
35
- }
36
-
37
- .grecaptcha-badge {
38
- visibility: hidden !important;
39
- }
40
-
41
- .loader {
42
- position: fixed;
43
- margin: auto;
44
- top: 45%;
45
- left: 50%;
46
- font-size: 40px;
47
- z-index: 1000;
48
- color: #1890ff;
49
- }
50
-
51
- .loading-container {
52
- position: absolute;
53
- top: 0;
54
- left: 0;
55
- width: 100%;
56
- height: 100%;
57
- background: rgba(255, 255, 255, 0.7);
58
- z-index: 1000;
59
- }
60
-
61
- .loading-container.dashboard-with-sources {
62
- top: 57px;
63
- left: 250px;
64
- width: calc(100% - 250px);
65
- height: calc(100% - 57px);
66
- }
67
-
68
- .placeholder-loader {
69
- background-color: #dee2e6;
70
- width: 100%;
71
- height: 100dvh;
72
- min-width: 40px;
73
- min-height: 20px;
74
- flex: 1;
75
- border-radius: 4px;
76
- position: relative;
77
- }
78
-
79
- .placeholder-loader::after,
80
- .placeholder-loader::before {
81
- content: "";
82
- position: absolute;
83
- height: 100%;
84
- width: 40px;
85
- transform: skew(-20deg);
86
- background-color: #f1f5f7;
87
- animation-name: drag;
88
- animation-timing-function: linear;
89
- animation-duration: 500ms;
90
- animation-iteration-count: infinite;
91
- }
92
-
93
- .placeholder-loader::before {
94
- transform: skew(-20deg) translateX(200px);
95
- }
96
-
97
- @-webkit-keyframes drag {
98
- from {
99
- left: 0;
100
- }
101
-
102
- to {
103
- left: 100%;
104
- }
105
- }
106
-
107
- @-moz-keyframes drag {
108
- from {
109
- left: 0;
110
- }
111
-
112
- to {
113
- left: 100%;
114
- }
115
- }
116
-
117
- @keyframes drag {
118
- from {
119
- left: 0;
120
- }
121
-
122
- to {
123
- left: 100%;
124
- }
125
- }
126
-
127
- .toasts {
128
- position: fixed;
129
- top: 0;
130
- right: 0;
131
- height: 100%;
132
- padding: 1rem;
133
- display: flex;
134
- flex-flow: column nowrap;
135
- z-index: 100;
136
- }
137
-
138
- .toasts>div {
139
- width: 25rem;
140
- display: flex;
141
- border-radius: 0.2rem;
142
- color: white;
143
- padding: 0.8rem 1rem;
144
- cursor: pointer;
145
- margin-bottom: 10px;
146
- position: relative;
147
- display: flex;
148
- flex-flow: column nowrap;
149
- transition: transform 200ms, background-color 200ms;
150
- animation: slide-in 400ms cubic-bezier(0.15, 0.4, 0.45, 1.17);
151
- }
152
-
153
- @-webkit-keyframes slide-in {
154
- from {
155
- transform: translateX(200%);
156
- }
157
-
158
- to {
159
- transform: translateX(0);
160
- }
161
- }
162
-
163
- @-moz-keyframes slide-in {
164
- from {
165
- transform: translateX(200%);
166
- }
167
-
168
- to {
169
- transform: translateX(0);
170
- }
171
- }
172
-
173
- @keyframes slide-in {
174
- from {
175
- transform: translateX(200%);
176
- }
177
-
178
- to {
179
- transform: translateX(0);
180
- }
181
- }
182
-
183
- @-webkit-keyframes slide-out {
184
- from {
185
- transform: translateX(0%);
186
- }
187
-
188
- to {
189
- transform: translateX(200%);
190
- }
191
- }
192
-
193
- @-moz-keyframes slide-out {
194
- from {
195
- transform: translateX(0%);
196
- }
197
-
198
- to {
199
- transform: translateX(200%);
200
- }
201
- }
202
-
203
- @keyframes slide-out {
204
- from {
205
- transform: translateX(0%);
206
- }
207
-
208
- to {
209
- transform: translateX(200%);
210
- }
211
- }
212
-
213
- .toasts>div.success {
214
- background-color: #1abc9c;
215
- box-shadow: 0 3px 10px 0 rgba(105, 105, 105, 0.1);
216
- }
217
-
218
- .toasts>div.success:hover {
219
- background-color: #17a689;
220
- transform: translateX(-15px);
221
- }
222
-
223
- .toasts>div.success:hover>i {
224
- opacity: 1;
225
- }
226
-
227
- .toasts>div.success:active {
228
- background-color: #148f77;
229
- }
230
-
231
- .toasts>div.success>.progress-indicator {
232
- background-color: #0e6252;
233
- }
234
-
235
- .toasts>div.danger {
236
- background-color: #f1556c;
237
- box-shadow: 0 3px 10px 0 rgba(105, 105, 105, 0.1);
238
- }
239
-
240
- .toasts>div.danger:hover {
241
- background-color: #ef3d58;
242
- transform: translateX(-15px);
243
- }
244
-
245
- .toasts>div.danger:hover>i {
246
- opacity: 1;
247
- }
248
-
249
- .toasts>div.danger:active {
250
- background-color: #ed2643;
251
- }
252
-
253
- .toasts>div.danger>.progress-indicator {
254
- background-color: #cf112d;
255
- }
256
-
257
- .toasts>div.info {
258
- background-color: #4fc6e1;
259
- box-shadow: 0 3px 10px 0 rgba(105, 105, 105, 0.1);
260
- }
261
-
262
- .toasts>div.info:hover {
263
- background-color: #39bfdd;
264
- transform: translateX(-15px);
265
- }
266
-
267
- .toasts>div.info:hover>i {
268
- opacity: 1;
269
- }
270
-
271
- .toasts>div.info:active {
272
- background-color: #25b7d8;
273
- }
274
-
275
- .toasts>div.info>.progress-indicator {
276
- background-color: #1d92ad;
277
- }
278
-
279
- .toasts>div.warning {
280
- background-color: #f7b84b;
281
- box-shadow: 0 3px 10px 0 rgba(105, 105, 105, 0.1);
282
- }
283
-
284
- .toasts>div.warning:hover {
285
- background-color: #f6ae33;
286
- transform: translateX(-15px);
287
- }
288
-
289
- .toasts>div.warning:hover>i {
290
- opacity: 1;
291
- }
292
-
293
- .toasts>div.warning:active {
294
- background-color: #f5a51a;
295
- }
296
-
297
- .toasts>div.warning>.progress-indicator {
298
- background-color: #d38909;
299
- }
300
-
301
- .toasts>div.default {
302
- background-color: white;
303
- box-shadow: 0 3px 10px 0 rgba(105, 105, 105, 0.1);
304
- color: #343a40;
305
- border: 1px solid #dee2e6;
306
- }
307
-
308
- .toasts>div.default:hover {
309
- background-color: #f2f2f2;
310
- transform: translateX(-15px);
311
- }
312
-
313
- .toasts>div.default:hover>i {
314
- opacity: 1;
315
- }
316
-
317
- .toasts>div.default:active {
318
- background-color: #e6e6e6;
319
- }
320
-
321
- .toasts>div.default>.progress-indicator {
322
- background-color: #cccccc;
323
- }
324
-
325
- .toasts>div.closed {
326
- animation: slide-out 1s;
327
- animation-fill-mode: forwards;
328
- }
329
-
330
- .toasts>div>.progress-indicator {
331
- position: absolute;
332
- border-radius: 2px;
333
- bottom: 4px;
334
- left: 2%;
335
- height: 4px;
336
- animation: progress 3s linear;
337
- }
338
-
339
- @-webkit-keyframes progress {
340
- from {
341
- width: 0;
342
- }
343
-
344
- to {
345
- width: 96%;
346
- }
347
- }
348
-
349
- @-moz-keyframes progress {
350
- from {
351
- width: 0;
352
- }
353
-
354
- to {
355
- width: 96%;
356
- }
357
- }
358
-
359
- @keyframes progress {
360
- from {
361
- width: 0;
362
- }
363
-
364
- to {
365
- width: 96%;
366
- }
367
- }
368
-
369
- .toasts>div>i {
370
- color: #98a6ad;
371
- position: absolute;
372
- right: -20px;
373
- top: 50%;
374
- transform: translateY(-50%);
375
- transition: opacity 300ms;
376
- opacity: 0;
377
- }
378
-
379
- .toasts>div>.toast-title {
380
- font-size: 1.2em;
381
- font-weight: 700;
382
- margin-bottom: 3px;
383
- }
384
-
385
- .toasts>div>.toast-content {
386
- font-weight: 600;
387
- }
388
-
389
- .toasts>div>.toast-actions {
390
- display: flex;
391
- flex-flow: row wrap;
392
- margin-top: 5px;
393
- }
394
-
395
- .toasts>div>.toast-actions>button {
396
- flex: 1;
397
- }
398
-
399
- .toasts>div>.toast-actions>button:not(:last-of-type) {
400
- margin-right: 10px;
401
- }
402
-
403
- .loader-container {
404
- padding: 32px;
405
- border-radius: 5px;
406
- background: white;
407
- border: 1px solid rgba(0, 0, 0, 0.1);
408
- display: flex;
409
- position: relative;
410
- margin: auto;
411
- -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
412
- -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
413
- box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
414
- text-align: center;
415
- }
416
-
417
- h1 {
418
- font-size: 20px;
419
- font-weight: 400;
420
- color: rgba(0, 0, 0, 0.5);
421
- }
422
-
423
- .loaderizer {
424
- margin: 16px auto;
425
- width: 50px;
426
- height: 50px;
427
- border-radius: 50%;
428
- perspective: 800px;
429
- }
430
-
431
- .inner {
432
- position: absolute;
433
- box-sizing: border-box;
434
- width: 100%;
435
- height: 100%;
436
- border-radius: 50%;
437
- }
438
-
439
- .inner.one {
440
- left: 0%;
441
- top: 0%;
442
- animation: rotate-one 1s linear infinite;
443
- border-bottom: 3px solid var(--mmt-primary-70);
444
- }
445
-
446
- .inner.two {
447
- right: 0%;
448
- top: 0%;
449
- animation: rotate-two 1s linear infinite;
450
- border-right: 3px solid var(--mmt-primary-70);
451
- }
452
-
453
- .inner.three {
454
- right: 0%;
455
- bottom: 0%;
456
- animation: rotate-three 1s linear infinite;
457
- border-top: 3px solid var(--mmt-primary-70);
458
- }
459
-
460
- .register:not(.btn-outline-secondary) {
461
- background: var(--mmt-primary-70);
462
- border-color: var(--mmt-primary-70);
463
- margin: 0 auto;
464
- margin-top: 12px;
465
- }
466
-
467
- .register:not(.btn-outline-secondary):hover,
468
- .register:not(.btn-outline-secondary) .btn-primary:not(:disabled):not(.disabled):active {
469
- background: #0084fe;
470
- border-color: var(--mmt-primary-70);
471
- }
472
-
473
- @keyframes rotate-one {
474
- 0% {
475
- transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
476
- }
477
-
478
- 100% {
479
- transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
480
- }
481
- }
482
-
483
- @keyframes rotate-two {
484
- 0% {
485
- transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
486
- }
487
-
488
- 100% {
489
- transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
490
- }
491
- }
492
-
493
- @keyframes rotate-three {
494
- 0% {
495
- transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
496
- }
497
-
498
- 100% {
499
- transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
500
- }
501
- }
502
-
503
- .module-wrapper-container {
504
- flex: 1;
505
- height: 100%;
506
- overflow-y: auto;
507
- background-color: var(--base-gray-90);
508
- padding: var(--size-lg);
509
- display: flex;
510
- flex-direction: column;
511
- justify-content: center;
512
- }
513
-
514
- .module-wrapper-container .module-wrapper-header {
515
- margin-bottom: 80px;
516
- }
517
-
518
- .module-wrapper-container .module-wrapper-header h1,
519
- .module-wrapper-container .module-wrapper-header p {
520
- color: white;
521
- text-align: center;
522
- }
523
-
524
- .module-wrapper-container .module-wrapper-header h1 {
525
- font-size: 66px;
526
- margin-bottom: 24px;
527
- }
528
-
529
- .module-wrapper-container .module-wrapper-header p {
530
- font-size: 17px;
531
- line-height: 26px;
532
- margin-bottom: 0px;
533
- max-width: 469px;
534
- margin-left: auto;
535
- margin-right: auto;
536
- }
537
-
538
- .module-wrapper-container .apps-container {
539
- flex: 1;
540
- gap: 20px;
541
- display: flex;
542
- flex-wrap: wrap;
543
- justify-content: center;
544
- }
545
-
546
- .module-wrapper-container .apps-container .app {
547
- flex: 1;
548
- cursor: pointer;
549
- max-width: 406px;
550
- min-width: 406px;
551
- border-radius: 8px;
552
- padding: 32px;
553
- border: 1px solid var(--base-gray-80);
554
- background: rgba(255, 255, 255, 0.4);
555
- transition: 0.4s background, 0.4s box-shadow;
556
- box-shadow: 0px 12px 16px -4px rgba(193, 193, 194, 0.08), 0px 4px 6px -2px rgba(255, 255, 255, 0.03);
557
- }
558
-
559
- .module-wrapper-container .apps-container .app:hover {
560
- background: rgba(255, 255, 255, 0.5);
561
- }
562
-
563
- .module-wrapper-container .apps-container .app:active {
564
- box-shadow: 0 0 0 5px var(--base-gray-80);
565
- }
566
-
567
- .module-wrapper-container .apps-container .app * {
568
- cursor: pointer;
569
- }
570
-
571
- .module-wrapper-container .apps-container .app .app-header {
572
- display: flex;
573
- }
574
-
575
- .module-wrapper-container .apps-container .app .app-header h2 {
576
- color: white;
577
- font-size: 28px;
578
- margin-bottom: 0px;
579
- }
580
-
581
- .module-wrapper-container .apps-container .app p {
582
- font-size: 12px;
583
- color: white;
584
- font-weight: 500;
585
- margin-bottom: 0px;
586
- letter-spacing: -0.12px;
587
- }
588
-
589
- @media (max-width: 890px) {
590
- .module-wrapper-container .apps-container {
591
- flex-direction: column;
592
- }
593
-
594
- .module-wrapper-container .apps-container .app {
595
- min-width: unset;
596
- margin-left: auto;
597
- margin-right: auto;
598
- }
599
- }
600
-
601
- #language-select {
602
- margin: 12px 20px 0 20px;
603
- margin-bottom: 0px;
604
- display: flex;
605
- flex-direction: row;
606
- justify-content: space-between;
607
- align-items: center;
608
- }
609
-
610
- #language-select span[role=img] {
611
- color: white;
612
- padding: 0;
613
- }
614
-
615
- .ant-menu.ant-menu-inline,
616
- .ant-menu.ant-menu-inline-collapsed,
617
- .ant-menu.ant-menu-verticalant-menu.ant-menu-vertical-collapsed {
618
- max-width: 250px;
619
- background: #fafafa;
620
- }
621
-
622
- .ant-menu.ant-menu-inline .menu-actions,
623
- .ant-menu.ant-menu-inline-collapsed .menu-actions,
624
- .ant-menu.ant-menu-verticalant-menu.ant-menu-vertical-collapsed .menu-actions {
625
- display: flex;
626
- flex-direction: row;
627
- justify-content: space-between;
628
- align-items: center;
629
- border-bottom: 1px solid #f0f0f0;
630
- padding: 12px var(--size);
631
- }
632
-
633
- .ant-menu.ant-menu-inline .menu-actions h3,
634
- .ant-menu.ant-menu-inline-collapsed .menu-actions h3,
635
- .ant-menu.ant-menu-verticalant-menu.ant-menu-vertical-collapsed .menu-actions h3 {
636
- font-size: 20px;
637
- margin: 0;
638
- color: rgba(0, 0, 0, 0.85);
639
- }
640
-
641
- .ant-menu.ant-menu-inline .menu-actions button,
642
- .ant-menu.ant-menu-inline-collapsed .menu-actions button,
643
- .ant-menu.ant-menu-verticalant-menu.ant-menu-vertical-collapsed .menu-actions button {
644
- display: flex;
645
- justify-content: center;
646
- align-items: center;
647
- }
648
-
649
- .ant-menu.ant-menu-inline .menu-actions button span[role=img],
650
- .ant-menu.ant-menu-inline-collapsed .menu-actions button span[role=img],
651
- .ant-menu.ant-menu-verticalant-menu.ant-menu-vertical-collapsed .menu-actions button span[role=img] {
652
- font-size: 20px;
653
- }
654
-
655
- .ant-menu.ant-menu-inline .ant-menu-item,
656
- .ant-menu.ant-menu-inline .ant-menu-submenu-title,
657
- .ant-menu.ant-menu-inline-collapsed .ant-menu-item,
658
- .ant-menu.ant-menu-inline-collapsed .ant-menu-submenu-title,
659
- .ant-menu.ant-menu-verticalant-menu.ant-menu-vertical-collapsed .ant-menu-item,
660
- .ant-menu.ant-menu-verticalant-menu.ant-menu-vertical-collapsed .ant-menu-submenu-title {
661
- display: flex;
662
- flex-direction: row;
663
- align-items: center;
664
- }
665
-
666
- .ant-menu.ant-menu-inline .ant-menu-item span[role=img],
667
- .ant-menu.ant-menu-inline .ant-menu-submenu-title span[role=img],
668
- .ant-menu.ant-menu-inline-collapsed .ant-menu-item span[role=img],
669
- .ant-menu.ant-menu-inline-collapsed .ant-menu-submenu-title span[role=img],
670
- .ant-menu.ant-menu-verticalant-menu.ant-menu-vertical-collapsed .ant-menu-item span[role=img],
671
- .ant-menu.ant-menu-verticalant-menu.ant-menu-vertical-collapsed .ant-menu-submenu-title span[role=img] {
672
- font-size: 20px;
673
- width: 20px;
674
- }
675
-
676
- .ant-menu.ant-menu-inline .ant-menu-item span:last-child,
677
- .ant-menu.ant-menu-inline .ant-menu-submenu-title span:last-child,
678
- .ant-menu.ant-menu-inline-collapsed .ant-menu-item span:last-child,
679
- .ant-menu.ant-menu-inline-collapsed .ant-menu-submenu-title span:last-child,
680
- .ant-menu.ant-menu-verticalant-menu.ant-menu-vertical-collapsed .ant-menu-item span:last-child,
681
- .ant-menu.ant-menu-verticalant-menu.ant-menu-vertical-collapsed .ant-menu-submenu-title span:last-child {
682
- overflow: hidden;
683
- text-overflow: ellipsis;
684
- white-space: nowrap;
685
- }
686
-
687
- .ant-menu.ant-menu-root.ant-menu-inline-collapsed,
688
- .ant-menu.ant-menu-root.ant-menu-vertical-collapsed {
689
- width: 60px;
690
- }
691
-
692
- .ant-menu.ant-menu.ant-menu-inline-collapsed .ant-menu-item,
693
- .ant-menu.ant-menu.ant-menu-inline-collapsed .ant-menu-submenu,
694
- .ant-menu.ant-menu.ant-menu-vertical-collapsed .ant-menu-item,
695
- .ant-menu.ant-menu.ant-menu-vertical-collapsed .ant-menu-submenu {
696
- display: flex;
697
- justify-content: center;
698
- padding: 0px;
699
- }
700
-
701
- .ant-menu.ant-menu.ant-menu-inline-collapsed .ant-menu-item span[role=img],
702
- .ant-menu.ant-menu.ant-menu-inline-collapsed .ant-menu-submenu span[role=img],
703
- .ant-menu.ant-menu.ant-menu-vertical-collapsed .ant-menu-item span[role=img],
704
- .ant-menu.ant-menu.ant-menu-vertical-collapsed .ant-menu-submenu span[role=img] {
705
- font-size: 20px;
706
- }
707
-
708
- .ant-menu.ant-menu.ant-menu-inline-collapsed .ant-menu-submenu-title,
709
- .ant-menu.ant-menu.ant-menu-vertical-collapsed .ant-menu-submenu-title {
710
- padding-left: 20px;
711
- margin-top: 0;
712
- margin-bottom: 0;
713
- }
714
-
715
- .ant-menu.ant-menu.ant-menu-inline-collapsed .menu-actions,
716
- .ant-menu.ant-menu.ant-menu-vertical-collapsed .menu-actions {
717
- justify-content: center;
718
- }
719
-
720
- .ant-menu.ant-menu-sub.ant-menu-inline {
721
- background-color: rgba(0, 0, 0, 0.02);
722
- }
723
-
724
- .ant-menu.ant-menu-inline,
725
- .ant-menu.ant-menu-vertical {
726
- position: relative;
727
- }
728
-
729
- .ant-menu.ant-menu-inline .remixicon,
730
- .ant-menu.ant-menu-vertical .remixicon {
731
- font-size: 20px;
732
- margin-right: 10px;
733
- }
734
-
735
- .ant-menu.ant-menu-inline img,
736
- .ant-menu.ant-menu-vertical img {
737
- margin: 20px;
738
- height: 30px;
739
- cursor: pointer;
740
- }
741
-
742
- .ant-menu.ant-menu-inline .mod-name,
743
- .ant-menu.ant-menu-vertical .mod-name {
744
- display: flex;
745
- flex-direction: row;
746
- justify-content: flex-start;
747
- align-items: center;
748
- margin-bottom: 20px;
749
- }
750
-
751
- .ant-menu.ant-menu-inline .mod-name span[role=img],
752
- .ant-menu.ant-menu-vertical .mod-name span[role=img] {
753
- font-size: 20px;
754
- padding: 4px var(--size);
755
- border-top-right-radius: 2px;
756
- border-bottom-right-radius: 2px;
757
- margin-right: 7px;
758
- }
759
-
760
- .ant-menu.ant-menu-inline .mod-name h1,
761
- .ant-menu.ant-menu-vertical .mod-name h1 {
762
- font-family: SF UI Display;
763
- font-style: normal;
764
- font-weight: bold;
765
- font-size: var(--font-size-lg);
766
- display: flex;
767
- align-items: center;
768
- color: #ffffff;
769
- margin: 0;
770
- }
771
-
772
- .ant-menu.ant-menu-inline .user-details,
773
- .ant-menu.ant-menu-vertical .user-details {
774
- padding: 20px;
775
- position: absolute;
776
- bottom: 20px;
777
- display: flex;
778
- flex-direction: column;
779
- justify-content: center;
780
- box-sizing: border-box;
781
- width: 100%;
782
- padding-bottom: 0;
783
- }
784
-
785
- .ant-menu.ant-menu-inline .user-details div,
786
- .ant-menu.ant-menu-vertical .user-details div {
787
- display: flex;
788
- flex-direction: row;
789
- justify-content: space-between;
790
- align-items: center;
791
- }
792
-
793
- .ant-menu.ant-menu-inline .user-details div span[role=img],
794
- .ant-menu.ant-menu-vertical .user-details div span[role=img] {
795
- font-size: 20px;
796
- }
797
-
798
- .ant-menu.ant-menu-inline .user-details div h1,
799
- .ant-menu.ant-menu-vertical .user-details div h1 {
800
- font-size: 18px;
801
- color: #a6adb4;
802
- margin: 0;
803
- margin-left: 10px;
804
- flex-grow: 1;
805
- }
806
-
807
- .ant-menu.ant-menu-inline .user-details h3,
808
- .ant-menu.ant-menu-inline .user-details h2,
809
- .ant-menu.ant-menu-vertical .user-details h3,
810
- .ant-menu.ant-menu-vertical .user-details h2 {
811
- font-size: 14px;
812
- line-height: 22px;
813
- font-weight: normal;
814
- color: rgba(255, 255, 255, 0.65);
815
- margin-top: 10px;
816
- margin-left: 30px;
817
- }
818
-
819
- .ant-menu.ant-menu-inline .user-details h2,
820
- .ant-menu.ant-menu-vertical .user-details h2 {
821
- margin-bottom: 0;
822
- font-size: var(--font-size-lg);
823
- }
824
-
825
- .ant-menu.ant-menu-inline .ant-select-selector,
826
- .ant-menu.ant-menu-inline .ant-select-arrow,
827
- .ant-menu.ant-menu-vertical .ant-select-selector,
828
- .ant-menu.ant-menu-vertical .ant-select-arrow {
829
- color: rgba(255, 255, 255, 0.8);
830
- }
831
-
832
- .ant-menu.ant-menu-inline .ant-select-selector span[role=img],
833
- .ant-menu.ant-menu-inline .ant-select-arrow span[role=img],
834
- .ant-menu.ant-menu-vertical .ant-select-selector span[role=img],
835
- .ant-menu.ant-menu-vertical .ant-select-arrow span[role=img] {
836
- font-size: 15px !important;
837
- }
838
-
839
- ul.ant-menu.ant-menu-dark.ant-menu-root.ant-menu-inline,
840
- ul.ant-menu.ant-menu-dark.ant-menu-root.ant-menu-vertical {
841
- /* Track */
842
- /* Handle */
843
- /* Handle on hover */
844
- }
845
-
846
- ul.ant-menu.ant-menu-dark.ant-menu-root.ant-menu-inline::-webkit-scrollbar,
847
- ul.ant-menu.ant-menu-dark.ant-menu-root.ant-menu-vertical::-webkit-scrollbar {
848
- width: 6px;
849
- }
850
-
851
- ul.ant-menu.ant-menu-dark.ant-menu-root.ant-menu-inline::-webkit-scrollbar-track,
852
- ul.ant-menu.ant-menu-dark.ant-menu-root.ant-menu-vertical::-webkit-scrollbar-track {
853
- background: #f1f1f1;
854
- }
855
-
856
- ul.ant-menu.ant-menu-dark.ant-menu-root.ant-menu-inline::-webkit-scrollbar-thumb,
857
- ul.ant-menu.ant-menu-dark.ant-menu-root.ant-menu-vertical::-webkit-scrollbar-thumb {
858
- background: #888;
859
- }
860
-
861
- ul.ant-menu.ant-menu-dark.ant-menu-root.ant-menu-inline::-webkit-scrollbar-thumb:hover,
862
- ul.ant-menu.ant-menu-dark.ant-menu-root.ant-menu-vertical::-webkit-scrollbar-thumb:hover {
863
- background: #555;
864
- }
865
-
866
- .ant-menu.ant-menu-sub {
867
- font-size: 13px;
868
- }
869
-
870
- .ant-menu-submenu.ant-menu-submenu-popup li.ant-menu-item.title {
871
- top: 0;
872
- color: white !important;
873
- opacity: 1;
874
- border-bottom: 1px solid white !important;
875
- width: 100%;
876
- font-size: 14px;
877
- }
878
-
879
- .ant-menu-submenu.ant-menu-submenu-popup li.ant-menu-item.title span.anticon {
880
- font-size: var(--font-size-lg);
881
- }
882
-
883
- .sidenav-hover-content {
884
- min-width: fit-content !important;
885
- width: fit-content !important;
886
- display: block !important;
887
- align-content: center !important;
888
- height: 60px;
889
- position: absolute;
890
- left: 70px !important;
891
- white-space: nowrap;
892
- overflow: hidden;
893
- text-overflow: ellipsis;
894
- }
895
-
896
- .sidenav-hover-content li {
897
- width: unset !important;
898
- }
899
-
900
- .user-details-menu .ant-dropdown-menu-item {
901
- color: rgba(255, 255, 255, 0.8) !important;
902
- }
903
-
904
- .user-details-menu .ant-dropdown-menu-item:hover {
905
- color: white !important;
906
- }
907
-
908
- .ant-menu-dark .ant-menu-item-disabled span.ant-typography {
909
- color: rgba(255, 255, 255, 0.25) !important;
910
- }
911
-
912
-
913
-
914
- .clickable-link {
915
- cursor: pointer;
916
- font-weight: bold;
917
- color: rgb(24, 144, 255);
918
- }
919
-
920
- .header-tabs-cont {
921
- display: flex;
922
- justify-content: flex-end;
923
- }
924
-
925
- .header-tabs-cont.no-flex-tabs-cont {
926
- display: unset;
927
- justify-content: unset;
928
- background-color: white;
929
- }
930
-
931
- .header-tabs-cont.no-flex-tabs-cont .ant-tabs-top {
932
- background-color: white;
933
- }
934
-
935
- .header-tabs-cont.with-mt {
936
- margin-top: 60px;
937
- }
938
-
939
- .header-tabs-cont .ant-tabs-tab span {
940
- color: #98a2b3;
941
- font-size: 14px;
942
- font-weight: 600;
943
- }
944
-
945
- .header-tabs-cont .ant-tabs-tab.ant-tabs-tab-active .ant-tabs-tab-btn {
946
- color: var(--color-primary-70);
947
- }
948
-
949
- .header-tabs-cont .ant-tabs-tab-active span {
950
- font-weight: 500;
951
- color: var(--color-primary-60);
952
- }
953
-
954
- .header-tabs-cont .ant-tabs-nav {
955
- margin-bottom: 0px;
956
- }
957
-
958
- .header-tabs-cont .ant-tabs-tab {
959
- color: #98a2b3;
960
- padding-top: 2px;
961
- }
962
-
963
- .screen.home {
964
- width: 100%;
965
- display: flex;
966
- flex-flow: column nowrap;
967
- padding: 5em;
968
- }
969
-
970
- .screen.home>div {
971
- flex: 1;
972
- }
973
-
974
- .screen.home>div:first-child {
975
- display: flex;
976
- flex-flow: column nowrap;
977
- position: relative;
978
- }
979
-
980
- .screen.home .title {
981
- font-size: 3em;
982
- font-weight: 700;
983
- color: #000;
984
- margin-bottom: 0.5em;
985
- }
986
-
987
- .screen.home .desc {
988
- font-size: 1.2em;
989
- max-width: 70%;
990
- margin-bottom: 4em;
991
- }
992
-
993
- @media screen and (max-width: 768px) {
994
- .screen.home .desc {
995
- max-width: 100%;
996
- }
997
- }
998
-
999
- .screen.home .indicator {
1000
- position: absolute;
1001
- font-size: 2.4em;
1002
- right: 2em;
1003
- bottom: 1em;
1004
- color: #adb5bd;
1005
- animation: pulse 1000ms ease-in-out infinite alternate backwards;
1006
- }
1007
-
1008
- @media screen and (max-width: 768px) {
1009
- .screen.home .indicator {
1010
- position: relative;
1011
- align-self: center;
1012
- right: auto;
1013
- margin-top: 5rem;
1014
- }
1015
- }
1016
-
1017
- @keyframes pulse {
1018
- from {
1019
- color: #1abc9c;
1020
- transform: translateY(-80px);
1021
- }
1022
-
1023
- to {
1024
- color: #1890ff;
1025
- transform: translateY(0);
1026
- }
1027
- }
1028
-
1029
- .login-container {
1030
- display: flex;
1031
- width: 100%;
1032
- height: 100%;
1033
- }
1034
-
1035
- .login-left {
1036
- display: flex;
1037
- width: 25%;
1038
- min-width: 450px;
1039
- height: 100%;
1040
- /* border-right: 1px solid rgba(0, 0, 0, 0.1); */
1041
- box-sizing: border-box;
1042
- padding: 64px;
1043
- box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.15);
1044
- background-color: white;
1045
- overflow-y: auto;
1046
- }
1047
-
1048
- .login-left h1 {
1049
- font-size: 3em;
1050
- font-weight: 700;
1051
- color: var(--mmt-primary-70);
1052
- margin-bottom: 0.5em;
1053
- margin-top: 0.5em;
1054
- }
1055
-
1056
- .login-left h2 {
1057
- font-size: 1.5em;
1058
- color: var(--gray-dark);
1059
- margin-bottom: 2em;
1060
- }
1061
-
1062
- .login-right {
1063
- width: 80%;
1064
- height: 100%;
1065
- background-size: contain;
1066
- background-position: center;
1067
- background-repeat: no-repeat;
1068
- background-color: rgba(0, 0, 0, 0.005);
1069
- }
1070
-
1071
- .ant-row.ant-form-item {
1072
- margin-bottom: 12px;
1073
- }
1074
-
1075
- .ant-col.ant-form-item-label label {
1076
- font-weight: 400;
1077
- }
1078
-
1079
- .ant-form-item-control-input-content {
1080
- display: flex;
1081
- flex-direction: row;
1082
- justify-content: space-between;
1083
- align-items: center;
1084
- }
1085
-
1086
- .registerLink {
1087
- display: flex;
1088
- flex-direction: row;
1089
- flex-grow: 1;
1090
- justify-content: center;
1091
- }
1092
-
1093
- @media screen and (max-width: 980px) {
1094
- .right {
1095
- display: none;
1096
- }
1097
-
1098
- .left {
1099
- width: 100%;
1100
- }
1101
- }
1102
-
1103
- .admin-users-card {
1104
- width: calc(25% - 8px);
1105
- box-sizing: border-box;
1106
- padding: var(--size);
1107
- height: fit-content;
1108
- background: rgba(0, 0, 0, 0.03);
1109
- border-radius: 5px;
1110
- }
1111
-
1112
- .admin-users-card h3 {
1113
- font-size: var(--font-size-lg);
1114
- font-weight: 400;
1115
- color: rgba(0, 0, 0, 0.67);
1116
- }
1117
-
1118
- .admin-users-card h1 {
1119
- font-size: 22px;
1120
- font-weight: 600;
1121
- color: rgba(0, 0, 0, 0.72);
1122
- }
1123
-
1124
- .admin-users-card i {
1125
- font-size: 48px;
1126
- margin: auto 0;
1127
- }
1128
-
1129
- .admin-users-filter {
1130
- width: 100%;
1131
- height: 60px;
1132
- margin: var(--size) auto;
1133
- border-radius: 5px;
1134
- -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
1135
- -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
1136
- box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
1137
- padding: 12px;
1138
- }
1139
-
1140
- .admin-users-filter ButtonGroup {
1141
- margin: auto 0;
1142
- }
1143
-
1144
- .admin-users-filter .btn-primary {
1145
- background: none;
1146
- border-color: transparent;
1147
- color: rgba(0, 0, 0, 0.65);
1148
- font-weight: 600;
1149
- border-radius: 5px;
1150
- background: rgba(0, 0, 0, 0.04);
1151
- }
1152
-
1153
- .admin-users-filter .btn-primary:not(:last-of-type) {
1154
- margin-right: 8px;
1155
- }
1156
-
1157
- .admin-users-filter .btn-group>.btn:not(:last-child):not(.dropdown-toggle),
1158
- .admin-users-filter .btn-group>.btn-group:not(:last-child)>.btn {
1159
- border-radius: 5px;
1160
- }
1161
-
1162
- .admin-users-filter .btn-group>.btn:not(:first-child),
1163
- .admin-users-filter .btn-group>.btn-group:not(:first-child)>.btn {
1164
- border-radius: 5px;
1165
- }
1166
-
1167
- .admin-users-filter .btn-primary:not(:disabled):not(.disabled):active:focus,
1168
- .admin-users-filter .btn-primary:not(:disabled):not(.disabled).active:focus,
1169
- .admin-users-filter .show>.btn-primary.dropdown-toggle:focus,
1170
- .admin-users-filter .btn-primary:focus,
1171
- .admin-users-filter .btn-primary.focus {
1172
- box-shadow: none;
1173
- }
1174
-
1175
- .admin-users-filter .css-2b097c-container {
1176
- min-width: 200px;
1177
- }
1178
-
1179
- .admin-users-filter .css-2b097c-container>div {
1180
- border: none;
1181
- }
1182
-
1183
- @media screen and (max-width: 1150px) {
1184
- .admin-users-card {
1185
- width: 50.5050505051%;
1186
- }
1187
-
1188
- .admin-users-card:nth-of-type(1),
1189
- .admin-users-card:nth-of-type(2) {
1190
- margin-bottom: var(--size);
1191
- }
1192
- }
1193
-
1194
- .collapse-card {
1195
- grid-template-columns: repeat(auto-fill, minmax(15em, 1fr)) !important;
1196
- margin-bottom: 8px !important;
1197
- cursor: pointer;
1198
- position: relative;
1199
- }
1200
-
1201
- .confirm-modal .ant-modal-body {
1202
- padding: 0;
1203
- }
1204
-
1205
- .confirm-modal .ant-modal-content .ant-modal-close {
1206
- display: none !important;
1207
- }
1208
-
1209
- .confirm-modal .ant-result {
1210
- padding: var(--size-lg) 0;
1211
- }
1212
-
1213
- .confirm-modal .ant-result .ant-result-icon {
1214
- margin-bottom: 12px;
1215
- }
1216
-
1217
- .confirm-modal .ant-result .ant-result-icon>.anticon {
1218
- font-size: 42px;
1219
- }
1220
-
1221
- .confirm-modal .ant-result .ant-result-title {
1222
- font-size: 18px;
1223
- }
1224
-
1225
- .confirm-modal .ant-result .ant-result-extra {
1226
- margin-top: 12px;
1227
- }
1228
-
1229
- .collapse-card:not(.info)::after {
1230
- position: absolute;
1231
- content: "";
1232
- width: 0;
1233
- height: 0;
1234
- border-left: 5px solid transparent;
1235
- border-right: 5px solid transparent;
1236
- border-top: 5px solid rgba(0, 0, 0, 0.4);
1237
- bottom: 8px;
1238
- left: 0;
1239
- right: 0;
1240
- margin: auto;
1241
- }
1242
-
1243
- .collapse-card.open {
1244
- padding-bottom: 3.5em !important;
1245
- }
1246
-
1247
- .collapse-card.open::after {
1248
- border-left: 5px solid transparent;
1249
- border-right: 5px solid transparent;
1250
- border-bottom: 5px solid rgba(0, 0, 0, 0.4);
1251
- bottom: 43px;
1252
- border-top: none;
1253
- }
1254
-
1255
- .collapse-card:not(.info) .actions {
1256
- position: absolute;
1257
- bottom: 0;
1258
- width: 100%;
1259
- height: 35px;
1260
- background: rgba(0, 0, 0, 0.06);
1261
- margin: 0;
1262
- display: none;
1263
- flex-direction: row;
1264
- justify-content: space-between;
1265
- padding: 0 1.6em;
1266
- border-top: 1px solid rgba(0, 0, 0, 0.1);
1267
- }
1268
-
1269
- .collapse-card:not(.info).open .actions {
1270
- display: flex;
1271
- }
1272
-
1273
- .collapse-card:not(.info).open .actions a {
1274
- width: 50%;
1275
- text-align: center;
1276
- }
1277
-
1278
- .collapse-card:not(.info).open .actions a i {
1279
- font-size: var(--font-size-lg);
1280
- margin: auto 6px auto 0;
1281
- }
1282
-
1283
- .collapse-card:not(.info).open .actions a:not(:last-of-type) {
1284
- border-right: 1px solid rgba(0, 0, 0, 0.1);
1285
- }
1286
-
1287
- .component-view.module.document-view {
1288
- background: #eee;
1289
- }
1290
-
1291
- .component-view.module.document-view .form-view {
1292
- background-color: white;
1293
- padding: 2em;
1294
- }
1295
-
1296
- .dashboard-card {
1297
- position: relative;
1298
- display: -ms-flexbox;
1299
- display: flex;
1300
- -ms-flex-direction: column;
1301
- flex-direction: column;
1302
- min-width: 0;
1303
- word-wrap: break-word;
1304
- background-color: #fff;
1305
- background-clip: border-box;
1306
- border: 1px solid rgba(0, 0, 0, 0.125);
1307
- border-radius: 0.25rem;
1308
- }
1309
-
1310
- .dashboard-card .card-title {
1311
- margin-bottom: 0.75rem;
1312
- text-align: center;
1313
- font-size: 20px;
1314
- font-weight: 700;
1315
- }
1316
-
1317
- .dashboard-card .card-subtitle {
1318
- margin-top: -0.375rem;
1319
- margin-bottom: 0;
1320
- }
1321
-
1322
- .dashboard-card .card-subtitle.red {
1323
- color: red;
1324
- }
1325
-
1326
- .row {
1327
- display: flex;
1328
- flex-direction: row;
1329
- }
1330
-
1331
- .column {
1332
- display: flex;
1333
- flex-direction: column;
1334
- }
1335
-
1336
- .start {
1337
- display: flex;
1338
- justify-content: flex-start;
1339
- }
1340
-
1341
- .end {
1342
- display: flex;
1343
- justify-content: flex-end;
1344
- }
1345
-
1346
- .between {
1347
- display: flex;
1348
- justify-content: space-between;
1349
- }
1350
-
1351
- .mb-20 {
1352
- margin-bottom: 20px;
1353
- }
1354
-
1355
- .ant-page-header.page-heading-menu .ant-page-header-heading {
1356
- justify-content: space-between !important;
1357
- }
1358
-
1359
- .components-layout .trigger {
1360
- padding: 0 var(--size-lg);
1361
- font-size: 18px;
1362
- line-height: 64px;
1363
- cursor: pointer;
1364
- transition: color 0.3s;
1365
- }
1366
-
1367
- .components-layout .trigger:hover {
1368
- color: var(--mmt-primary-70);
1369
- }
1370
-
1371
- .components-layout .logo {
1372
- margin: 20px var(--size-lg) var(--size-lg) var(--size-lg);
1373
- }
1374
-
1375
- .components-layout .logo img {
1376
- height: 30px;
1377
- }
1378
-
1379
- .components-layout .logo img.tazama {
1380
- height: 41px;
1381
- }
1382
-
1383
- .components-layout .sidenav-sider-collapsed .logo {
1384
- text-align: center;
1385
- margin: 20px 0px var(--size-lg) 0px;
1386
- }
1387
-
1388
- .components-layout .sidenav-sider-collapsed .logo img {
1389
- padding-left: 0;
1390
- }
1391
-
1392
- .components-layout .sidenav-sider-collapsed .logo img.tazama {
1393
- height: 35px;
1394
- margin-top: 3px;
1395
- margin-bottom: 3px;
1396
- }
1397
-
1398
- .components-layout .site-layout .site-layout-background {
1399
- background: #fff;
1400
- }
1401
-
1402
- .components-layout .mod-name {
1403
- display: flex;
1404
- flex-direction: row;
1405
- justify-content: flex-start;
1406
- align-items: center;
1407
- margin-bottom: var(--size-lg);
1408
- padding: 0px var(--size-lg);
1409
- gap: 7px;
1410
- }
1411
-
1412
- .components-layout .mod-name.is-collapsed .icon {
1413
- display: flex;
1414
- justify-content: center;
1415
- flex: 1;
1416
- }
1417
-
1418
- .components-layout .mod-name span[role=img] {
1419
- font-size: 20px;
1420
- padding: 4px 0px;
1421
- border-top-right-radius: 2px;
1422
- border-bottom-right-radius: 2px;
1423
- }
1424
-
1425
- .components-layout .mod-name h1 {
1426
- font-family: SF UI Display;
1427
- font-style: normal;
1428
- font-weight: bold;
1429
- font-size: var(--font-size-lg);
1430
- display: flex;
1431
- align-items: center;
1432
- color: #ffffff;
1433
- margin: 0;
1434
- }
1435
-
1436
- .components-layout .sidenav-cont {
1437
- display: flex;
1438
- flex-direction: column;
1439
- height: calc(100% - 130px);
1440
- }
1441
-
1442
- .components-layout .sidenav-cont.tazama {
1443
- height: calc(100% - 90px);
1444
- }
1445
-
1446
- .components-layout .sidenav-cont.tazama .ant-menu-submenu-title:hover {
1447
- background-color: var(--base-gray-20);
1448
- }
1449
-
1450
- /* .components-layout .sidenav-cont.cukura .ant-menu-submenu-title:hover {
1451
- background-color: var(--base-gray-20);
1452
- } */
1453
- .components-layout .sidenav-cont .menus-cont .ant-menu-item {
1454
- margin-left: 0px;
1455
- margin-right: 0px;
1456
- width: 100%;
1457
- }
1458
-
1459
- .components-layout .sidenav-cont .menus-cont .ant-menu-submenu-title {
1460
- margin-left: 0px;
1461
- margin-right: 0px;
1462
- width: 100%;
1463
- }
1464
-
1465
- .components-layout .sidenav-cont .menus-cont.is-collapsed .ant-menu-submenu-title svg {
1466
- margin-right: 0px;
1467
- margin-left: 2px;
1468
- }
1469
-
1470
- .components-layout .sidenav-cont .ant-menu-sub .ant-menu-item-only-child .ant-menu-title-content {
1471
- line-height: 20px;
1472
- }
1473
-
1474
- .components-layout .sidenav-cont .menus-cont {
1475
- flex: 1;
1476
- overflow-y: auto;
1477
- }
1478
-
1479
- .components-layout .sidenav-cont .menus-cont .sidemenu-cont {
1480
- margin-bottom: 8px;
1481
- }
1482
-
1483
- .components-layout .sidenav-cont .menus-cont .sidemenu-cont .ant-menu-submenu,
1484
- .components-layout .sidenav-cont .menus-cont .sidemenu-cont .ant-menu-item {
1485
- color: white;
1486
- }
1487
-
1488
- .components-layout.nested .sidenav-cont .menus-cont .sidemenu-cont .ant-menu-submenu,
1489
- .components-layout.nested .sidenav-cont .menus-cont .sidemenu-cont .ant-menu-item {
1490
- color: #384250;
1491
- }
1492
-
1493
- .components-layout.nested .sidenav-cont .ant-menu-submenu-title {
1494
- color: #384250 !important;
1495
- }
1496
-
1497
- .components-layout.nested .sidenav-cont .ant-menu-submenu.ant-menu-submenu-disabled .ant-menu-submenu-title {
1498
- color: #D2D6DB !important;
1499
- opacity: 0.6;
1500
- cursor: not-allowed;
1501
- }
1502
-
1503
- .components-layout .sidenav-cont .menus-cont .sidemenu-cont .title-span {
1504
- margin-bottom: 8px;
1505
- text-transform: uppercase;
1506
- margin-left: var(--size-lg);
1507
- font-size: 12px;
1508
- color: #9da4ae;
1509
- font-weight: 500;
1510
- line-height: 20px;
1511
- }
1512
-
1513
- .components-layout .sidenav-cont .menus-cont.is-collapsed .sidemenu-cont {
1514
- margin-bottom: 0px;
1515
- }
1516
-
1517
- .components-layout .sidenav-cont .menus-cont.is-collapsed .sidemenu-cont .title-span {
1518
- display: none;
1519
- }
1520
-
1521
- .components-layout .sidenav-cont .sidenav-footer {
1522
- padding: 30px var(--size-lg);
1523
- }
1524
-
1525
- .components-layout .sidenav-cont .sidenav-footer h6 {
1526
- color: white;
1527
- font-size: 10px;
1528
- font-weight: 500;
1529
- margin-bottom: 6px;
1530
- line-height: 18px;
1531
- }
1532
-
1533
- .components-layout .sidenav-cont .sidenav-footer img {
1534
- width: 100px;
1535
- }
1536
-
1537
- .components-layout .ant-layout-footer {
1538
- padding: 10px 50px;
1539
- }
1540
-
1541
- .components-layout .site-layout-sub-header-background {
1542
- background: var(--base-gray-100);
1543
- padding: 0px 6px;
1544
- }
1545
-
1546
- .components-layout .site-layout-sub-header-background.custom {
1547
- background: var(--custom-header-color);
1548
- padding: 0px 6px;
1549
- }
1550
-
1551
- .components-layout .site-layout-sub-header-background.tazama {
1552
- background: var(--base-gray-20);
1553
- }
1554
-
1555
- .components-layout .site-layout-sub-header-background.cukura {
1556
- background: var(--base-gray-100);
1557
- }
1558
-
1559
- .components-layout .site-layout-sub-header-background.tazama svg {
1560
- color: var(--base-gray-70);
1561
- }
1562
-
1563
- .components-layout .site-layout-sub-header-background.cukura svg {
1564
- color: var(--base-gray-20);
1565
- }
1566
-
1567
- .components-layout .site-layout-sub-header-background .language-select {
1568
- background-color: transparent;
1569
- margin-top: auto;
1570
- margin-bottom: auto;
1571
- }
1572
-
1573
- .components-layout .site-layout-sub-header-background .language-select .ant-select-selection-item {
1574
- display: flex;
1575
- }
1576
-
1577
- .components-layout .site-layout-sub-header-background .language-select .ant-select-selection-item .cont {
1578
- color: white;
1579
- }
1580
-
1581
- .components-layout .site-layout-sub-header-background .language-select .row-cont {
1582
- display: flex;
1583
- min-width: 55px;
1584
- }
1585
-
1586
- .components-layout .site-layout-sub-header-background .language-select .ant-select-item-option-content .row-cont {
1587
- min-width: 80px;
1588
- }
1589
-
1590
- .components-layout .site-layout-sub-header-background .language-select .cont {
1591
- display: flex;
1592
- flex-direction: column;
1593
- justify-content: center;
1594
- }
1595
-
1596
- .components-layout .site-layout-sub-header-background.tazama .language-select .cont {
1597
- color: var(--base-gray-70);
1598
- }
1599
-
1600
- /* .components-layout .site-layout-sub-header-background.cukura .language-select .cont {
1601
- color: var(--base-gray-20);
1602
- } */
1603
- .components-layout .site-layout-sub-header-background .left-sidebar .desktop {
1604
- display: flex;
1605
- }
1606
-
1607
- .components-layout .site-layout-sub-header-background .left-sidebar .mobile {
1608
- display: none;
1609
- }
1610
-
1611
- @media (max-width: 850px) {
1612
- .components-layout .site-layout-sub-header-background .left-sidebar .desktop {
1613
- display: none;
1614
- }
1615
-
1616
- .components-layout .site-layout-sub-header-background .left-sidebar .mobile {
1617
- display: flex;
1618
- flex-direction: column;
1619
- justify-content: center;
1620
- padding-left: 25px;
1621
- }
1622
-
1623
- .components-layout .site-layout-sub-header-background .left-sidebar .mobile .mobile-burger svg {
1624
- width: 16px;
1625
- height: 16px;
1626
- }
1627
-
1628
- .components-layout .site-layout-sub-header-background .left-sidebar .mobile.pl-0 {
1629
- padding-left: 0;
1630
- }
1631
-
1632
- .components-layout .site-layout-sub-header-background .left-sidebar .mobile img {
1633
- width: 26px;
1634
- height: 26px;
1635
- }
1636
- }
1637
-
1638
- .components-layout .ant-layout-content {
1639
- height: calc(100dvh - 64px);
1640
- overflow-y: hidden;
1641
- }
1642
-
1643
- .components-layout .ant-layout-content .ant-tabs-content-holder {
1644
- height: 100%;
1645
- overflow-y: auto;
1646
- }
1647
-
1648
- .components-layout .right-sidebar {
1649
- line-height: 64px;
1650
- justify-content: space-evenly;
1651
- }
1652
-
1653
- .components-layout .right-sidebar .ant-select-selector .ant-typography {
1654
- color: white;
1655
- }
1656
-
1657
- .components-layout .right-sidebar .user-details span {
1658
- padding-left: 10px;
1659
- }
1660
-
1661
- .components-layout .right-sidebar .user-details .logout-button {
1662
- cursor: pointer;
1663
- transition: color 0.3s;
1664
- }
1665
-
1666
- .components-layout .right-sidebar .user-details .logout-button:hover {
1667
- color: var(--mmt-primary-70);
1668
- }
1669
-
1670
- .components-layout .right-sidebar>div {
1671
- padding-right: 25px;
1672
- }
1673
-
1674
- @media (max-width: 850px) {
1675
- .components-layout .right-sidebar>div {
1676
- padding-right: 1.5rem;
1677
- }
1678
- }
1679
-
1680
- .components-layout .ant-select-single.ln-22 .ant-select-selector .ant-select-selection-item,
1681
- .components-layout .ant-select-single.ln-22 .ant-select-selector .ant-select-selection-placeholder {
1682
- line-height: 22px;
1683
- }
1684
-
1685
- .components-layout .ant-select-single.ln-22:not(.ant-select-customize-input) .ant-select-selector .ant-select-selection-search-input {
1686
- height: 22px;
1687
- }
1688
-
1689
- .components-layout .link {
1690
- color: white;
1691
- }
1692
-
1693
- .components-layout .link:hover {
1694
- color: var(--mmt-primary-70);
1695
- }
1696
-
1697
- .dark-menu.min-w-300 .ant-dropdown-menu {
1698
- min-width: 300px;
1699
- }
1700
-
1701
- .dark-menu.min-w-300 .ant-dropdown-menu .ant-dropdown-menu-item-disabled {
1702
- opacity: 1 !important;
1703
- cursor: default !important;
1704
- }
1705
-
1706
- .dark-menu .ant-dropdown-menu {
1707
- background: var(--base-gray-100) !important;
1708
- border-radius: 4px;
1709
- border: 1px solid var(--base-gray-90);
1710
- }
1711
-
1712
- .dark-menu.custom .ant-dropdown-menu {
1713
- background: var(--custom-header-color) !important;
1714
- border-radius: 4px;
1715
- border: 1px solid var(--base-gray-90);
1716
- }
1717
-
1718
- .ant-menu.ant-menu-sub.ant-menu-inline {
1719
- background-color: var(--base-gray-110) !important;
1720
- }
1721
-
1722
- .sidenav-sider.custom .ant-menu.ant-menu-sub.ant-menu-inline {
1723
- background-color: var(--custom-sidenav-submenu-color) !important;
1724
- }
1725
-
1726
- .sidenav-sider.nested .ant-menu.ant-menu-sub.ant-menu-inline {
1727
- background-color: var(--nested-sidenav-submenu-bg-color) !important;
1728
- }
1729
-
1730
- .sidenav-sider.nested .ant-menu.ant-menu-sub.ant-menu-inline .ant-menu-item:hover {
1731
- background-color: var(--color-primary-10) !important;
1732
- }
1733
-
1734
- .sidenav-sider.nested .ant-menu.ant-menu-sub.ant-menu-inline .ant-menu-item.selected-it,
1735
- .sidenav-sider.nested .ant-menu.ant-menu-sub.ant-menu-inline .ant-menu-item.selected-it:hover,
1736
- .sidenav-sider.nested .ant-menu.ant-menu-sub.ant-menu-inline .ant-menu-item.selected-it:active {
1737
- background-color: var(--color-primary-70) !important;
1738
- }
1739
-
1740
-
1741
- .sidenav-sider .ant-menu.ant-menu-sub.ant-menu-inline .ant-menu-item.selected-it,
1742
- .sidenav-sider .ant-menu.ant-menu-sub.ant-menu-inline .ant-menu-item.selected-it:hover,
1743
- .sidenav-sider .ant-menu.ant-menu-sub.ant-menu-inline .ant-menu-item.selected-it:active {
1744
- background-color: var(--color-primary-70) !important;
1745
- }
1746
-
1747
- .dark-menu .ant-dropdown-menu .ant-dropdown-menu-item span,
1748
- .dark-menu .ant-dropdown-menu .ant-dropdown-menu-item svg {
1749
- color: white;
1750
- }
1751
-
1752
- .dark-menu .ant-dropdown-menu .ant-dropdown-menu-item-disabled {
1753
- opacity: 0.5;
1754
- }
1755
-
1756
- .dark-menu .ant-dropdown-menu .ant-dropdown-menu-item-disabled:hover {
1757
- background: var(--base-gray-100) !important;
1758
- }
1759
-
1760
- .dark-menu.custom .ant-dropdown-menu .ant-dropdown-menu-item-disabled:hover {
1761
- background: var(--custom-header-color) !important;
1762
- }
1763
-
1764
- .dark-menu .ant-dropdown-menu .ant-dropdown-menu-item-active {
1765
- background: var(--base-gray-100) !important;
1766
- }
1767
-
1768
- .dark-menu.custom .ant-dropdown-menu .ant-dropdown-menu-item-active {
1769
- background: var(--custom-sidenav-hover-color) !important;
1770
- }
1771
-
1772
- .dark-menu.tazama .ant-dropdown-menu {
1773
- background: var(--base-gray-10) !important;
1774
- border: 0px;
1775
- }
1776
-
1777
- /* .dark-menu.cukura .ant-dropdown-menu {
1778
- background: var(--base-gray-90) !important;
1779
- border: 0px;
1780
- } */
1781
- .dark-menu.tazama .ant-dropdown-menu .ant-dropdown-menu-item span,
1782
- .dark-menu.tazama .ant-dropdown-menu .ant-dropdown-menu-item svg {
1783
- color: var(--base-gray-90);
1784
- }
1785
-
1786
- /* .dark-menu.cukura .ant-dropdown-menu .ant-dropdown-menu-item span,
1787
- .dark-menu.cukura .ant-dropdown-menu .ant-dropdown-menu-item svg {
1788
- color: var(--base-gray-90);
1789
- } */
1790
- .dark-menu.tazama .ant-dropdown-menu .ant-dropdown-menu-item-disabled:hover {
1791
- background: var(--base-gray-10) !important;
1792
- }
1793
-
1794
- /* .dark-menu.cukura .ant-dropdown-menu .ant-dropdown-menu-item-disabled:hover {
1795
- background: var(--base-gray-90) !important;
1796
- } */
1797
- .dark-menu.tazama .ant-dropdown-menu .ant-dropdown-menu-item-active {
1798
- background: var(--base-gray-10) !important;
1799
- }
1800
-
1801
- /* .dark-menu.cukura .ant-dropdown-menu .ant-dropdown-menu-item-active {
1802
- background: var(--base-gray-90) !important;
1803
- } */
1804
-
1805
- .user-dropdown-layout .ant-dropdown-menu {
1806
- min-width: 180px;
1807
- border-radius: 6px !important;
1808
- background-color: var(--base-gray-100) !important;
1809
- padding-top: 10px !important;
1810
- padding-bottom: 8px !important;
1811
- }
1812
-
1813
- .user-dropdown-layout.custom .ant-dropdown-menu {
1814
- min-width: 180px;
1815
- border-radius: 6px !important;
1816
- background-color: var(--custom-header-color) !important;
1817
- padding-top: 10px !important;
1818
- padding-bottom: 8px !important;
1819
- }
1820
-
1821
- .user-dropdown-layout .ant-dropdown-menu:hover {
1822
- background-color: var(--base-gray-100) !important;
1823
- }
1824
-
1825
- .user-dropdown-layout.custom .ant-dropdown-menu:hover {
1826
- background-color: var(--custom-header-color) !important;
1827
- }
1828
-
1829
- .user-dropdown-layout .ant-dropdown-menu .ant-dropdown-menu-item {
1830
- padding: 10px;
1831
- cursor: default;
1832
- }
1833
-
1834
- .user-dropdown-layout .ant-dropdown-menu .ant-dropdown-menu-item:hover {
1835
- background-color: transparent;
1836
- }
1837
-
1838
- .user-dropdown-layout .ant-dropdown-menu .list {
1839
- display: flex;
1840
- flex-direction: column;
1841
- }
1842
-
1843
- .user-dropdown-layout .ant-dropdown-menu .list .list-item {
1844
- padding: 5px 12px;
1845
- font-size: 14px;
1846
- font-weight: 500;
1847
- color: white;
1848
- cursor: pointer;
1849
- }
1850
-
1851
- .user-dropdown-layout .ant-dropdown-menu .list .list-item.disabled {
1852
- opacity: 0.1;
1853
- cursor: not-allowed;
1854
- }
1855
-
1856
- .user-dropdown-layout .ant-dropdown-menu .list .list-item:hover {
1857
- background-color: #1f2a37;
1858
- border-radius: 4px;
1859
- transition: 0.6s background;
1860
- }
1861
-
1862
- .user-dropdown-layout.custom .ant-dropdown-menu .list .list-item:hover {
1863
- background-color: var(--custom-sidenav-hover-color);
1864
- border-radius: 4px;
1865
- transition: 0.6s background;
1866
- }
1867
-
1868
- .user-dropdown-layout .ant-dropdown-menu .ant-dropdown-menu-title-content {
1869
- width: 100%;
1870
- }
1871
-
1872
- .user-dropdown-layout .ant-dropdown-menu .drop-header {
1873
- border-bottom: 1px solid var(--base-gray-90);
1874
- margin: 0px 12px 8px 12px;
1875
- }
1876
-
1877
- .user-dropdown-layout .ant-dropdown-menu .drop-header h4 {
1878
- color: white;
1879
- margin-bottom: 0px;
1880
- font-size: 14px;
1881
- font-weight: 500;
1882
- }
1883
-
1884
- .user-dropdown-layout .ant-dropdown-menu .drop-header p {
1885
- color: #9da4ae;
1886
- margin-bottom: 12px;
1887
- font-size: 12px;
1888
- font-weight: 500;
1889
- }
1890
-
1891
- .user-dropdown-layout .ant-dropdown-menu .list-break {
1892
- border-bottom: 1px solid var(--base-gray-90);
1893
- margin: 5px 12px;
1894
- }
1895
-
1896
- .user-dropdown-layout.tazama .ant-dropdown-menu {
1897
- background-color: var(--base-gray-10) !important;
1898
- }
1899
-
1900
- /* .user-dropdown-layout.cukura .ant-dropdown-menu {
1901
- background-color: var(--base-gray-20) !important;
1902
- } */
1903
- .user-dropdown-layout.tazama .ant-dropdown-menu .list .list-item {
1904
- color: var(--base-gray-90);
1905
- }
1906
-
1907
- /* .user-dropdown-layout.cukura .ant-dropdown-menu .list .list-item {
1908
- color: var(--base-gray-90);
1909
- } */
1910
- .user-dropdown-layout.tazama .ant-dropdown-menu .list .list-item:hover {
1911
- background: var(--base-gray-20);
1912
- }
1913
-
1914
- /* .user-dropdown-layout.cukura .ant-dropdown-menu .list .list-item:hover {
1915
- background: var(--base-gray-30);
1916
- } */
1917
- .user-dropdown-layout.tazama .ant-dropdown-menu .drop-header {
1918
- border-bottom-color: var(--base-gray-20);
1919
- }
1920
-
1921
- /* .user-dropdown-layout.cukura .ant-dropdown-menu .drop-header {
1922
- border-bottom-color: var(--base-gray-30);
1923
- } */
1924
- .user-dropdown-layout.tazama .ant-dropdown-menu .drop-header h4 {
1925
- color: var(--base-gray-90);
1926
- }
1927
-
1928
- /* .user-dropdown-layout.cukura .ant-dropdown-menu .drop-header h4 {
1929
- color: var(--base-gray-90);
1930
- } */
1931
- .user-dropdown-layout.tazama .ant-dropdown-menu:hover {
1932
- background-color: var(--base-gray-10) !important;
1933
- }
1934
-
1935
- /* .user-dropdown-layout.cukura .ant-dropdown-menu:hover {
1936
- background-color: var(--base-gray-20) !important;
1937
- } */
1938
-
1939
- .custom-switch.bg-red {
1940
- background: #f5222d !important;
1941
- }
1942
-
1943
- .custom-switch.bg-green {
1944
- background: #52c41a !important;
1945
- }
1946
-
1947
- .editdd-table-modal .inputs label {
1948
- margin-bottom: 0px;
1949
- }
1950
-
1951
- .editdd-table-modal .inputs .ant-input-number {
1952
- width: 100%;
1953
- }
1954
-
1955
- .editdd-table-modal .inputs .ant-form-item .ant-row {
1956
- flex-direction: column;
1957
- }
1958
-
1959
- .editdd-table-modal .inputs .ant-form-item .ant-row .ant-form-item-label {
1960
- text-align: left;
1961
- }
1962
-
1963
- #edit-form {
1964
- display: flex;
1965
- flex-direction: column;
1966
- justify-content: flex-start;
1967
- width: 100%;
1968
- height: 100%;
1969
- overflow: hidden;
1970
- }
1971
-
1972
- #edit-form .ant-form-item {
1973
- margin-bottom: 16px;
1974
- }
1975
-
1976
- #edit-form .content-card {
1977
- max-width: 872px;
1978
- width: 100%;
1979
- border-radius: 8px;
1980
- background-color: white;
1981
- margin: 0 auto;
1982
- padding: 0 var(--size-lg) var(--size-lg) var(--size-lg);
1983
- }
1984
-
1985
- #edit-form .no-label .ant-form-item-label label {
1986
- display: none;
1987
- height: 0px;
1988
- }
1989
-
1990
- #edit-form .comment-btn .ant-btn-icon {
1991
- margin-top: 4px;
1992
- }
1993
-
1994
- #edit-form .ant-form-item-label span:first-child {
1995
- display: flex;
1996
- align-items: center;
1997
- flex: 1;
1998
- justify-content: space-between;
1999
- }
2000
-
2001
- #edit-form .delete-cont {
2002
- display: flex;
2003
- flex-direction: column;
2004
- justify-content: center;
2005
- margin-right: 8px;
2006
- }
2007
-
2008
- #edit-form .delete-cont svg {
2009
- cursor: pointer;
2010
- color: #f04438;
2011
- }
2012
-
2013
- #edit-form .title-semibold-1 {
2014
- font-family: "SF UI Display" !important;
2015
- font-weight: 600 !important;
2016
- font-size: 30px !important;
2017
- line-height: 38px !important;
2018
- color: #001529;
2019
- }
2020
-
2021
- #edit-form .title-semibold-2 {
2022
- font-family: "SF UI Display" !important;
2023
- font-weight: 600 !important;
2024
- font-size: var(--size-lg) !important;
2025
- line-height: 32px !important;
2026
- color: #001529;
2027
- }
2028
-
2029
- #edit-form .title-semibold-3 {
2030
- font-family: "SF UI Display" !important;
2031
- font-weight: 600 !important;
2032
- font-size: var(--font-size-lg) !important;
2033
- line-height: 26px !important;
2034
- color: #001529;
2035
- margin-bottom: 0 !important;
2036
- }
2037
-
2038
- #edit-form .title-semibold-4 {
2039
- font-family: "SF UI Display" !important;
2040
- font-weight: 600 !important;
2041
- font-size: var(--font-size-lg) !important;
2042
- line-height: var(--size-lg) !important;
2043
- color: #001529;
2044
- }
2045
-
2046
- #edit-form .title-normal-2 {
2047
- font-family: "SF UI Display" !important;
2048
- font-weight: 500 !important;
2049
- line-height: 20px !important;
2050
- font-size: 14px;
2051
- color: var(--base-gray-90);
2052
- }
2053
-
2054
- #edit-form .title-semibold-5 {
2055
- font-family: "SF UI Display" !important;
2056
- font-weight: 600 !important;
2057
- font-size: 14px !important;
2058
- line-height: 22px !important;
2059
- color: #001529;
2060
- }
2061
-
2062
- #edit-form .title-semibold-6 {
2063
- font-family: "SF UI Display" !important;
2064
- font-weight: 600 !important;
2065
- font-size: 12px !important;
2066
- line-height: 20px !important;
2067
- color: #001529;
2068
- }
2069
-
2070
- #edit-form .ant-page-header .ant-page-header-heading-left {
2071
- overflow: initial;
2072
- }
2073
-
2074
- #edit-form .ant-page-header .ant-page-header-back-button {
2075
- margin-bottom: 2px;
2076
- }
2077
-
2078
- #edit-form .ant-page-header .ant-page-header-back-button span[role=img] {
2079
- color: var(--color-primary-70);
2080
- }
2081
-
2082
- #edit-form .ant-page-header .ant-page-header-heading-extra {
2083
- width: -webkit-fill-available;
2084
- }
2085
-
2086
- #edit-form .ant-page-header .ant-page-header-heading-extra .ant-space {
2087
- width: 100%;
2088
- }
2089
-
2090
- #edit-form .ant-page-header .ant-page-header-heading-extra .ant-space .ant-space-item {
2091
- width: 100%;
2092
- }
2093
-
2094
- #edit-form .ant-page-header .ant-page-header-heading-extra .actions {
2095
- width: 100%;
2096
- display: flex;
2097
- flex-direction: row;
2098
- justify-content: flex-end;
2099
- padding-right: 12px;
2100
- }
2101
-
2102
- #edit-form .ant-page-header .ant-page-header-heading-extra .actions .ant-btn {
2103
- margin-right: 8px;
2104
- border-radius: 8px;
2105
- }
2106
-
2107
- #edit-form .ant-page-header .ant-page-header-heading-extra .actions .ant-btn span[role=img] {
2108
- font-size: 14px;
2109
- margin-top: 2px;
2110
- }
2111
-
2112
- #edit-form .ant-page-header .tag {
2113
- display: flex;
2114
- flex-direction: row;
2115
- justify-content: flex-start;
2116
- align-items: center;
2117
- }
2118
-
2119
- #edit-form .ant-page-header .tag p {
2120
- margin: 0 8px 0 0;
2121
- }
2122
-
2123
- #edit-form .view-loader {
2124
- position: absolute;
2125
- width: 100%;
2126
- height: 100%;
2127
- background: rgba(255, 255, 255, 0.1);
2128
- color: var(--color-primary-70);
2129
- display: flex;
2130
- flex-direction: row;
2131
- justify-content: center;
2132
- align-items: center;
2133
- font-size: 38px;
2134
- }
2135
-
2136
- #edit-form .ant-menu {
2137
- min-width: 200px;
2138
- height: 100%;
2139
- }
2140
-
2141
- #edit-form .ant-menu .ant-menu-item {
2142
- padding-left: var(--size) !important;
2143
- }
2144
-
2145
- #edit-form .ant-menu .ant-menu-submenu .ant-menu-submenu-title {
2146
- padding-left: var(--size) !important;
2147
- }
2148
-
2149
- #edit-form .ant-menu .ant-menu-submenu .ant-menu.ant-menu-sub .ant-menu-item {
2150
- padding-left: 32px !important;
2151
- }
2152
-
2153
- #edit-form .entity-name {
2154
- line-height: 1;
2155
- margin: auto;
2156
- display: flex;
2157
- font-size: var(--font-size-lg);
2158
- }
2159
-
2160
- #edit-form .entity-name .anticon {
2161
- vertical-align: 0;
2162
- margin-right: 5px;
2163
- }
2164
-
2165
- #edit-form .view-content {
2166
- display: flex;
2167
- flex-direction: row;
2168
- justify-content: space-between;
2169
- position: relative;
2170
- width: 100%;
2171
- flex: 1;
2172
- overflow: auto;
2173
- }
2174
-
2175
- #edit-form .view-content .content {
2176
- width: 100%;
2177
- display: flex;
2178
- flex-direction: column;
2179
- overflow-y: auto;
2180
- padding: 20px 20px 0 20px;
2181
- }
2182
-
2183
- #edit-form .view-content .content.risk-template.no-padding {
2184
- padding: 0;
2185
- overflow-y: auto;
2186
- flex-direction: row;
2187
- }
2188
-
2189
- #edit-form .view-content .content .title {
2190
- margin-bottom: 20px;
2191
- font-size: var(--size-lg);
2192
- }
2193
-
2194
- #edit-form .view-content .content .wrapper {
2195
- padding: 0;
2196
- display: flex;
2197
- flex-direction: row;
2198
- flex-wrap: wrap;
2199
- }
2200
-
2201
- #edit-form .view-content .content .wrapper .group {
2202
- width: 100%;
2203
- background: #fbfbfb;
2204
- border: 1px solid #f2f2f2;
2205
- padding: var(--size);
2206
- display: flex;
2207
- flex-direction: row;
2208
- flex-wrap: wrap;
2209
- margin-bottom: 20px;
2210
- }
2211
-
2212
- #edit-form .view-content .content .wrapper .group .title {
2213
- width: 100%;
2214
- display: flex;
2215
- align-items: center;
2216
- margin-bottom: var(--size);
2217
- }
2218
-
2219
- #edit-form .view-content .content .wrapper .group .title h1 {
2220
- font-size: 18px;
2221
- color: #001529;
2222
- margin-bottom: 0;
2223
- }
2224
-
2225
- #edit-form .view-content .content .wrapper .group .input {
2226
- display: flex;
2227
- flex-direction: column;
2228
- justify-content: space-between;
2229
- width: 25%;
2230
- border-bottom: 1px solid #e4e8ed;
2231
- margin-bottom: var(--size);
2232
- }
2233
-
2234
- #edit-form .view-content .content .wrapper .group .input .label,
2235
- #edit-form .view-content .content .wrapper .group .input .value {
2236
- font-size: 14px;
2237
- color: #828282;
2238
- line-height: 22px;
2239
- margin: 0;
2240
- }
2241
-
2242
- #edit-form .view-content .content .wrapper .group .input .value {
2243
- color: #001529;
2244
- font-weight: 400;
2245
- margin-bottom: var(--size);
2246
- margin-top: 8px;
2247
- }
2248
-
2249
- #edit-form .view-content .content .wrapper .group .input.last {
2250
- margin: 0;
2251
- border: none;
2252
- }
2253
-
2254
- #edit-form .view-content .content .wrapper .group .input.last .value {
2255
- margin: 0;
2256
- margin-top: 8px;
2257
- }
2258
-
2259
- #edit-form .view-content .content .wrapper .group.repeatable .repeatable-row {
2260
- width: 100%;
2261
- display: flex;
2262
- background: white;
2263
- }
2264
-
2265
- #edit-form .view-content .content .wrapper .group.repeatable .input {
2266
- margin-right: 0 !important;
2267
- margin: 0;
2268
- border-bottom: none;
2269
- }
2270
-
2271
- #edit-form .view-content .content .wrapper .group.repeatable .input .label {
2272
- padding-bottom: 12px;
2273
- border-bottom: 1px solid #e4e8ed;
2274
- min-height: 35px;
2275
- }
2276
-
2277
- #edit-form .view-content .content .wrapper .group.repeatable .input .value {
2278
- padding: 12px 0;
2279
- background: white;
2280
- border-bottom: 1px solid #e4e8ed;
2281
- min-height: 48px;
2282
- margin-bottom: 0;
2283
- margin-top: 0;
2284
- }
2285
-
2286
- #edit-form .view-content .content .wrapper .group.repeatable .input.action .value {
2287
- text-align: center;
2288
- }
2289
-
2290
- #edit-form .view-content .content .wrapper .group.repeatable .no-data {
2291
- margin: 0;
2292
- padding: 12px;
2293
- background: white;
2294
- width: 100%;
2295
- text-align: center;
2296
- }
2297
-
2298
- #edit-form .view-content .content .wrapper .group.repeatable .input .label {
2299
- height: 100%;
2300
- }
2301
-
2302
- #edit-form .view-content .content .wrapper .group.repeatable .repetable-row-extra {
2303
- width: 100%;
2304
- display: flex;
2305
- flex-wrap: wrap;
2306
- padding: var(--size) 0;
2307
- background: white;
2308
- justify-content: center;
2309
- border-bottom: 1px solid #e4e8ed !important;
2310
- overflow: hidden;
2311
- transition: all 300ms ease;
2312
- }
2313
-
2314
- #edit-form .view-content .content .wrapper .group.repeatable .repetable-row-extra .input {
2315
- display: flex !important;
2316
- flex-direction: column;
2317
- justify-content: space-between;
2318
- border-bottom: 1px solid #e4e8ed;
2319
- margin-bottom: var(--size);
2320
- }
2321
-
2322
- #edit-form .view-content .content .wrapper .group.repeatable .repetable-row-extra .label,
2323
- #edit-form .view-content .content .wrapper .group.repeatable .repetable-row-extra .value {
2324
- font-size: 14px;
2325
- color: #828282;
2326
- line-height: 22px;
2327
- margin: 0;
2328
- border-bottom: none;
2329
- padding-right: var(--size);
2330
- }
2331
-
2332
- #edit-form .view-content .content .wrapper .group.repeatable .repetable-row-extra .value {
2333
- color: #001529;
2334
- font-weight: 400;
2335
- margin-bottom: var(--size);
2336
- background: none;
2337
- border-bottom: none;
2338
- padding: 0;
2339
- min-height: unset;
2340
- }
2341
-
2342
- #edit-form .view-content .content .wrapper .group.repeatable .repetable-row-extra .input.last {
2343
- margin: 0;
2344
- border: none;
2345
- }
2346
-
2347
- #edit-form .view-content .content .wrapper .group.repeatable .repetable-row-extra .input.last .value {
2348
- margin: 0;
2349
- }
2350
-
2351
- #edit-form .view-content .anticon {
2352
- vertical-align: 0;
2353
- }
2354
-
2355
- #edit-form .view-content .form-edit {
2356
- width: 100%;
2357
- display: flex;
2358
- overflow: auto;
2359
- flex-direction: column;
2360
- padding: var(--size-lg);
2361
- background: #f2f2f2;
2362
- }
2363
-
2364
- #edit-form .view-content .form-edit .title-normal-2 {
2365
- padding-top: 36px;
2366
- margin-bottom: 0;
2367
- }
2368
-
2369
- #edit-form .view-content .form-edit .title-normal-2:first-of-type {
2370
- padding-top: 0px;
2371
- }
2372
-
2373
- #edit-form .view-content .form-edit.has-section {
2374
- width: calc(100% - 200px);
2375
- }
2376
-
2377
- #edit-form .view-content .form-edit .section-title {
2378
- font-size: var(--size-lg) !important;
2379
- padding-bottom: 22px;
2380
- border-bottom: 1px solid #e9e9e9;
2381
- margin-bottom: 20px;
2382
- font-weight: 600 !important;
2383
- }
2384
-
2385
- #edit-form .view-content .form-edit .section-comments {
2386
- width: 100%;
2387
- padding: var(--size);
2388
- background: white;
2389
- border-radius: 4px;
2390
- margin-top: 22px;
2391
- }
2392
-
2393
- #edit-form .view-content .form-edit .main-form {
2394
- min-width: 400px;
2395
- width: 100%;
2396
- }
2397
-
2398
- #edit-form .view-content .form-edit .main-form .edit-form-header {
2399
- border-bottom: 1px solid var(--base-gray-30);
2400
- padding: var(--size-lg) 0;
2401
- margin-bottom: 32px;
2402
- }
2403
-
2404
- #edit-form .view-content .form-edit .main-form .edit-form-header.no-padding {
2405
- border-bottom: 0px;
2406
- padding: 0px;
2407
- }
2408
-
2409
- #edit-form .view-content .form-edit .main-form .edit-form-header h1 {
2410
- font-size: 18px;
2411
- font-weight: 500;
2412
- margin-bottom: 0px;
2413
- }
2414
-
2415
- #edit-form .view-content .form-edit .main-form.project-form {
2416
- background-color: white;
2417
- max-width: unset;
2418
- min-width: 520px;
2419
- border-radius: 8px;
2420
- margin-right: auto;
2421
- box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.0588235294);
2422
- }
2423
-
2424
- #edit-form .view-content .form-edit .main-form.project-form .edit-form-header {
2425
- padding-bottom: 0px;
2426
- border-bottom: 0px;
2427
- padding-top: 0px;
2428
- margin-bottom: 0px;
2429
- }
2430
-
2431
- #edit-form .view-content .form-edit .main-form.project-form .edit-form-body {
2432
- padding: var(--size-lg);
2433
- }
2434
-
2435
- @media screen and (max-width: 1200px) {
2436
- #edit-form .view-content .form-edit .main-form {
2437
- min-width: 600px;
2438
- }
2439
- }
2440
-
2441
- @media screen and (max-width: 768px) {
2442
- #edit-form .view-content .form-edit .main-form {
2443
- min-width: 100%;
2444
- }
2445
- }
2446
-
2447
- #edit-form .view-content .form-edit .main-form .ant-form-vertical .ant-form-item-label,
2448
- #edit-form .view-content .form-edit .main-form .ant-col-24.ant-form-item-label,
2449
- #edit-form .view-content .form-edit .main-form .ant-col-xl-24.ant-form-item-label {
2450
- padding: 0 !important;
2451
- }
2452
-
2453
- #edit-form .view-content .form-edit .main-form .with-comment>.ant-form-item-label>label {
2454
- width: 100%;
2455
- }
2456
-
2457
- #edit-form .view-content .form-edit .main-form .with-comment>.ant-form-item-label>label>span {
2458
- display: flex;
2459
- justify-content: space-between;
2460
- width: 100%;
2461
- }
2462
-
2463
- #edit-form .view-content .form-edit .main-form .with-comment>.ant-form-item-label>label>span>span>button {
2464
- line-height: 1;
2465
- height: inherit;
2466
- font-size: 14px;
2467
- padding: 0;
2468
- }
2469
-
2470
- #edit-form .view-content .form-edit .main-form .with-comment.i-radioGroup>.ant-form-item-label>label>span {
2471
- font-style: normal;
2472
- font-weight: bold;
2473
- font-size: 18px;
2474
- line-height: 22px;
2475
- display: flex;
2476
- align-items: center;
2477
- color: #001529;
2478
- }
2479
-
2480
- #edit-form .view-content .form-edit .main-form .i-radioGroup,
2481
- #edit-form .view-content .form-edit .main-form .i-checkboxGroup {
2482
- background: #ffffff;
2483
- box-sizing: border-box;
2484
- border-radius: 2px;
2485
- margin: 0;
2486
- flex-flow: column;
2487
- margin-bottom: 16px;
2488
- }
2489
-
2490
- #edit-form .view-content .form-edit .main-form .i-radioGroup .ant-checkbox-wrapper+.ant-checkbox-wrapper,
2491
- #edit-form .view-content .form-edit .main-form .i-checkboxGroup .ant-checkbox-wrapper+.ant-checkbox-wrapper {
2492
- margin: 0;
2493
- }
2494
-
2495
- #edit-form .view-content .form-edit .main-form .i-radioGroup .ant-radio-group.ant-radio-group-outline,
2496
- #edit-form .view-content .form-edit .main-form .i-radioGroup .ant-checkbox-group,
2497
- #edit-form .view-content .form-edit .main-form .i-checkboxGroup .ant-radio-group.ant-radio-group-outline,
2498
- #edit-form .view-content .form-edit .main-form .i-checkboxGroup .ant-checkbox-group {
2499
- width: 100%;
2500
- display: flex;
2501
- flex-direction: column;
2502
- padding: 0;
2503
- }
2504
-
2505
- #edit-form .view-content .form-edit .main-form .i-radioGroup .ant-radio-group.ant-radio-group-outline label,
2506
- #edit-form .view-content .form-edit .main-form .i-radioGroup .ant-checkbox-group label,
2507
- #edit-form .view-content .form-edit .main-form .i-checkboxGroup .ant-radio-group.ant-radio-group-outline label,
2508
- #edit-form .view-content .form-edit .main-form .i-checkboxGroup .ant-checkbox-group label {
2509
- display: flex;
2510
- background: white;
2511
- box-sizing: border-box;
2512
- border-radius: 2px;
2513
- font-size: 14px;
2514
- }
2515
-
2516
- #edit-form .view-content .form-edit .main-form .i-radioGroup .ant-radio-group.ant-radio-group-outline label .ant-radio,
2517
- #edit-form .view-content .form-edit .main-form .i-radioGroup .ant-radio-group.ant-radio-group-outline label .ant-checkbox,
2518
- #edit-form .view-content .form-edit .main-form .i-radioGroup .ant-checkbox-group label .ant-radio,
2519
- #edit-form .view-content .form-edit .main-form .i-radioGroup .ant-checkbox-group label .ant-checkbox,
2520
- #edit-form .view-content .form-edit .main-form .i-checkboxGroup .ant-radio-group.ant-radio-group-outline label .ant-radio,
2521
- #edit-form .view-content .form-edit .main-form .i-checkboxGroup .ant-radio-group.ant-radio-group-outline label .ant-checkbox,
2522
- #edit-form .view-content .form-edit .main-form .i-checkboxGroup .ant-checkbox-group label .ant-radio,
2523
- #edit-form .view-content .form-edit .main-form .i-checkboxGroup .ant-checkbox-group label .ant-checkbox {
2524
- width: 16px;
2525
- }
2526
-
2527
- #edit-form .view-content .form-edit .main-form .i-radioGroup .ant-radio-group.ant-radio-group-outline label>span:last-child,
2528
- #edit-form .view-content .form-edit .main-form .i-radioGroup .ant-checkbox-group label>span:last-child,
2529
- #edit-form .view-content .form-edit .main-form .i-checkboxGroup .ant-radio-group.ant-radio-group-outline label>span:last-child,
2530
- #edit-form .view-content .form-edit .main-form .i-checkboxGroup .ant-checkbox-group label>span:last-child {
2531
- display: flex;
2532
- flex-direction: column;
2533
- }
2534
-
2535
- #edit-form .view-content .form-edit .main-form .i-radioGroup .ant-radio-group.ant-radio-group-outline label>span:last-child .radio-title,
2536
- #edit-form .view-content .form-edit .main-form .i-radioGroup .ant-checkbox-group label>span:last-child .radio-title,
2537
- #edit-form .view-content .form-edit .main-form .i-checkboxGroup .ant-radio-group.ant-radio-group-outline label>span:last-child .radio-title,
2538
- #edit-form .view-content .form-edit .main-form .i-checkboxGroup .ant-checkbox-group label>span:last-child .radio-title {
2539
- font-style: normal;
2540
- font-weight: 400;
2541
- font-size: 15px;
2542
- line-height: var(--size-lg);
2543
- display: flex;
2544
- align-items: center;
2545
- color: #001529;
2546
- white-space: normal !important;
2547
- }
2548
-
2549
- #edit-form .view-content .form-edit .main-form .i-radioGroup .ant-radio-group.ant-radio-group-outline label>span:last-child .radio-description,
2550
- #edit-form .view-content .form-edit .main-form .i-radioGroup .ant-checkbox-group label>span:last-child .radio-description,
2551
- #edit-form .view-content .form-edit .main-form .i-checkboxGroup .ant-radio-group.ant-radio-group-outline label>span:last-child .radio-description,
2552
- #edit-form .view-content .form-edit .main-form .i-checkboxGroup .ant-checkbox-group label>span:last-child .radio-description {
2553
- font-style: normal;
2554
- font-weight: normal;
2555
- font-size: 14px;
2556
- line-height: 22px;
2557
- display: flex;
2558
- align-items: center;
2559
- white-space: normal !important;
2560
- }
2561
-
2562
- #edit-form .view-content .form-edit .main-form .i-transfer .ant-transfer {
2563
- width: 100%;
2564
- display: flex;
2565
- flex-direction: column;
2566
- }
2567
-
2568
- #edit-form .view-content .form-edit .main-form .i-transfer .ant-transfer .ant-transfer-list {
2569
- height: 300px;
2570
- }
2571
-
2572
- #edit-form .view-content .form-edit .main-form .i-transfer .ant-transfer .ant-transfer-list .ant-transfer-list-body {
2573
- overflow-y: auto;
2574
- }
2575
-
2576
- #edit-form .view-content .form-edit .main-form .i-transfer .ant-transfer .ant-transfer-list .ant-transfer-list-body .ant-transfer-list-body-customize-wrapper {
2577
- padding: 0;
2578
- }
2579
-
2580
- #edit-form .view-content .form-edit .main-form .i-transfer .ant-transfer .ant-transfer-list .ant-transfer-list-header .ant-transfer-list-header-selected {
2581
- display: flex;
2582
- flex-direction: row-reverse;
2583
- width: 100%;
2584
- justify-content: space-between;
2585
- }
2586
-
2587
- #edit-form .view-content .form-edit .main-form .i-transfer .ant-transfer .ant-transfer-list .ant-transfer-list-header .ant-transfer-list-header-selected .ant-transfer-list-header-title {
2588
- position: inherit;
2589
- font-size: var(--font-size-lg);
2590
- color: #001529;
2591
- font-weight: 700;
2592
- }
2593
-
2594
- #edit-form .view-content .form-edit .main-form .i-transfer .ant-transfer .ant-transfer-operation {
2595
- display: flex;
2596
- justify-content: space-around;
2597
- width: 100px;
2598
- margin: 10px;
2599
- }
2600
-
2601
- #edit-form .view-content .form-edit .main-form .i-transfer .ant-transfer .ant-transfer-operation button {
2602
- transform: rotate(90deg);
2603
- }
2604
-
2605
- #edit-form .view-content .form-edit .main-form .i-transfer .ant-transfer .ant-transfer-operation button .anticon {
2606
- position: absolute;
2607
- top: 4px;
2608
- left: 0;
2609
- right: 0;
2610
- }
2611
-
2612
- #edit-form .view-content .form-edit .main-form .ant-picker {
2613
- width: 100%;
2614
- }
2615
-
2616
- #edit-form .view-content .form-edit .main-form .ant-picker .ant-picker-suffix {
2617
- margin-top: -6px;
2618
- }
2619
-
2620
- #edit-form .view-content .form-edit .main-form .ant-picker .ant-picker-clear {
2621
- margin-top: -3px;
2622
- }
2623
-
2624
- #edit-form .view-content .form-edit .main-form .ant-input-number {
2625
- width: 100%;
2626
- }
2627
-
2628
- #edit-form .view-content .form-edit .main-form .title-semibold-4 {
2629
- font-size: 18px;
2630
- font-weight: 700;
2631
- font-style: normal;
2632
- line-height: 22px;
2633
- color: #001529;
2634
- }
2635
-
2636
- #edit-form .view-content .form-edit .main-form .ant-col.ant-form-item-label label {
2637
- font-size: 14px;
2638
- font-style: normal;
2639
- font-weight: normal;
2640
- line-height: 20px;
2641
- display: flex;
2642
- align-items: center;
2643
- color: var(--base-gray-90);
2644
- align-self: stretch;
2645
- flex-grow: 0;
2646
- }
2647
-
2648
- #edit-form .view-content .form-edit .main-form .i-transfer>.ant-form-item-label>label {
2649
- padding: 14px 0;
2650
- }
2651
-
2652
- #edit-form .view-content .form-edit .main-form .i-undefined {
2653
- display: none;
2654
- }
2655
-
2656
- #edit-form .view-content .form-edit .main-form .repeatable {
2657
- box-sizing: border-box;
2658
- position: relative;
2659
- }
2660
-
2661
- #edit-form .view-content .form-edit .main-form .repeatable .ant-table .ant-table-container {
2662
- border-inline-start: unset;
2663
- border-top: unset;
2664
- }
2665
-
2666
- #edit-form .view-content .form-edit .main-form .repeatable .ant-table .ant-table-container .ant-table-cell {
2667
- border: 0px;
2668
- font-size: 14px;
2669
- }
2670
-
2671
- #edit-form .view-content .form-edit .main-form .repeatable .ant-table .ant-table-container .ant-table-cell p {
2672
- margin-bottom: 0px !important;
2673
- }
2674
-
2675
- #edit-form .view-content .form-edit .main-form .repeatable .ant-table .value {
2676
- margin: 0;
2677
- }
2678
-
2679
- #edit-form .view-content .form-edit .main-form .repeatable .header {
2680
- padding-bottom: 8px;
2681
- display: flex;
2682
- }
2683
-
2684
- #edit-form .view-content .form-edit .main-form .repeatable .header button {
2685
- margin-top: 0px !important;
2686
- }
2687
-
2688
- #edit-form .view-content .form-edit .main-form .repeatable .header h3 {
2689
- margin-bottom: 0px;
2690
- font-size: 14px;
2691
- color: var(--base-gray-90);
2692
- }
2693
-
2694
- #edit-form .view-content .form-edit .main-form .repeatable .header .main {
2695
- flex: 1;
2696
- }
2697
-
2698
- #edit-form .view-content .form-edit .main-form .repeatable .header div {
2699
- display: flex;
2700
- flex-direction: column;
2701
- justify-content: center;
2702
- }
2703
-
2704
- #edit-form .view-content .form-edit .main-form .repeatable .table-body .value {
2705
- max-width: 100%;
2706
- overflow: hidden;
2707
- text-wrap: nowrap;
2708
- text-overflow: ellipsis;
2709
- }
2710
-
2711
- #edit-form .view-content .form-edit .main-form .i-group .ant-form-item-control-input-content {
2712
- justify-content: flex-start;
2713
- grid-gap: 8px;
2714
- }
2715
-
2716
- #edit-form .view-content .form-edit .main-form .ajax-modal-view {
2717
- padding: 18px;
2718
- width: 100%;
2719
- border: 1px dashed #d7daea;
2720
- box-sizing: border-box;
2721
- border-radius: 2px;
2722
- padding-top: 5px;
2723
- }
2724
-
2725
- #edit-form .view-content .form-edit .main-form .ajax-modal-view .link-row {
2726
- height: auto;
2727
- display: flex;
2728
- line-height: var(--size);
2729
- min-height: 32px;
2730
- padding: 5px 0;
2731
- }
2732
-
2733
- #edit-form .view-content .form-edit .main-form .ajax-modal-view .link-row.even {
2734
- background: #f9fafc;
2735
- }
2736
-
2737
- #edit-form .view-content .form-edit .main-form .ajax-modal-view .link-row span {
2738
- width: 50%;
2739
- padding: 0 12px;
2740
- margin: auto;
2741
- }
2742
-
2743
- #edit-form .view-content .form-edit .main-form .repeatable-item {
2744
- border: 1px dashed #d7daea;
2745
- box-sizing: border-box;
2746
- border-radius: 2px;
2747
- padding: 15px;
2748
- }
2749
-
2750
- #edit-form .view-content .form-edit .main-form .repeatable-item .ajax-modal-view {
2751
- padding-top: 0px;
2752
- }
2753
-
2754
- #edit-form .view-content .form-edit .main-form .repeatable-item .total-inputs-1 .ajax-modal-view .remove-button-row {
2755
- display: none !important;
2756
- }
2757
-
2758
- #edit-form .view-content .form-edit .main-form .ajax-modal-edit {
2759
- background: #ffffff;
2760
- box-sizing: border-box;
2761
- border-radius: 2px;
2762
- padding: 20px;
2763
- width: 100%;
2764
- margin-bottom: var(--size-lg);
2765
- }
2766
-
2767
- #edit-form .view-content .form-edit .main-form .ajax-modal-edit .form-modal {
2768
- width: 100%;
2769
- }
2770
-
2771
- #edit-form .view-content .form-edit .main-form .ajax-modal-edit .form-botom {
2772
- display: flex;
2773
- justify-content: center;
2774
- }
2775
-
2776
- #edit-form .view-content .form-edit .main-form .ajax-modal-edit .form-botom button {
2777
- border-radius: 8px;
2778
- }
2779
-
2780
- #edit-form .view-content .form-edit .main-form .i-switch {
2781
- line-height: 32px;
2782
- padding: 10px;
2783
- border: 1px solid #d7daea;
2784
- display: flex;
2785
- flex-direction: row;
2786
- justify-content: space-between;
2787
- }
2788
-
2789
- #edit-form .view-content .form-edit .main-form .i-switch .ant-form-item-label {
2790
- padding-bottom: 0;
2791
- display: flex;
2792
- flex-wrap: wrap;
2793
- width: calc(100% - 60px);
2794
- }
2795
-
2796
- #edit-form .view-content .form-edit .main-form .i-switch .ant-form-item-label label {
2797
- flex-wrap: wrap;
2798
- }
2799
-
2800
- #edit-form .view-content .form-edit .main-form .i-switch .ant-row {
2801
- width: 100%;
2802
- display: flex;
2803
- flex-direction: row;
2804
- flex-wrap: nowrap;
2805
- }
2806
-
2807
- #edit-form .view-content .form-edit .main-form .i-switch .ant-row .ant-form-item-control {
2808
- width: unset;
2809
- }
2810
-
2811
- #edit-form .view-content .form-edit .main-form .i-switch.onTitle .ant-row {
2812
- width: unset;
2813
- flex-direction: column;
2814
- }
2815
-
2816
- #edit-form .view-content .form-edit .main-form .i-switch.onTitle .ant-form-item-label {
2817
- width: 0;
2818
- }
2819
-
2820
- #edit-form .view-content .form-edit .main-form .i-switch .ant-form-item-control {
2821
- justify-content: flex-end;
2822
- flex-grow: inherit;
2823
- }
2824
-
2825
- #edit-form .view-content .form-edit .main-form .i-switch.onTitle {
2826
- max-height: 1px;
2827
- padding: 0;
2828
- border: none;
2829
- margin: 0;
2830
- justify-content: flex-end !important;
2831
- }
2832
-
2833
- #edit-form .view-content .form-edit .main-form .edit-form-body.documents-layout .repeatable {
2834
- border-bottom: 0px;
2835
- }
2836
-
2837
- #edit-form .view-content .form-edit .main-form .edit-form-body.documents-layout .ajax-modal-edit {
2838
- margin-bottom: 0px;
2839
- }
2840
-
2841
- #edit-form .view-content .form-edit.project {
2842
- background-color: white;
2843
- }
2844
-
2845
- #edit-form .view-content .form-edit.project .content-card {
2846
- max-width: calc(700px + var(--size-lg) + var(--size-lg));
2847
- }
2848
-
2849
- #edit-form .view-content .form-edit.project .edit-form-header {
2850
- padding-top: 0px;
2851
- margin-bottom: var(--size-lg);
2852
- }
2853
-
2854
- #edit-form .risk-template {
2855
- display: flex;
2856
- }
2857
-
2858
- #edit-form .risk-template .risk-categories-list {
2859
- justify-content: center;
2860
- display: flex;
2861
- flex-direction: column;
2862
- height: 100%;
2863
- }
2864
-
2865
- #edit-form .risk-template .risk-categories-list .risk-categories {
2866
- width: 100%;
2867
- min-height: 100px;
2868
- margin-bottom: var(--size);
2869
- margin-top: var(--size);
2870
- white-space: break-spaces;
2871
- }
2872
-
2873
- #edit-form .total100 {
2874
- display: flex;
2875
- flex-direction: column;
2876
- width: 100%;
2877
- }
2878
-
2879
- #edit-form .total100 .ant-space-item:nth-of-type(3n) {
2880
- flex-grow: initial;
2881
- }
2882
-
2883
- #edit-form .total100 .ant-space-item:not(:last-of-type) {
2884
- width: calc(50% - 4px);
2885
- }
2886
-
2887
- #edit-form .total100 .ant-space {
2888
- margin-top: 8px;
2889
- }
2890
-
2891
- #edit-form .risk-plan {
2892
- display: flex;
2893
- flex-direction: row;
2894
- align-items: flex-start;
2895
- padding: 21px;
2896
- border: 1px solid;
2897
- box-sizing: border-box;
2898
- border-radius: 2px;
2899
- color: #001529;
2900
- flex-wrap: wrap;
2901
- }
2902
-
2903
- #edit-form .risk-plan .subScore {
2904
- display: flex;
2905
- min-width: 100px;
2906
- padding-top: 3.5px;
2907
- }
2908
-
2909
- #edit-form .risk-plan .subScore p {
2910
- margin: 0;
2911
- margin-bottom: 4px;
2912
- }
2913
-
2914
- #edit-form .risk-plan .subScore .levels {
2915
- display: flex;
2916
- justify-content: space-between;
2917
- height: 15px;
2918
- }
2919
-
2920
- #edit-form .risk-plan .subScore .levels div {
2921
- width: 15px;
2922
- margin-right: 3px;
2923
- height: 100%;
2924
- background: #f3f3f3;
2925
- }
2926
-
2927
- #edit-form .risk-plan .subScore .levels div:last-of-type {
2928
- margin-right: 0;
2929
- }
2930
-
2931
- #edit-form .risk-name {
2932
- color: #001529;
2933
- font-style: italic;
2934
- }
2935
-
2936
- #edit-form .i-imageUpload {
2937
- margin-top: 22px;
2938
- }
2939
-
2940
- #edit-form .btn-view {
2941
- border-color: var(--color-primary-70);
2942
- border-radius: 2px;
2943
- padding: 5px 8px 8px 8px;
2944
- }
2945
-
2946
- #edit-form .btn-view svg {
2947
- fill: var(--color-primary-70);
2948
- }
2949
-
2950
- #edit-form .btn-custom {
2951
- border-radius: 2px !important;
2952
- }
2953
-
2954
- #edit-form .btn-custom-2 {
2955
- border-radius: 8px !important;
2956
- border: 1px solid #d0d5dd !important;
2957
- border-radius: 8px !important;
2958
- color: var(--base-gray-90) !important;
2959
- font-size: 14px;
2960
- padding-top: 8px !important;
2961
- }
2962
-
2963
- #edit-form .btn-custom-2.primary {
2964
- color: white !important;
2965
- border-color: transparent !important;
2966
- }
2967
-
2968
- #edit-form .btn-custom-2.primary:disabled {
2969
- border-color: #d0d5dd !important;
2970
- color: rgba(56, 66, 80, 0.5) !important;
2971
- }
2972
-
2973
- #edit-form .btn-save-and-continue {
2974
- color: #262626;
2975
- border-color: var(--color-primary-70);
2976
- }
2977
-
2978
- .ant-modal .modal-title {
2979
- font-weight: bold;
2980
- font-size: 18px;
2981
- margin-right: 20px;
2982
- }
2983
-
2984
- .ant-modal .section-label {
2985
- font-size: var(--font-size-lg);
2986
- font-weight: 300;
2987
- }
2988
-
2989
- .ant-modal .inputs>div.ant-row.ant-form-item {
2990
- display: flex;
2991
- flex-direction: column;
2992
- align-items: flex-start;
2993
- width: 100%;
2994
- }
2995
-
2996
- .ant-modal .inputs>div.ant-row.ant-form-item div.ant-form-item-label {
2997
- width: 100%;
2998
- }
2999
-
3000
- .ant-modal .inputs>div.ant-row.ant-form-item div.ant-form-item-label label {
3001
- margin: 0;
3002
- display: flex;
3003
- justify-content: space-between;
3004
- width: 100%;
3005
- }
3006
-
3007
- .ant-modal .inputs>div.ant-row.ant-form-item div.ant-form-item-label label span:nth-of-type(1) {
3008
- display: flex;
3009
- justify-content: space-between;
3010
- width: 100%;
3011
- margin: auto 0;
3012
- }
3013
-
3014
- .ant-modal .inputs>div.ant-row.ant-form-item div.ant-form-item-label label span:nth-of-type(1) button {
3015
- display: flex;
3016
- align-items: center;
3017
- padding-right: 0;
3018
- }
3019
-
3020
- .ant-modal .inputs>div.ant-row.ant-form-item div.ant-form-item-label label::after {
3021
- display: none;
3022
- }
3023
-
3024
- .ant-modal .inputs>div.ant-row.ant-form-item .ant-form-item-control {
3025
- width: 100%;
3026
- }
3027
-
3028
- .ant-modal .repeatable-modal-actions {
3029
- display: flex;
3030
- flex-direction: row;
3031
- justify-content: flex-end;
3032
- gap: 12px;
3033
- margin: 32px 0 22px 0;
3034
- }
3035
-
3036
- .ant-checkbox-wrapper.ant-checkbox-wrapper-disabled .radio-title {
3037
- color: rgba(0, 0, 0, 0.3) !important;
3038
- }
3039
-
3040
- .i-modal .link-row {
3041
- display: flex;
3042
- }
3043
-
3044
- .i-modal .link-row:not(:last-of-type) {
3045
- padding-bottom: 4px;
3046
- margin-bottom: 4px;
3047
- border-bottom: 1px solid rgba(0, 0, 0, 0.1);
3048
- }
3049
-
3050
- .i-modal .link-row span {
3051
- width: 50%;
3052
- }
3053
-
3054
- .i-modal .remove-button-row button {
3055
- display: flex;
3056
- align-items: center;
3057
- }
3058
-
3059
- .i-modal .ant-form-item-control-input-content {
3060
- display: block;
3061
- padding: var(--size);
3062
- border: 1px dashed rgba(0, 0, 0, 0.2);
3063
- border-radius: 4px;
3064
- }
3065
-
3066
- .i-modal .ant-form-item-control-input-content .form-modal {
3067
- width: 100%;
3068
- }
3069
-
3070
- .i-modal .ant-form-item-control-input-content .form-modal .wrapper {
3071
- display: none;
3072
- }
3073
-
3074
- .i-modal .ant-form-item-control-input-content .form-modal .ant-form-item-control-input-content {
3075
- padding: 0;
3076
- display: flex;
3077
- border: none;
3078
- }
3079
-
3080
- .i-modal .ant-form-item-control-input-content .form-modal .main-form label {
3081
- flex-direction: row-reverse;
3082
- }
3083
-
3084
- body {
3085
- margin: 0;
3086
- color: var(--base-gray-90);
3087
- overflow-y: hidden;
3088
- }
3089
-
3090
- h1,
3091
- h2,
3092
- h3,
3093
- h4,
3094
- h5,
3095
- h6 {
3096
- color: rgba(0, 0, 0, 0.85);
3097
- }
3098
-
3099
- .ant-popconfirm-buttons {
3100
- display: flex;
3101
- }
3102
-
3103
- .ant-breadcrumb ol {
3104
- flex-wrap: nowrap;
3105
- }
3106
-
3107
- .ant-modal-confirm-btns {
3108
- display: flex;
3109
- justify-content: flex-end;
3110
- }
3111
-
3112
- #root {
3113
- margin: 0;
3114
- height: 100dvh;
3115
- max-height: 100dvh;
3116
- width: 100%;
3117
- }
3118
-
3119
- .ant-btn-link {
3120
- display: flex;
3121
- flex-direction: row;
3122
- justify-content: flex-start;
3123
- }
3124
-
3125
- .ant-btn-linkspan[role=img] {
3126
- font-size: var(--font-size-lg);
3127
- }
3128
-
3129
- body {
3130
- padding-bottom: unset;
3131
- background-color: white !important;
3132
- }
3133
-
3134
- .flex-row {
3135
- display: flex;
3136
- }
3137
-
3138
- .gap-2 {
3139
- gap: 10px;
3140
- }
3141
-
3142
- .gap-6 {
3143
- gap: 24px;
3144
- }
3145
-
3146
- .view-wrapper {
3147
- overflow-x: hidden;
3148
- overflow-y: hidden;
3149
- height: 100dvh;
3150
- width: 100%;
3151
- display: flex;
3152
- flex-flow: row nowrap;
3153
- align-items: stretch;
3154
- }
3155
-
3156
- .navbar-custom {
3157
- position: fixed;
3158
- top: 0;
3159
- left: 0;
3160
- width: 100%;
3161
- z-index: 100;
3162
- height: 60px;
3163
- display: flex;
3164
- flex-flow: row nowrap;
3165
- align-items: center;
3166
- justify-content: space-between;
3167
- background-color: white;
3168
- border-bottom: 1px solid rgba(0, 0, 0, 0.1);
3169
- padding: 0 var(--size);
3170
- color: white;
3171
- box-sizing: border-box;
3172
- }
3173
-
3174
- .navbar-custom .logo-box {
3175
- height: auto;
3176
- }
3177
-
3178
- .navbar-custom .logo .logo-lg {
3179
- line-height: normal;
3180
- }
3181
-
3182
- .component-view {
3183
- overflow-y: auto;
3184
- width: 100%;
3185
- height: 100%;
3186
- }
3187
-
3188
- .component-view.plr-30 {
3189
- padding-left: 30px;
3190
- padding-right: 30px;
3191
- }
3192
-
3193
- .custom-control-input:checked~.custom-control-label::before {
3194
- color: #1890ff;
3195
- border-color: #1890ff;
3196
- background-color: #1890ff;
3197
- }
3198
-
3199
- .form-control:focus {
3200
- border-color: #1890ff;
3201
- }
3202
-
3203
- .intl-tel-input.allow-dropdown.w-100 .flag-container {
3204
- width: auto;
3205
- }
3206
-
3207
- .intl-tel-input.w-100.allow-dropdown.separate-dial-code input,
3208
- .intl-tel-input.w-100.allow-dropdown.separate-dial-code input[type=text],
3209
- .intl-tel-input.w-100.allow-dropdown.separate-dial-code input[type=tel] {
3210
- padding-left: 90px;
3211
- }
3212
-
3213
- .intl-tel-input.w-100 .selected-flag {
3214
- z-index: 1;
3215
- position: relative;
3216
- width: 94px;
3217
- outline: none;
3218
- height: 100%;
3219
- padding: 0 0px 0 12px;
3220
- border-right: 1px solid #dcdee2;
3221
- }
3222
-
3223
- .intl-tel-input.w-100 .selected-flag .iti-flag {
3224
- position: absolute;
3225
- top: 0;
3226
- bottom: 0;
3227
- margin: auto;
3228
- }
3229
-
3230
- .intl-tel-input.w-100 .selected-flag .arrow {
3231
- position: absolute;
3232
- top: 50%;
3233
- margin-top: -2px;
3234
- right: 4px;
3235
- width: 0;
3236
- height: 0;
3237
- border-left: 3px solid transparent;
3238
- border-right: 3px solid transparent;
3239
- border-top: 4px solid #b9bdc5;
3240
- }
3241
-
3242
- .intl-tel-input.w-100 .flag-container .arrow.down:after,
3243
- .intl-tel-input.w-100 .flag-container .arrow.up:after {
3244
- content: "";
3245
- }
3246
-
3247
- .intl-tel-input.w-100.allow-dropdown .flag-container:hover .selected-flag {
3248
- color: var(--mmt-primary-70);
3249
- }
3250
-
3251
- .intl-tel-input.w-100.allow-dropdown .flag-container:hover .selected-flag .arrow {
3252
- border-top-color: var(--mmt-primary-70);
3253
- }
3254
-
3255
- .form-control:disabled,
3256
- .form-control[readonly] {
3257
- background-color: #f7f7f7;
3258
- opacity: 1;
3259
- }
3260
-
3261
- .dropdown-toggle.btn:disabled {
3262
- background-color: #f7f7f7;
3263
- opacity: 1;
3264
- border-color: #ced4da;
3265
- }
3266
-
3267
- .input-with-comment {
3268
- border: 1px solid #ced4da;
3269
- padding: 10px;
3270
- }
3271
-
3272
- .inputGroup .input-with-comment,
3273
- .inputGroup .input-without-comment {
3274
- margin-top: 1.5em;
3275
- }
3276
-
3277
- .btn.button-with-icon {
3278
- padding: 5px 10px;
3279
- line-height: 1;
3280
- font-size: initial;
3281
- margin-right: 5px;
3282
- }
3283
-
3284
- .btn.button-with-icon i {
3285
- font-size: inherit;
3286
- line-height: inherit;
3287
- }
3288
-
3289
- .btn.button-with-icon .text {
3290
- margin-left: 10px;
3291
- }
3292
-
3293
- .ml-20 {
3294
- margin-left: 20px;
3295
- }
3296
-
3297
- .remove-button .half {
3298
- width: calc(50% - 40px);
3299
- }
3300
-
3301
- .dropdown-item,
3302
- .dropdown button {
3303
- white-space: pre-wrap;
3304
- }
3305
-
3306
- .has-children .half {
3307
- width: calc(33% - 6px);
3308
- }
3309
-
3310
- .remove-button.has-children .half {
3311
- width: calc(33% - 25px);
3312
- }
3313
-
3314
- .react-datepicker-popper {
3315
- z-index: 7 !important;
3316
- }
3317
-
3318
- .container {
3319
- position: relative;
3320
- margin: 0;
3321
- min-width: 100% !important;
3322
- padding: 0;
3323
- height: 100%;
3324
- }
3325
-
3326
- .ant-page-header {
3327
- padding: 8px 8px 8px var(--size) !important;
3328
- border-bottom: 1px solid rgba(0, 0, 0, 0.1);
3329
- }
3330
-
3331
- .ant-page-header .ant-page-header-heading {
3332
- justify-content: flex-start;
3333
- }
3334
-
3335
- .ant-page-header .ant-page-header-heading-extra {
3336
- display: flex;
3337
- margin-left: var(--size);
3338
- }
3339
-
3340
- .ant-page-header .ant-btn {
3341
- display: flex;
3342
- border-radius: 4px !important;
3343
- }
3344
-
3345
- .ant-page-header .ant-btn span[role=img] {
3346
- font-size: 18px;
3347
- }
3348
-
3349
- .ant-drawer-body .form {
3350
- padding: 0 !important;
3351
- overflow-y: hidden !important;
3352
- }
3353
-
3354
- .ant-drawer-body .form div.dynamic-form {
3355
- height: calc(100% - var(--size));
3356
- width: 100%;
3357
- position: relative;
3358
- }
3359
-
3360
- .ant-drawer-body .form div.dynamic-form form.main-form {
3361
- height: calc(100% - 60px);
3362
- width: 100%;
3363
- overflow-y: auto;
3364
- padding: var(--size-lg);
3365
- }
3366
-
3367
- .ant-drawer-body .form div.dynamic-form .form-botom {
3368
- position: absolute;
3369
- bottom: 0;
3370
- right: 0;
3371
- left: 0;
3372
- padding: var(--size-lg) var(--size) 10px;
3373
- background: #fff;
3374
- text-align: right;
3375
- border-top: 1px solid #e1e1e1;
3376
- display: flex;
3377
- justify-content: space-around;
3378
- }
3379
-
3380
- .ant-drawer-body .form div.dynamic-form .form-botom button {
3381
- width: 200px;
3382
- }
3383
-
3384
- .ant-select-item-option-content {
3385
- white-space: normal !important;
3386
- }
3387
-
3388
- .form .ant-col .ant-form-item-extra button {
3389
- padding-right: 0;
3390
- padding-top: 0;
3391
- height: 28px;
3392
- }
3393
-
3394
- body {
3395
- font-family: "SF UI Display" !important;
3396
- font-weight: normal;
3397
- font-variant: normal;
3398
- }
3399
-
3400
- * {
3401
- font-family: "SF UI Display" !important;
3402
- }
3403
-
3404
- .mb0 {
3405
- margin-bottom: 0 !important;
3406
- }
3407
-
3408
- .mt5 {
3409
- margin-top: 2em !important;
3410
- }
3411
-
3412
- .form-input-output {
3413
- height: 100%;
3414
- }
3415
-
3416
- .form-input-output .app-content {
3417
- height: calc(100% - 64px);
3418
- overflow-y: auto;
3419
- }
3420
-
3421
- .form-input-output.app-content {
3422
- height: 100%;
3423
- overflow-y: auto;
3424
- }
3425
-
3426
- .semibold.form-input-output,
3427
- .ant-drawer {
3428
- font-weight: normal;
3429
- }
3430
-
3431
- .semibold.form-input-output .ant-page-header-heading-title,
3432
- .ant-drawer .ant-page-header-heading-title {
3433
- font-family: "SF UI Display" !important;
3434
- font-weight: 600 !important;
3435
- font-size: var(--size-lg) !important;
3436
- line-height: 32px !important;
3437
- }
3438
-
3439
- .semibold.form-input-output .ant-drawer-title,
3440
- .ant-drawer .ant-drawer-title {
3441
- font-family: "SF UI Display" !important;
3442
- font-weight: 600 !important;
3443
- font-size: 22px !important;
3444
- line-height: 30px !important;
3445
- }
3446
-
3447
- .semibold.form-input-output .title-semibold-1,
3448
- .ant-drawer .title-semibold-1 {
3449
- font-family: "SF UI Display" !important;
3450
- font-weight: 600 !important;
3451
- font-size: 30px !important;
3452
- line-height: 38px !important;
3453
- }
3454
-
3455
- .semibold.form-input-output .title-semibold-2,
3456
- .ant-drawer .title-semibold-2 {
3457
- font-family: "SF UI Display" !important;
3458
- font-weight: 600 !important;
3459
- font-size: var(--size-lg) !important;
3460
- line-height: 32px !important;
3461
- }
3462
-
3463
- .semibold.form-input-output .title-semibold-3,
3464
- .ant-drawer .title-semibold-3 {
3465
- font-family: "SF UI Display" !important;
3466
- font-weight: 600 !important;
3467
- font-size: var(--font-size-lg) !important;
3468
- line-height: 26px !important;
3469
- }
3470
-
3471
- .semibold.form-input-output .title-semibold-4,
3472
- .ant-drawer .title-semibold-4 {
3473
- font-family: "SF UI Display" !important;
3474
- font-weight: 600 !important;
3475
- font-size: var(--font-size-lg) !important;
3476
- line-height: var(--size-lg) !important;
3477
- }
3478
-
3479
- .semibold.form-input-output .title-semibold-5,
3480
- .ant-drawer .title-semibold-5 {
3481
- font-family: "SF UI Display" !important;
3482
- font-weight: 600 !important;
3483
- font-size: 14px !important;
3484
- line-height: 22px !important;
3485
- }
3486
-
3487
- .semibold.form-input-output .title-semibold-6,
3488
- .ant-drawer .title-semibold-6 {
3489
- font-family: "SF UI Display" !important;
3490
- font-weight: 600 !important;
3491
- font-size: 12px !important;
3492
- line-height: 20px !important;
3493
- }
3494
-
3495
- .ant-table-cell span.ant-tag.ant-tag-has-color,
3496
- .ant-table-cell span.ant-tag.ant-tag-warning,
3497
- .ant-table-cell span.ant-tag.ant-tag-success,
3498
- .ant-table-cell span.ant-tag.ant-tag-default,
3499
- .ant-table-cell span.ant-tag.ant-tag-blue {
3500
- display: flex;
3501
- width: 100%;
3502
- flex-flow: column;
3503
- text-align: center;
3504
- }
3505
-
3506
- .bb-none {
3507
- border-bottom: none !important;
3508
- }
3509
-
3510
- .bl-none {
3511
- border-left: none !important;
3512
- }
3513
-
3514
- .br-none {
3515
- border-right: none !important;
3516
- }
3517
-
3518
- .bt-none {
3519
- border-top: none !important;
3520
- }
3521
-
3522
- .b-none {
3523
- border: none !important;
3524
- }
3525
-
3526
- b,
3527
- strong {
3528
- color: #f7f7f7;
3529
- font-family: "SF UI Display";
3530
- font-weight: bold;
3531
- color: #001529;
3532
- font-style: normal;
3533
- }
3534
-
3535
- .ant-menu-inline-collapsed-tooltip img {
3536
- display: none;
3537
- }
3538
-
3539
- .notification-icon {
3540
- padding-right: 0 !important;
3541
- cursor: pointer;
3542
- margin-right: 25px;
3543
- display: flex;
3544
- flex-direction: column;
3545
- justify-content: center;
3546
- height: 65px;
3547
- position: relative;
3548
- }
3549
-
3550
- @media (max-width: 850px) {
3551
- .notification-icon {
3552
- margin-right: 1.5rem;
3553
- }
3554
- }
3555
-
3556
- .notification-icon svg {
3557
- font-size: 19px;
3558
- }
3559
-
3560
- .notification-icon .noti-more-cont {
3561
- position: absolute;
3562
- top: 50%;
3563
- right: 0;
3564
- transform: translate(65%, -90%);
3565
- display: flex;
3566
- flex-direction: column;
3567
- justify-content: center;
3568
- font-size: 12px;
3569
- background-color: var(--mmt-primary-70);
3570
- color: white;
3571
- border: 1px solid white;
3572
- height: 18px;
3573
- padding: 0px 4px;
3574
- border-radius: 12px;
3575
- }
3576
-
3577
- .notification-icon .noti-loader {
3578
- position: absolute;
3579
- width: 38px;
3580
- height: 38px;
3581
- top: var(--size);
3582
- right: -10px;
3583
- background: transparent;
3584
- border-radius: 100%;
3585
- border: 3px solid transparent;
3586
- /* Light grey */
3587
- border-top: 3px solid #3498db;
3588
- border-right: 3px solid #3498db;
3589
- border-radius: 50%;
3590
- animation: spin 1.5s linear infinite;
3591
- }
3592
-
3593
- @keyframes spin {
3594
- 0% {
3595
- transform: rotate(0deg);
3596
- }
3597
-
3598
- 100% {
3599
- transform: rotate(360deg);
3600
- }
3601
- }
3602
-
3603
- .ant-dropdown .ant-dropdown-menu-item,
3604
- .ant-dropdown .ant-dropdown-menu-submenu-title {
3605
- white-space: pre-wrap;
3606
- }
3607
-
3608
- .ant-dropdown-menu-dark,
3609
- .ant-dropdown-menu-dark .ant-dropdown-menu {
3610
- background-color: var(--base-gray-90) !important;
3611
- }
3612
-
3613
- .image-upload-preview {
3614
- width: 200px;
3615
- padding: var(--size);
3616
- background: white;
3617
- objectfit: contain;
3618
- border-radius: 3px;
3619
- border: 1px solid rgba(0, 0, 0, 0.08);
3620
- position: relative;
3621
- cursor: pointer;
3622
- }
3623
-
3624
- .image-upload-preview:not(:last-of-type) {
3625
- margin-right: 8px;
3626
- }
3627
-
3628
- .custom-modal .ant-modal-header {
3629
- padding-bottom: 0px;
3630
- }
3631
-
3632
- .w-mr {
3633
- margin-right: 12px;
3634
- }
3635
-
3636
- .filters-wrapper {
3637
- display: flex;
3638
- flex-direction: column;
3639
- }
3640
-
3641
- .filters-wrapper label:not(:first-of-type) {
3642
- margin-top: var(--size);
3643
- }
3644
-
3645
- .filters-wrapper .filters-actions {
3646
- width: 100%;
3647
- display: flex;
3648
- flex-direction: row;
3649
- justify-content: flex-end;
3650
- margin-top: var(--size-lg);
3651
- }
3652
-
3653
- .filters-wrapper .filters-actions button:not(:last-of-type) {
3654
- margin-right: 8px;
3655
- }
3656
-
3657
- .react-flow .react-flow__controls .react-flow__controls-button {
3658
- width: 25px;
3659
- height: 25px;
3660
- }
3661
-
3662
- .ant-layout {
3663
- min-height: 100dvh !important;
3664
- }
3665
-
3666
- .loader-container {
3667
- height: 3000px;
3668
- }
3669
-
3670
- .ant-layout-content {
3671
- min-height: calc(100dvh - 64px);
3672
- }
3673
-
3674
- .sidenav-sider {
3675
- background: var(--base-gray-90);
3676
- }
3677
-
3678
- .sidenav-sider.custom {
3679
- background: var(--custom-sidenav-color);
3680
- }
3681
-
3682
- .sidenav-sider.nested {
3683
- background: var(--nested-sidenav-color);
3684
- }
3685
-
3686
- .sidenav-sider.tazama {
3687
- background-color: var(--base-gray-10);
3688
- }
3689
-
3690
- .sidenav-sider.cukura {
3691
- background-color: var(--base-gray-90);
3692
- }
3693
-
3694
- @media (max-width: 850px) {
3695
- .sidenav-sider.desktop-sider {
3696
- display: none;
3697
- }
3698
- }
3699
-
3700
- .sidenav-sider .ant-menu.ant-menu-dark,
3701
- .sidenav-sider .ant-menu-dark .ant-menu-sub,
3702
- .sidenav-sider .ant-menu.ant-menu-dark .ant-menu-sub {
3703
- background: var(--base-gray-90);
3704
- }
3705
-
3706
- .sidenav-sider.custom .ant-menu.ant-menu-dark,
3707
- .sidenav-sider.custom .ant-menu-dark .ant-menu-sub,
3708
- .sidenav-sider.custom .ant-menu.ant-menu-dark .ant-menu-sub {
3709
- background: var(--custom-sidenav-color);
3710
- }
3711
-
3712
- .sidenav-sider.nested .ant-menu.ant-menu-dark,
3713
- .sidenav-sider.nested .ant-menu-dark .ant-menu-sub,
3714
- .sidenav-sider.nested .ant-menu.ant-menu-dark .ant-menu-sub {
3715
- background: var(--nested-sidenav-color);
3716
- }
3717
-
3718
- .sidenav-sider .ant-menu.ant-menu-dark .ant-menu-item:hover,
3719
- .sidenav-sider .ant-menu-dark .ant-menu-sub .ant-menu-item:hover,
3720
- .sidenav-sider .ant-menu.ant-menu-dark .ant-menu-sub .ant-menu-item:hover {
3721
- background-color: #2f3a47;
3722
- }
3723
-
3724
- .sidenav-sider.custom .ant-menu.ant-menu-dark .ant-menu-item:hover,
3725
- .sidenav-sider.custom .ant-menu-dark .ant-menu-sub .ant-menu-item:hover,
3726
- .sidenav-sider.custom .ant-menu.ant-menu-dark .ant-menu-sub .ant-menu-item:hover {
3727
- background-color: var(--custom-sidenav-hover-color);
3728
- }
3729
-
3730
- .sidenav-sider.nested .ant-menu.ant-menu-dark .ant-menu-item:hover,
3731
- .sidenav-sider.nested .ant-menu-dark .ant-menu-sub .ant-menu-item:hover,
3732
- .sidenav-sider.nested .ant-menu.ant-menu-dark .ant-menu-sub .ant-menu-item:hover {
3733
- background-color: var(--nested-sidenav-hover-color);
3734
- }
3735
-
3736
- .sidenav-sider.tazama .ant-menu.ant-menu-dark,
3737
- .sidenav-sider.tazama .ant-menu-dark .ant-menu-sub,
3738
- .sidenav-sider.tazama .ant-menu.ant-menu-dark .ant-menu-sub {
3739
- background-color: var(--base-gray-10);
3740
- }
3741
-
3742
- .sidenav-sider.cukura .ant-menu.ant-menu-dark,
3743
- .sidenav-sider.cukura .ant-menu-dark .ant-menu-sub,
3744
- .sidenav-sider.cukura .ant-menu.ant-menu-dark .ant-menu-sub {
3745
- background-color: var(--base-gray-90);
3746
- }
3747
-
3748
- .sidenav-sider.tazama .ant-menu.ant-menu-dark span,
3749
- .sidenav-sider.tazama .ant-menu-dark .ant-menu-sub span,
3750
- .sidenav-sider.tazama .ant-menu.ant-menu-dark .ant-menu-sub span {
3751
- color: var(--base-gray-90);
3752
- }
3753
-
3754
- .sidenav-sider.cukura .ant-menu.ant-menu-dark span,
3755
- .sidenav-sider.cukura .ant-menu-dark .ant-menu-sub span,
3756
- .sidenav-sider.cukura .ant-menu.ant-menu-dark .ant-menu-sub span {
3757
- color: var(--base-gray-70);
3758
- }
3759
-
3760
- .sidenav-sider.tazama .ant-menu.ant-menu-dark svg,
3761
- .sidenav-sider.tazama .ant-menu.ant-menu-dark i,
3762
- .sidenav-sider.tazama .ant-menu-dark .ant-menu-sub svg,
3763
- .sidenav-sider.tazama .ant-menu-dark .ant-menu-sub i,
3764
- .sidenav-sider.tazama .ant-menu.ant-menu-dark .ant-menu-sub svg,
3765
- .sidenav-sider.tazama .ant-menu.ant-menu-dark .ant-menu-sub i {
3766
- color: var(--base-gray-70) !important;
3767
- }
3768
-
3769
- .sidenav-sider.cukura .ant-menu.ant-menu-dark svg,
3770
- .sidenav-sider.cukura .ant-menu.ant-menu-dark i,
3771
- .sidenav-sider.cukura .ant-menu-dark .ant-menu-sub svg,
3772
- .sidenav-sider.cukura .ant-menu-dark .ant-menu-sub i,
3773
- .sidenav-sider.cukura .ant-menu.ant-menu-dark .ant-menu-sub svg,
3774
- .sidenav-sider.cukura .ant-menu.ant-menu-dark .ant-menu-sub i {
3775
- color: var(--base-gray-70) !important;
3776
- }
3777
-
3778
- .sidenav-sider.tazama .ant-menu.ant-menu-dark .ant-menu-item:hover,
3779
- .sidenav-sider.tazama .ant-menu-dark .ant-menu-sub .ant-menu-item:hover,
3780
- .sidenav-sider.tazama .ant-menu.ant-menu-dark .ant-menu-sub .ant-menu-item:hover {
3781
- background-color: var(--base-gray-10);
3782
- }
3783
-
3784
- .sidenav-sider.cukura .ant-menu.ant-menu-dark .ant-menu-item:hover,
3785
- .sidenav-sider.cukura .ant-menu-dark .ant-menu-sub .ant-menu-item:hover,
3786
- .sidenav-sider.cukura .ant-menu.ant-menu-dark .ant-menu-sub .ant-menu-item:hover {
3787
- /* background-color: var(--base-gray-90); */
3788
- background-color: red
3789
- }
3790
-
3791
- .sidenav-sider .ant-menu-sub .ant-menu-item:hover {
3792
- background-color: #1f2a37 !important;
3793
- }
3794
-
3795
- .sidenav-sider.nested .ant-menu-sub .ant-menu-item:hover {
3796
- background-color: var(--nested-sidenav-hover-color) !important;
3797
- }
3798
-
3799
- .sidenav-sider.nested .ant-menu-sub .selected-it:hover {
3800
- background-color: var(--color-primary-70) !important;
3801
- }
3802
-
3803
- .sidenav-sider.custom .ant-menu-sub .ant-menu-item:hover {
3804
- background-color: var(--custom-sidenav-subsection-hover) !important;
3805
- }
3806
-
3807
- .sidenav-sider .ant-menu-sub .selected-it:hover {
3808
- background-color: var(--color-primary-70) !important;
3809
- }
3810
-
3811
- .sidenav-sider .ant-menu-sub .ant-menu-title-content {
3812
- line-height: 20px;
3813
- }
3814
-
3815
- .sidenav-sider.tazama .ant-menu-item:hover {
3816
- background-color: var(--base-gray-20) !important;
3817
- }
3818
-
3819
- .sidenav-sider.cukura .ant-menu-item:hover {
3820
- background-color: var(--base-gray-20) !important;
3821
- }
3822
-
3823
- .sidenav-sider .ant-menu-dark.ant-menu-dark:not(.ant-menu-horizontal) .ant-menu-item-selected {
3824
- border-radius: 0px;
3825
- background-color: var(--color-primary-70) !important;
3826
- }
3827
-
3828
- .sidenav-sider .ant-menu-dark.ant-menu-dark:not(.ant-menu-horizontal) .ant-menu-item-selected span,
3829
- .sidenav-sider .ant-menu-dark.ant-menu-dark:not(.ant-menu-horizontal) .ant-menu-item-selected svg,
3830
- .sidenav-sider .ant-menu-dark.ant-menu-dark:not(.ant-menu-horizontal) .ant-menu-item-selected i {
3831
- color: white !important;
3832
- }
3833
-
3834
- .sidenav-sider.sidenav-sider-collapsed .sidemenu-cont .ant-menu-submenu:hover {
3835
- background-color: #243a47;
3836
- }
3837
-
3838
-
3839
- .sidenav-sider.sidenav-sider-collapsed.custom .sidemenu-cont .ant-menu-submenu:hover {
3840
- background-color: var(--custom-collapsed-sidenav-hover-color);
3841
- }
3842
-
3843
- .sidenav-sider.sidenav-sider-collapsed.nested .sidemenu-cont .ant-menu-submenu:hover {
3844
- background-color: var(--nested-collapsed-sidenav-hover-color);
3845
- }
3846
-
3847
- .sidenav-sider.sidenav-sider-collapsed .sidemenu-cont svg {
3848
- width: 17px !important;
3849
- height: 17px !important;
3850
- }
3851
-
3852
- .sidenav-sider.sidenav-sider-collapsed.tazama .sidemenu-cont .ant-menu-submenu:hover {
3853
- background-color: var(--base-gray-20);
3854
- }
3855
-
3856
- .sidenav-sider.sidenav-sider-collapsed.cukura .sidemenu-cont .ant-menu-submenu:hover {
3857
- background-color: var(--base-gray-20);
3858
- }
3859
-
3860
- .sidenav-sider.sidenav-sider-collapsed .selected .ant-menu-submenu-title,
3861
- .sidenav-sider.sidenav-sider-collapsed .ant-menu-submenu-selected .ant-menu-submenu-title {
3862
- background-color: var(--color-primary-70) !important;
3863
- color: white;
3864
- border-radius: 0px;
3865
- }
3866
-
3867
- .sidenav-sider.nested.sidenav-sider-collapsed .selected .ant-menu-submenu-title svg,
3868
- .sidenav-sider.nested.sidenav-sider-collapsed .ant-menu-submenu-selected .ant-menu-submenu-title svg {
3869
- color: white !important;
3870
- }
3871
-
3872
- .sidenav-sider.sidenav-sider-collapsed .selected .ant-menu-submenu-title:hover,
3873
- .sidenav-sider.sidenav-sider-collapsed .ant-menu-submenu-selected .ant-menu-submenu-title:hover {
3874
- background-color: var(--color-primary-70) !important;
3875
- }
3876
-
3877
- .sidenav-sider.tazama.sidenav-sider-collapsed .selected .ant-menu-submenu-title svg,
3878
- .sidenav-sider.tazama.sidenav-sider-collapsed .ant-menu-submenu-selected .ant-menu-submenu-title svg {
3879
- color: white !important;
3880
- }
3881
-
3882
- .sidenav-sider.cukura.sidenav-sider-collapsed .selected .ant-menu-submenu-title svg,
3883
- .sidenav-sider.cukura.sidenav-sider-collapsed .ant-menu-submenu-selected .ant-menu-submenu-title svg {
3884
- color: white !important;
3885
- }
3886
-
3887
- .sidenav-sider .ant-menu-sub {
3888
- background-color: var(--base-gray-100) !important;
3889
- }
3890
-
3891
- .sidenav-sider.tazama .ant-menu-sub {
3892
- background-color: var(--color-primary-70) !important;
3893
- }
3894
-
3895
- .sidenav-sider.cukura .ant-menu-sub {
3896
- background-color: var(--color-primary-80) !important;
3897
- }
3898
-
3899
- .sidenav-sider .ant-menu-item-only-child {
3900
- padding-left: var(--size-lg) !important;
3901
- }
3902
-
3903
- .sidenav-sider .ant-menu-item-only-child:hover {
3904
- background-color: var(--base-gray-100);
3905
- }
3906
-
3907
- .sidenav-sider.tazama .ant-menu-item-only-child:hover {
3908
- background-color: var(--color-primary-70);
3909
- }
3910
-
3911
- .sidenav-sider.cukura .ant-menu-item-only-child:hover {
3912
- background-color: var(--color-primary-70);
3913
- }
3914
-
3915
- .sidenav-sider.tazama .ant-menu-sub {
3916
- background-color: var(--base-gray-20) !important;
3917
- }
3918
-
3919
- .sidenav-sider.cukura .ant-menu-sub {
3920
- background-color: var(--base-gray-110) !important;
3921
- }
3922
-
3923
- .sidenav-sider.tazama .ant-menu-item-only-child:hover {
3924
- background-color: var(--base-gray-20);
3925
- }
3926
-
3927
- .sidenav-sider.cukura .ant-menu-item-only-child:hover {
3928
- background-color: var(--base-gray-90);
3929
- }
3930
-
3931
- .sidenav-sider .sidenav-hover-content .ant-menu-item-only-child {
3932
- padding-left: 2px !important;
3933
- }
3934
-
3935
- .sidenav-sider .second-level-sub-menu .ant-menu-submenu-title {
3936
- padding-left: var(--size-lg) !important;
3937
- }
3938
-
3939
- .sidenav-sider .second-level-sub-menu .ant-menu-sub {
3940
- background-color: #1f2a37 !important;
3941
- }
3942
-
3943
- .sidenav-sider .second-level-sub-menu .ant-menu-item-only-child {
3944
- padding-left: var(--size-lg) !important;
3945
- }
3946
-
3947
- .sidenav-sider .second-level-sub-menu .ant-menu-item-only-child:hover {
3948
- background-color: #1f2a37;
3949
- }
3950
-
3951
- .sidenav-sider .second-level-sub-menu .selected {
3952
- background-color: var(--mmt-primary-70) !important;
3953
- color: white;
3954
- }
3955
-
3956
- .sidenav-sider .second-level-sub-menu .selected:hover {
3957
- background-color: var(--mmt-primary-70) !important;
3958
- }
3959
-
3960
- .sidenav-sider .selected-it {
3961
- background-color: var(--color-primary-70) !important;
3962
- color: white;
3963
- }
3964
-
3965
- .sidenav-sider .selected-it:hover {
3966
- background-color: var(--color-primary-70) !important;
3967
- }
3968
-
3969
- .sidenav-sider.tazama .second-level-sub-menu .ant-menu-sub {
3970
- background-color: var(--color-primary-70) !important;
3971
- }
3972
-
3973
- .sidenav-sider.cukura .second-level-sub-menu .ant-menu-sub {
3974
- background-color: var(--color-primary-70) !important;
3975
- }
3976
-
3977
- .sidenav-sider.tazama .second-level-sub-menu .ant-menu-item-only-child:hover {
3978
- background-color: var(--color-primary-70);
3979
- }
3980
-
3981
- .sidenav-sider.cukura .second-level-sub-menu .ant-menu-item-only-child:hover {
3982
- background-color: var(--color-primary-70);
3983
- }
3984
-
3985
- .sidenav-sider.tazama .second-level-sub-menu .selected {
3986
- opacity: 0;
3987
- background-color: var(--color-primary-70) !important;
3988
- color: white;
3989
- }
3990
-
3991
- .sidenav-sider.cukura .second-level-sub-menu .selected {
3992
- opacity: 0;
3993
- background-color: var(--color-primary-70) !important;
3994
- color: white;
3995
- }
3996
-
3997
- .sidenav-sider.tazama .second-level-sub-menu .selected:hover {
3998
- background-color: var(--color-primary-70) !important;
3999
- }
4000
-
4001
- .sidenav-sider.cukura .second-level-sub-menu .selected:hover {
4002
- background-color: var(--color-primary-70) !important;
4003
- }
4004
-
4005
- .sidenav-sider.tazama .selected-it {
4006
- background-color: var(--color-primary-70) !important;
4007
- }
4008
-
4009
- .sidenav-sider.cukura .selected-it {
4010
- background-color: var(--color-primary-70) !important;
4011
- }
4012
-
4013
- .sidenav-sider.tazama .selected-it span {
4014
- color: white !important;
4015
- }
4016
-
4017
- .sidenav-sider.cukura .selected-it span {
4018
- color: white !important;
4019
- }
4020
-
4021
- .sidenav-sider.tazama .selected-it:hover {
4022
- background-color: var(--color-primary-70) !important;
4023
- }
4024
-
4025
- .sidenav-sider.cukura .selected-it:hover {
4026
- background-color: var(--color-primary-70) !important;
4027
- }
4028
-
4029
- .sidenav-sider svg {
4030
- margin-right: 8px;
4031
- }
4032
-
4033
- .sidenav-sider .selected-label {
4034
- color: white !important;
4035
- }
4036
-
4037
- .sidenav-sider.sidenav-sider-collapsed .ant-menu-submenu-arrow {
4038
- display: none;
4039
- }
4040
-
4041
- .sidenav-sider.sidenav-sider-collapsed .ant-menu.ant-menu-sub.ant-menu-inline {
4042
- display: none;
4043
- }
4044
-
4045
- .sidenav-hover-content {
4046
- position: absolute;
4047
- left: 70px;
4048
- z-index: 9999;
4049
- background: var(--base-gray-90);
4050
- color: white;
4051
- padding: 0px var(--size);
4052
- height: auto;
4053
- min-width: 200px;
4054
- width: fit-content;
4055
- display: flex;
4056
- flex-direction: column;
4057
- border: 1px solid #4d5761;
4058
- border-radius: 4px;
4059
- }
4060
-
4061
- .sidenav-sider.custom .sidenav-hover-content {
4062
- background-color: var(--custom-sidenav-color);
4063
- border: none
4064
- }
4065
-
4066
- .sidenav-sider.nested .sidenav-hover-content {
4067
- background-color: white;
4068
- color: #384250;
4069
- border: none;
4070
- border: 0.5px solid #E5E7EB;
4071
- }
4072
-
4073
- .sidenav-hover-content.tazama {
4074
- background-color: var(--color-primary-70);
4075
- border-color: var(--color-primary-70);
4076
- }
4077
-
4078
- .sidenav-hover-content.cukura {
4079
- color: var(--base-gray-70);
4080
- border: none
4081
- }
4082
-
4083
- .sidenav-hover-content .sub-icon .anticon {
4084
- margin-top: 0px !important;
4085
- }
4086
-
4087
- .sidenav-hover-content .sub-icon .anticon svg {
4088
- width: 8px;
4089
- margin-top: 0px !important;
4090
- margin-right: 0px;
4091
- }
4092
-
4093
- .sidenav-hover-content header {
4094
- display: flex;
4095
- padding-top: 10px;
4096
- justify-content: flex-start;
4097
- align-items: center;
4098
- margin-bottom: 4px;
4099
- padding-bottom: 10px;
4100
- border-bottom: 1px solid rgba(255, 255, 255, 0.3);
4101
- }
4102
-
4103
- .sidenav-sider.nested .sidenav-hover-content header {
4104
- display: flex;
4105
- padding-top: 10px;
4106
- justify-content: flex-start;
4107
- align-items: center;
4108
- margin-bottom: 4px;
4109
- padding-bottom: 10px;
4110
- width: 100%;
4111
- position: relative;
4112
- box-sizing: border-box;
4113
- }
4114
-
4115
- .sidenav-sider.nested .sidenav-hover-content header::after {
4116
- content: '';
4117
- position: absolute;
4118
- bottom: 0;
4119
- left: 0;
4120
- right: -57px;
4121
- height: 1px;
4122
- background-color: #E5E7EB;
4123
- }
4124
-
4125
- .sidenav-hover-content header span {
4126
- font-size: 14px;
4127
- }
4128
-
4129
- .sidenav-hover-content header span[role=img] {
4130
- margin-right: 12px;
4131
- }
4132
-
4133
- .sidenav-hover-content .with-subitems .ant-menu-title-content {
4134
- display: flex;
4135
- width: 100%;
4136
- }
4137
-
4138
- .sidenav-sider.custom .ant-menu-dark .ant-menu-item-disabled {
4139
- color: var(--custom-sidenav-disabled-menu-item-color) !important;
4140
- }
4141
-
4142
- .sidenav-sider.nested .ant-menu-dark .ant-menu-item-disabled {
4143
- color: var(--nested-sidenav-disabled-menu-item-color) !important;
4144
- }
4145
-
4146
- .sidenav-hover-content .ant-menu {
4147
- background: transparent;
4148
- color: rgba(255, 255, 255, 0.7);
4149
- border: none;
4150
- padding: 0;
4151
- margin: 0;
4152
- border: 0px;
4153
- }
4154
-
4155
- .sidenav-hover-content .ant-menu .ant-menu-item {
4156
- padding: 0 2px;
4157
- margin: 0;
4158
- margin-bottom: 0 !important;
4159
- display: flex;
4160
- color: white;
4161
- background-color: transparent;
4162
- }
4163
-
4164
- .sidenav-sider.nested .sidenav-hover-content .ant-menu .ant-menu-item {
4165
- padding: 0 2px;
4166
- margin: 0;
4167
- margin-bottom: 0 !important;
4168
- display: flex;
4169
- color: #384250;
4170
- background-color: transparent;
4171
- }
4172
-
4173
- .sidenav-hover-content .ant-menu .ant-menu-item span[role=img],
4174
- .sidenav-hover-content .ant-menu .ant-menu-item svg {
4175
- margin-top: 12px;
4176
- font-size: var(--font-size-lg);
4177
- }
4178
-
4179
- .sidenav-hover-content .ant-menu .ant-menu-item:hover {
4180
- color: white !important;
4181
- background-color: transparent !important;
4182
- }
4183
-
4184
- .sidenav-sider.nested .sidenav-hover-content .ant-menu .ant-menu-item:hover {
4185
- color: #384250 !important;
4186
- background-color: transparent !important;
4187
- }
4188
-
4189
- .sidenav-hover-content .ant-menu .ant-menu-item.ant-menu-item-disabled {
4190
- color: white !important;
4191
- opacity: 0.5;
4192
- }
4193
-
4194
- .sidenav-hover-content .ant-menu .ant-menu-item.ant-menu-item-selected {
4195
- background-color: transparent;
4196
- color: white;
4197
- }
4198
-
4199
- html {
4200
- background-color: white;
4201
- }
4202
-
4203
- @media (max-width: 960px) {
4204
- html {
4205
- font-size: 12.5px;
4206
- }
4207
- }
4208
-
4209
- @media (max-width: 780px) {
4210
- html {
4211
- font-size: 12.5px;
4212
- }
4213
- }
4214
-
4215
- @media (max-width: 423px) {
4216
- html {
4217
- font-size: 11px;
4218
- }
4219
- }
4220
-
4221
- @media (max-width: 380px) {
4222
- html {
4223
- font-size: 10.5px;
4224
- }
4225
- }
4226
-
4227
- @media (max-width: 360px) {
4228
- html {
4229
- font-size: 10px;
4230
- }
4231
- }
4232
-
4233
- @media (max-width: 340px) {
4234
- html {
4235
- font-size: 9.5px;
4236
- }
4237
- }
4238
-
4239
- .ellipsis-text {
4240
- overflow: hidden;
4241
- white-space: nowrap;
4242
- text-overflow: ellipsis;
4243
- margin-bottom: 0px;
4244
- }
4245
-
4246
- .custom-select {
4247
- border: 0px;
4248
- }
4249
-
4250
- .custom-select .ant-select-selector {
4251
- border-radius: 4px !important;
4252
- box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05) !important;
4253
- border-color: #d0d5dd !important;
4254
- color: #595959 !important;
4255
- }
4256
-
4257
- .custom-select.ant-select-sm {
4258
- height: 25px;
4259
- }
4260
-
4261
- .custom-select .ant-select-arrow {
4262
- top: 47%;
4263
- }
4264
-
4265
- .custom-select.white .ant-select-selector {
4266
- background-color: white !important;
4267
- }
4268
-
4269
- .flex-1 {
4270
- flex: 1;
4271
- }
4272
-
4273
- .max-w-100 {
4274
- max-width: 100%;
4275
- }
4276
-
4277
- .dark-select {
4278
- background: #1f2a37;
4279
- border-radius: 6px;
4280
- }
4281
-
4282
- .dark-select .ant-select-arrow {
4283
- color: white;
4284
- }
4285
-
4286
- .dark-select .ant-select-item-group {
4287
- color: #9da4ae;
4288
- }
4289
-
4290
- .dark-select .ant-select-dropdown {
4291
- background-color: var(--base-gray-100);
4292
- color: white;
4293
- padding-bottom: 12px;
4294
- }
4295
-
4296
- .dark-select .ant-select-dropdown .rc-virtual-list-holder-inner {
4297
- gap: 4px;
4298
- }
4299
-
4300
- .dark-select .ant-select-dropdown .ant-select-item-option {
4301
- padding: 5px 12px;
4302
- margin: 0px 12px;
4303
- border-radius: 6px;
4304
- }
4305
-
4306
- .dark-select .ant-select-dropdown .ant-select-item-option .ant-typography,
4307
- .dark-select .ant-select-dropdown .ant-select-item-option .ant-select-item-option-content {
4308
- color: white;
4309
- font-weight: 500;
4310
- }
4311
-
4312
- .dark-select .ant-select-dropdown .ant-select-item-option:hover {
4313
- background-color: #1f2a37 !important;
4314
- }
4315
-
4316
- .dark-select .ant-select-dropdown .ant-select-item-option.ant-select-item-option-active {
4317
- background-color: #1f2a37 !important;
4318
- }
4319
-
4320
- .dark-select .ant-select-dropdown .ant-select-item {
4321
- color: white;
4322
- }
4323
-
4324
- .dark-select .ant-select-dropdown .ant-select-item-option-selected:not(.ant-select-item-option-disabled) {
4325
- background-color: #1f2a37;
4326
- }
4327
-
4328
- .dark-select-popup {
4329
- background-color: var(--base-gray-100);
4330
- color: white;
4331
- padding-bottom: 12px;
4332
- }
4333
-
4334
- .dark-select-popup.custom {
4335
- background-color: var(--custom-header-color);
4336
- color: white;
4337
- padding-bottom: 12px;
4338
- }
4339
-
4340
- .dark-select-popup.tazama {
4341
- background-color: var(--base-gray-10);
4342
- }
4343
-
4344
- /* .dark-select-popup.cukura {
4345
- background-color: var(--base-gray-20);
4346
- } */
4347
- .dark-select-popup .ant-select-item-group {
4348
- color: #9da4ae !important;
4349
- }
4350
-
4351
- .dark-select-popup .rc-virtual-list-holder-inner {
4352
- gap: 4px;
4353
- }
4354
-
4355
- .dark-select-popup .ant-select-item-option {
4356
- padding: 5px 12px;
4357
- margin: 0px 6px;
4358
- border-radius: 6px;
4359
- }
4360
-
4361
- .dark-select-popup .ant-select-item-option .ant-typography,
4362
- .dark-select-popup .ant-select-item-option .ant-select-item-option-content {
4363
- color: white;
4364
- font-weight: 500;
4365
- }
4366
-
4367
- .dark-select-popup .ant-select-item-option:hover {
4368
- background-color: #1f2a37 !important;
4369
- }
4370
-
4371
- .dark-select-popup .ant-select-item-option.ant-select-item-option-active {
4372
- background-color: #1f2a37 !important;
4373
- }
4374
-
4375
- .dark-select-popup.custom .ant-select-item-option.ant-select-item-option-active {
4376
- background-color: var(--custom-sidenav-hover-color) !important;
4377
- }
4378
-
4379
- .dark-select-popup.tazama .ant-select-item-option .ant-typography,
4380
- .dark-select-popup.tazama .ant-select-item-option .ant-select-item-option-content {
4381
- color: var(--base-gray-90);
4382
- }
4383
-
4384
- /* .dark-select-popup.cukura .ant-select-item-option .ant-typography,
4385
- .dark-select-popup.cukura .ant-select-item-option .ant-select-item-option-content {
4386
- color: var(--base-gray-90);
4387
- } */
4388
- .dark-select-popup.tazama .ant-select-item-option:hover {
4389
- background-color: var(--base-gray-20) !important;
4390
- }
4391
-
4392
- /* .dark-select-popup.cukura .ant-select-item-option:hover {
4393
- background-color: var(--base-gray-20) !important;
4394
- } */
4395
- .dark-select-popup.tazama .ant-select-item-option.ant-select-item-option-active {
4396
- background-color: var(--base-gray-20) !important;
4397
- }
4398
-
4399
- .dark-select-popup.cukura .ant-select-item-option.ant-select-item-option-active {
4400
- background-color: var(--color-primary-70) !important;
4401
- }
4402
-
4403
- .dark-select-popup .ant-select-item {
4404
- color: white;
4405
- }
4406
-
4407
- .dark-select-popup .ant-select-item-option-selected:not(.ant-select-item-option-disabled) {
4408
- background-color: #1f2a37;
4409
- }
4410
-
4411
- .dark-select-popup.tazama .ant-select-item {
4412
- color: var(--base-gray-90);
4413
- }
4414
-
4415
- /* .dark-select-popup.cukura .ant-select-item {
4416
- color: var(--base-gray-90);
4417
- } */
4418
- .dark-select-popup.tazama .ant-select-item-option-selected:not(.ant-select-item-option-disabled) {
4419
- background-color: var(--base-gray-10);
4420
- }
4421
-
4422
- .dark-select-popup.cukura .ant-select-item-option-selected:not(.ant-select-item-option-disabled) {
4423
- background-color: var(--base-gray-90);
4424
- }
4425
-
4426
- .text-center {
4427
- text-align: center;
4428
- }
4429
-
4430
- .ant-notification-bottomLeft {
4431
- max-height: 250px;
4432
- }
4433
-
4434
- .leaflet-control-attribution.leaflet-control {
4435
- display: none;
4436
- }
4437
-
4438
- @media (max-width: 850px) {
4439
- .userback-button {
4440
- display: none !important;
4441
- }
4442
- }
4443
-
4444
- /*# sourceMappingURL=index.css.map */
4445
-
4446
- /* steps component */
4447
- .ant-steps-item-finish .ant-steps-item-icon {
4448
- background-color: var(--color-primary-10) !important;
4449
- border-color: var(--color-primary-10) !important;
4450
- }
4451
-
4452
- .ant-menu-light .ant-menu-item-selected:hover {
4453
- background-color: var(--color-primary-20) !important; /* pick a stronger shade */
4454
- }
1
+ @import './datastake/_index.css';