icleafreportui 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (77) hide show
  1. package/.env +7 -0
  2. package/README.md +70 -0
  3. package/package.json +55 -0
  4. package/public/favicon.ico +0 -0
  5. package/public/images/EResourcesImg.png +0 -0
  6. package/public/images/courseCardImg.png +0 -0
  7. package/public/images/courseInfo.png +0 -0
  8. package/public/images/exam-options.png +0 -0
  9. package/public/images/icleaf-11.png +0 -0
  10. package/public/images/icleaf_logo.png +0 -0
  11. package/public/images/template.png +0 -0
  12. package/public/images/unnamed.png +0 -0
  13. package/public/images/user.jpg +0 -0
  14. package/public/images/young-man-studying-library-using-laptop-1.png +0 -0
  15. package/public/index.html +45 -0
  16. package/public/logo192.png +0 -0
  17. package/public/logo512.png +0 -0
  18. package/public/manifest.json +25 -0
  19. package/public/robots.txt +3 -0
  20. package/src/App.css +24 -0
  21. package/src/App.js +37 -0
  22. package/src/Login.js +159 -0
  23. package/src/Reports/CourseReport.js +209 -0
  24. package/src/Reports/ExamPackReport.js +554 -0
  25. package/src/Reports/ExamReport.js +269 -0
  26. package/src/Reports/Report.js +271 -0
  27. package/src/api/client.jsx +42 -0
  28. package/src/components/Header.css +301 -0
  29. package/src/components/Header.jsx +192 -0
  30. package/src/components/Loader.jsx +23 -0
  31. package/src/components/imagePathUrl.jsx +11 -0
  32. package/src/components/sidebar.css +947 -0
  33. package/src/components/sidebar.jsx +81 -0
  34. package/src/context/TenantProvider.jsx +22 -0
  35. package/src/fonts/210000.jpg +0 -0
  36. package/src/fonts/210001.jpg +0 -0
  37. package/src/fonts/210003.jpg +0 -0
  38. package/src/fonts/210004.jpg +0 -0
  39. package/src/fonts/210006.jpg +0 -0
  40. package/src/fonts/210018.jpg +0 -0
  41. package/src/fonts/210019.jpg +0 -0
  42. package/src/fonts/210020.jpg +0 -0
  43. package/src/fonts/210279.jpg +0 -0
  44. package/src/fonts/210280.jpg +0 -0
  45. package/src/fonts/Gilroy-Black.ttf +0 -0
  46. package/src/fonts/Gilroy-BlackItalic.ttf +0 -0
  47. package/src/fonts/Gilroy-Bold.ttf +0 -0
  48. package/src/fonts/Gilroy-BoldItalic.ttf +0 -0
  49. package/src/fonts/Gilroy-ExtraBold.ttf +0 -0
  50. package/src/fonts/Gilroy-ExtraBoldItalic.ttf +0 -0
  51. package/src/fonts/Gilroy-Heavy.ttf +0 -0
  52. package/src/fonts/Gilroy-HeavyItalic.ttf +0 -0
  53. package/src/fonts/Gilroy-Light.ttf +0 -0
  54. package/src/fonts/Gilroy-LightItalic.ttf +0 -0
  55. package/src/fonts/Gilroy-Medium.ttf +0 -0
  56. package/src/fonts/Gilroy-MediumItalic.ttf +0 -0
  57. package/src/fonts/Gilroy-Regular.ttf +0 -0
  58. package/src/fonts/Gilroy-RegularItalic.ttf +0 -0
  59. package/src/fonts/Gilroy-SemiBold.ttf +0 -0
  60. package/src/fonts/Gilroy-SemiBoldItalic.ttf +0 -0
  61. package/src/fonts/Gilroy-Thin.ttf +0 -0
  62. package/src/fonts/Gilroy-ThinItalic.ttf +0 -0
  63. package/src/fonts/Gilroy-UltraLight.ttf +0 -0
  64. package/src/fonts/Gilroy-UltraLightItalic.ttf +0 -0
  65. package/src/fonts/Help - Guide Document.pdf +0 -0
  66. package/src/fonts/License.txt +144 -0
  67. package/src/fonts/More Free Fonts on fontshmonts.com.url +2 -0
  68. package/src/fonts/cover.jpg +0 -0
  69. package/src/index.css +13 -0
  70. package/src/index.js +21 -0
  71. package/src/login.css +809 -0
  72. package/src/logo.svg +1 -0
  73. package/src/package.js +10 -0
  74. package/src/reportWebVitals.js +13 -0
  75. package/src/setupTests.js +5 -0
  76. package/src/styles.css +2026 -0
  77. package/src/theme.css +107 -0
@@ -0,0 +1,947 @@
1
+ /*-----------------
2
+ Sidebar
3
+ -----------------------*/
4
+
5
+ .sidebar {
6
+ background-color: #fff;
7
+ border-right: 1px solid #ddd;
8
+ bottom: 0;
9
+ left: 0;
10
+ margin-top: 0;
11
+ position: fixed;
12
+ top: 0px;
13
+ /* transition: all 0.2s ease-in-out 0s; */
14
+ width: 260px;
15
+ z-index: 1001;
16
+ display: block;
17
+ overflow-y: auto;
18
+ }
19
+
20
+
21
+ .sidebar.opened {
22
+ -webkit-transition: all 0.4s ease;
23
+ -moz-transition: all 0.4s ease;
24
+ transition: all 0.4s ease;
25
+ }
26
+
27
+ .sidebar-inner {
28
+ height: auto;
29
+ transition: all 0.2s ease-in-out 0s;
30
+ }
31
+
32
+ .sidebar-menu {
33
+ padding: 0;
34
+ max-height: calc(100vh);
35
+ /* overflow-y: auto; */
36
+ height: 100%;
37
+ }
38
+
39
+ .sidebar-menu ul {
40
+ font-size: 15px;
41
+ list-style-type: none;
42
+ margin: 4px 2px;
43
+ padding: 0;
44
+ position: relative;
45
+ display: flex;
46
+ flex-direction: column;
47
+ /* row-gap: 5px; */
48
+ }
49
+
50
+ .sidebar-menu li a {
51
+ color: #333;
52
+ display: block;
53
+ font-size: 14px;
54
+ height: auto;
55
+ padding: 0 10px;
56
+ text-decoration: none;
57
+ line-height: 20px;
58
+ border-radius: 8px;
59
+ font-weight: 300;
60
+ }
61
+
62
+ .sidebar-menu li a:hover {
63
+ color: var(--primary-color);
64
+ background-color: var(--sidebar_mnu_bg);
65
+ cursor: pointer;
66
+ }
67
+
68
+ .sidebar-menu li a:hover .icon_background {
69
+ background-color: transparent;
70
+ box-shadow: none;
71
+ }
72
+
73
+
74
+ .sidebar-menu li.active a {
75
+ color: var(--primary-color);
76
+ background-color: var(--sidebar_side_mnu_bg);
77
+ }
78
+
79
+ .sidebar-menu li.active .icon_background {
80
+ background-color: transparent;
81
+ box-shadow: none;
82
+ }
83
+
84
+
85
+ .menu-title {
86
+ color: #9e9e9e;
87
+ display: flex;
88
+ font-size: 14px;
89
+ opacity: 1;
90
+ padding: 5px 15px;
91
+ white-space: nowrap;
92
+ }
93
+
94
+ .menu-title>i {
95
+ float: right;
96
+ line-height: 40px;
97
+ }
98
+
99
+ .sidebar-menu li.menu-title a {
100
+ color: #ff9b44;
101
+ display: inline-block;
102
+ margin-left: auto;
103
+ padding: 0;
104
+ }
105
+
106
+ .sidebar-menu li.menu-title a.btn {
107
+ color: #fff;
108
+ display: block;
109
+ float: none;
110
+ font-size: 15px;
111
+ margin-bottom: 15px;
112
+ padding: 10px 15px;
113
+ }
114
+
115
+
116
+ .subitem {
117
+ color: #888;
118
+ }
119
+
120
+ .sidebar-menu ul ul a.active {
121
+ /* background-color: #ffebda; */
122
+ color: #000;
123
+ /* text-decoration: underline; */
124
+ }
125
+
126
+ .mobile-user-menu {
127
+ color: #fff;
128
+ display: none;
129
+ float: right;
130
+ font-size: 24px;
131
+ height: 60px;
132
+ line-height: 60px;
133
+ padding: 0 20px;
134
+ position: absolute;
135
+ right: 0;
136
+ text-align: right;
137
+ top: 0;
138
+ width: 60px;
139
+ z-index: 10;
140
+ }
141
+
142
+ .mobile-user-menu>a {
143
+ color: #333;
144
+ padding: 0;
145
+ }
146
+
147
+ .mobile-user-menu a:hover {
148
+ color: #333;
149
+ }
150
+
151
+ .mobile-user-menu>.dropdown-menu {
152
+ min-width: 130px;
153
+ }
154
+
155
+ .mobile-user-menu>.dropdown-menu>a {
156
+ line-height: 23px;
157
+ }
158
+
159
+ .profile-rightbar {
160
+ display: none !important;
161
+ color: #bbb;
162
+ font-size: 26px;
163
+ margin-left: 15px;
164
+ }
165
+
166
+ .mobile_btn {
167
+ display: none;
168
+ float: left;
169
+ }
170
+
171
+ .sidebar .sidebar-menu>ul>li>a span {
172
+ transition: all 0.2s ease-in-out 0s;
173
+ display: inline-block;
174
+ margin-left: 5px;
175
+ /* white-space: nowrap; */
176
+ font-weight: 300;
177
+ }
178
+
179
+
180
+ .sidebar.sidebar-menu>ul>li>a span.chat-user {
181
+ margin-left: 0;
182
+ overflow: hidden;
183
+ text-overflow: ellipsis;
184
+ }
185
+
186
+ .sidebar.sidebar-menu>ul>li>a span.badge {
187
+ margin-left: auto;
188
+ }
189
+
190
+
191
+ .sidebar-menu ul ul a {
192
+ display: flex;
193
+ font-size: 14px;
194
+ padding: 10px 0px 10px 10px;
195
+ position: relative;
196
+ gap: 20px;
197
+ align-items: center;
198
+ }
199
+
200
+ .sidebar-menu ul ul ul a {
201
+ padding-left: 70px;
202
+ }
203
+
204
+ .info_icon {
205
+ font-size: 14px;
206
+ }
207
+
208
+ .sidebar-menu ul ul ul ul a {
209
+ padding-left: 90px;
210
+ }
211
+
212
+ .sidebar-menu>ul>li {
213
+ position: relative;
214
+ }
215
+
216
+ .sidebar-menu .menu-arrow {
217
+ -webkit-transition: -webkit-transform 0.15s;
218
+ -o-transition: -o-transform 0.15s;
219
+ transition: transform .15s;
220
+ position: absolute;
221
+ right: 10px;
222
+ display: inline-block;
223
+ font-family: 'FontAwesome';
224
+ text-rendering: auto;
225
+ line-height: 40px;
226
+ font-size: 20px;
227
+ -webkit-font-smoothing: antialiased;
228
+ -moz-osx-font-smoothing: grayscale;
229
+ -webkit-transform: translate(0, 0);
230
+ -ms-transform: translate(0, 0);
231
+ -o-transform: translate(0, 0);
232
+ transform: translate(0, 0);
233
+ line-height: 18px;
234
+ top: 0;
235
+ height: 46px;
236
+ }
237
+
238
+
239
+
240
+ .sidebar-menu li a.subdrop .menu-arrow {
241
+ -ms-transform: rotate(90deg);
242
+ -webkit-transform: rotate(90deg);
243
+ -o-transform: rotate(90deg);
244
+ transform: rotate(90deg);
245
+ }
246
+
247
+
248
+ .sidebar-menu li a.subdrop {
249
+ color: var(--primary-color);
250
+ background-color: var(--sidebar_mnu_bg);
251
+ margin-bottom: 0px;
252
+ }
253
+
254
+ .sidebar-menu li a.subdrop .icon_background {
255
+ background-color: transparent;
256
+ box-shadow: none;
257
+ }
258
+
259
+
260
+ .sidebar-menu li:has(a.subdrop) ul li {
261
+ /* background-color: var(--sidebar_bg); */
262
+ font-size: 14px;
263
+ line-height: 16px;
264
+ letter-spacing: 0em;
265
+ color: #222222;
266
+ }
267
+
268
+
269
+ .sidebar-menu li:has(a.subdrop) ul {
270
+ row-gap: 0px;
271
+ border-radius: 8px;
272
+ background-color: var(--sidebar_side_mnu_bg);
273
+ margin: 4px 14px;
274
+ }
275
+
276
+ .mini-sidebar .sidebar-menu li:has(a.subdrop) ul {
277
+ /* position: absolute;
278
+ left: 57px;
279
+ top: 1px;
280
+ width: 212px;
281
+ height: auto;
282
+ box-shadow: 1px 1px 3px #847474; */
283
+ /* border-radius: 0px 2px 2px 0px; */
284
+ box-shadow: 1px 1px 3px #847474;
285
+ position: fixed;
286
+ }
287
+
288
+ .mini-sidebar .sidebar-menu li:has(a.subdrop) div {
289
+ position: absolute;
290
+ left: 57px;
291
+ top: 1px;
292
+ width: 212px;
293
+ height: auto;
294
+
295
+ /* border-radius: 0px 2px 2px 0px; */
296
+ }
297
+
298
+ .mini-sidebar .menu-arrow {
299
+ display: none;
300
+ }
301
+
302
+ .sidebar-menu li:has(a.subdrop) ul li a.active {
303
+ background-color: var(--sidebar_bg);
304
+ ;
305
+ color: var(--primary-color);
306
+ text-decoration: none;
307
+ /* margin-top: 5px; */
308
+ display: flex;
309
+ align-items: center;
310
+ /* gap:10px; */
311
+
312
+ }
313
+
314
+
315
+
316
+ .sidebar-menu li:has(a.subdrop) ul li a:hover {
317
+ color: var(--primary-color) !important;
318
+ background-color: transparent;
319
+ }
320
+
321
+
322
+ .sidebar-menu ul ul a .menu-arrow {
323
+ top: 6px;
324
+ }
325
+
326
+ .sidebar-menu a {
327
+ line-height: 1.3;
328
+ transition: unset;
329
+ -moz-transition: unset;
330
+ -o-transition: unset;
331
+ -ms-transition: unset;
332
+ -webkit-transition: unset;
333
+ }
334
+
335
+
336
+ .sidebar-menu>ul>li>a {
337
+ padding: 5px 5px;
338
+ margin: 4px 14px;
339
+ align-items: center;
340
+ display: flex;
341
+ justify-content: flex-start;
342
+ position: relative;
343
+ transition: all 0.2s ease-in-out 0s;
344
+ }
345
+
346
+
347
+
348
+
349
+ .sidebar-menu ul li a i {
350
+ display: inline-block;
351
+ font-size: 16px;
352
+ line-height: 24px;
353
+ text-align: left;
354
+ vertical-align: middle;
355
+ transition: all 0.2s ease-in-out 0s;
356
+ }
357
+
358
+ .sidebar-menu ul li.menu-title a i {
359
+ font-size: 16px !important;
360
+ margin-right: 0;
361
+ text-align: right;
362
+ width: auto;
363
+ }
364
+
365
+ .account-mnu-icon {
366
+ color: var(--primary-color);
367
+ cursor: pointer;
368
+ -webkit-user-select: none;
369
+ user-select: none;
370
+ outline: unset;
371
+ height: 25px;
372
+ width: 25px;
373
+ padding: 4px;
374
+ background: yellow;
375
+ border-radius: 50%;
376
+ border: 1px solid #e6e6e6;
377
+ box-shadow: 0px 0px 1px 0px gray;
378
+ margin: 0 10px 0 10px;
379
+ }
380
+
381
+ .account-setting-mnu-icon {
382
+ color: var(--primary-color);
383
+ cursor: pointer;
384
+ -webkit-user-select: none;
385
+ user-select: none;
386
+ outline: unset;
387
+ height: 22px;
388
+ width: 22px;
389
+ margin: 0 10px 0 5px;
390
+ }
391
+
392
+ .acc_conf_main {
393
+ position: relative;
394
+ appearance: none;
395
+ max-width: 100%;
396
+ font-family: Roboto, sans-serif;
397
+ font-size: 0.8125rem;
398
+ display: inline-flex;
399
+ justify-content: center;
400
+ white-space: nowrap;
401
+ outline: 0px;
402
+ text-decoration: none;
403
+ padding: 0px;
404
+ vertical-align: middle;
405
+ box-sizing: border-box;
406
+ user-select: none;
407
+ -webkit-tap-highlight-color: transparent;
408
+ cursor: pointer;
409
+ border: 1px solid rgb(227, 242, 253);
410
+ color: rgb(33, 150, 243);
411
+ height: 45px;
412
+ /* width: fit-content; */
413
+ align-items: center;
414
+ border-radius: 27px;
415
+ transition: all 0.2s ease-in-out 0s;
416
+ background-color: var(--sidebar_side_mnu_bg);
417
+ }
418
+
419
+ .acc_conf_main:hover {
420
+ border-color: rgb(33, 150, 243);
421
+ color: rgb(227, 242, 253);
422
+ background-color: rgb(33, 150, 243) !important;
423
+ }
424
+
425
+ .acc_conf_main:hover .account-setting-mnu-icon {
426
+ color: var(--button-text-color);
427
+ }
428
+
429
+ .lang-mnu-icon {
430
+ color: var(--pdf-icon-color);
431
+ cursor: pointer;
432
+ border-radius: 8px;
433
+ padding: 6px;
434
+ align-items: center;
435
+ -webkit-user-select: none;
436
+ user-select: none;
437
+ outline: unset;
438
+ height: 30px;
439
+ width: 30px;
440
+ background: var(--sidebar_side_mnu_bg);
441
+ border: 1px solid #e8e3ef;
442
+ }
443
+
444
+ .lang-mnu-icon:hover {
445
+ background-color: var(--pdf-icon-color);
446
+ color: var(--button-text-color);
447
+ }
448
+
449
+ .icon_background {
450
+ /* box-shadow: 4px 4px 11px 1px #00000014; */
451
+ /* background-color: #ffffff; */
452
+ border-radius: 50%;
453
+ padding: 7px;
454
+ display: flex !important;
455
+ justify-content: center;
456
+ align-items: center;
457
+ margin-left: 0px !important;
458
+ height: fit-content;
459
+ }
460
+
461
+ .sub_icon_background svg {
462
+ font-size: 6px;
463
+ }
464
+
465
+ .sub_icon_background {
466
+ padding-right: 0px !important;
467
+ color: var(--primary-color);
468
+ }
469
+
470
+ .submenu ul::after {
471
+ content: "";
472
+ position: absolute;
473
+ left: 22px;
474
+ top: 8%;
475
+ height: 84%;
476
+ width: 1px;
477
+ opacity: 1;
478
+ background-color: transparent;
479
+ border-left: 1px dashed var(--primary-color);
480
+ }
481
+
482
+ .mini-sidebar .submenu ul::after {
483
+ opacity: 0;
484
+ }
485
+
486
+ .mini-sidebar .sidebar-menu ul ul a {
487
+ gap: 10px;
488
+ }
489
+
490
+ /* icon backgroud drawer */
491
+ .icon_backgrounddrawer {
492
+ /* box-shadow: 4px 4px 11px 1px #00000014; */
493
+ /* background-color: #ffffff; */
494
+ border-radius: 50%;
495
+ padding: 10px;
496
+ display: flex !important;
497
+ justify-content: center;
498
+ align-items: center;
499
+ margin-left: 0px !important;
500
+ height: -moz-fit-content;
501
+ height: fit-content;
502
+ }
503
+
504
+ .item_text {
505
+ font-size: 18px;
506
+ font-weight: 500;
507
+ }
508
+
509
+ .dashborad_icon {
510
+ /* color: #F47A7A; */
511
+ }
512
+
513
+ .sidebar-menu li a:hover .dashborad_icon {
514
+ /* color: white !important; */
515
+ color: var(--primary-color) !important;
516
+ }
517
+
518
+ .course_icon {
519
+ /* color: #00D936; */
520
+ }
521
+
522
+ .sidebar-menu li a:hover .course_icon {
523
+ /* color: white !important; */
524
+ color: var(--primary-color) !important;
525
+ }
526
+
527
+
528
+ .myCourse_icon {
529
+ /* color: #CF4EFD; */
530
+ }
531
+
532
+ .sidebar-menu li a:hover .myCourse_icon {
533
+ /* color: white !important; */
534
+ color: var(--primary-color) !important;
535
+ }
536
+
537
+ .eRes_icon {
538
+ /* color: #5AB0FF; */
539
+ }
540
+
541
+ .sidebar-menu li a:hover .eRes_icon {
542
+ /* color: white !important; */
543
+ color: var(--primary-color) !important;
544
+ }
545
+
546
+
547
+ .exam_icon {
548
+ /* color: #F8B83D; */
549
+ }
550
+
551
+ .manage_corporate_icon {
552
+ /* color: #F8B83D; */
553
+ }
554
+
555
+ .manageexam_icon {
556
+
557
+ /* color: #2C4AE9; */
558
+ }
559
+
560
+ .manage_user_icon {
561
+ /* color: #50A0DD; */
562
+ }
563
+
564
+ .manage_content_icon {
565
+ /* color: #CF4EFD; */
566
+
567
+ }
568
+
569
+ .manage_control_icon {
570
+
571
+ /* color: #984BD5; */
572
+ }
573
+
574
+ .profile_icon {
575
+ /* color: #6DDD46; */
576
+ }
577
+
578
+ .sidebar-menu li a:hover .manage_content_icon {
579
+ color: white !important;
580
+ }
581
+
582
+ .sidebar-menu li a:hover .manageexam_icon {
583
+ color: white !important;
584
+ }
585
+
586
+ .sidebar-menu li a:hover .manage_user_icon {
587
+ color: white !important;
588
+ }
589
+
590
+ .sidebar-menu li a:hover .manage_corporate_icon {
591
+ color: white !important;
592
+ }
593
+
594
+ .sidebar-menu li a:hover .manage_control_icon {
595
+ color: white !important;
596
+ }
597
+
598
+
599
+
600
+
601
+ /* user drawer */
602
+ .sidebardrawer {
603
+ background-color: #fff;
604
+ border-right: 1px solid #ddd;
605
+ bottom: 0;
606
+ left: 0;
607
+ margin-top: 0;
608
+ position: fixed;
609
+ top: 35px;
610
+ /* transition: all 0.2s ease-in-out 0s; */
611
+ width: 232px;
612
+ z-index: 1001;
613
+ display: block;
614
+ }
615
+
616
+ .sidebardrawer.opened {
617
+ -webkit-transition: all 0.4s ease;
618
+ -moz-transition: all 0.4s ease;
619
+ transition: all 0.4s ease;
620
+ }
621
+
622
+ .sidebardrawer-inner {
623
+ height: 100%;
624
+ transition: all 0.2s ease-in-out 0s;
625
+ }
626
+
627
+ .sidebar-menudrawer {
628
+ margin-top: 30px;
629
+ padding: 0;
630
+ }
631
+
632
+ .main_drawer .ant-drawer-body {
633
+ padding: 45px 0px !important;
634
+ }
635
+
636
+ .sidebar .sidebar-menudrawer>ul>li>a span.chat-user {
637
+ margin-left: 0;
638
+ overflow: hidden;
639
+ text-overflow: ellipsis;
640
+ }
641
+
642
+ .sidebar .sidebar-menudrawer>ul>li>a span.badge {
643
+ margin-left: auto;
644
+ }
645
+
646
+ .sidebar-menudrawer ul ul a {
647
+ display: flex;
648
+ font-size: 14px;
649
+ padding: 10px 0px 10px 9.5px;
650
+ position: relative;
651
+ gap: 10px;
652
+ align-items: center;
653
+ }
654
+
655
+ .sidebar-menudrawer ul ul ul a {
656
+ padding-left: 35px;
657
+ }
658
+
659
+ .sidebar-menudrawer ul ul ul ul a {
660
+ padding-left: 45px;
661
+ }
662
+
663
+ .sidebar-menudrawer>ul>li {
664
+ position: relative;
665
+ }
666
+
667
+ .sidebar-menudrawer .menu-arrow {
668
+ -webkit-transition: -webkit-transform 0.15s;
669
+ -o-transition: -o-transform 0.15s;
670
+ transition: transform .15s;
671
+ position: absolute;
672
+ right: 10px;
673
+ display: inline-block;
674
+ font-family: 'FontAwesome';
675
+ text-rendering: auto;
676
+ line-height: 20px;
677
+ font-size: 20px;
678
+ -webkit-font-smoothing: antialiased;
679
+ -moz-osx-font-smoothing: grayscale;
680
+ -webkit-transform: translate(0, 0);
681
+ -ms-transform: translate(0, 0);
682
+ -o-transform: translate(0, 0);
683
+ transform: translate(0, 0);
684
+ line-height: 18px;
685
+ }
686
+
687
+ .submenu_drawer ul::after {
688
+ content: "";
689
+ position: absolute;
690
+ left: 22px;
691
+ top: 8%;
692
+ height: 84%;
693
+ width: 1px;
694
+ opacity: 1;
695
+ background-color: transparent;
696
+ border-left: 1px dashed var(--primary-color);
697
+ }
698
+
699
+
700
+
701
+
702
+ .sidebar-menudrawer li a {
703
+ color: #333;
704
+ display: block;
705
+ font-size: 14px;
706
+ height: auto;
707
+ padding: 0 10px;
708
+ text-decoration: none;
709
+ line-height: 20px;
710
+ border-radius: 8px;
711
+ font-weight: 300;
712
+ }
713
+
714
+ .sidebar-menudrawer li a.subdrop {
715
+ color: var(--primary-color);
716
+ background-color: var(--sidebar_mnu_bg);
717
+ margin-bottom: 0px;
718
+ }
719
+
720
+ .sidebar-menudrawer li a.subdrop .icon_background {
721
+ background-color: transparent;
722
+ box-shadow: none;
723
+ }
724
+
725
+ .sidebar-menudrawer li:has(a.subdrop) ul li {
726
+ /* background-color: var(--sidebar_mnu_bg); */
727
+ font-size: 14px;
728
+ line-height: 16px;
729
+ letter-spacing: 0em;
730
+ color: #222222;
731
+ }
732
+
733
+ .sidebar-menudrawer li:has(a.subdrop) ul {
734
+ row-gap: 0px
735
+ }
736
+
737
+ .sidebar-menudrawer li:has(a.subdrop) ul li a.active {
738
+ background-color: var(--sidebar_bg);
739
+ color: var(--primary-color);
740
+ text-decoration: none;
741
+ }
742
+
743
+ .activeExamLi {
744
+ color: var(--primary-color) !important;
745
+ background-color: var(--sidebar_bg) !important
746
+ }
747
+
748
+ .inactiveExamLi {
749
+ color: #000 !important;
750
+ /* background-color: var(--sidebar_bg) !important */
751
+ }
752
+
753
+ .sidebar-menudrawer li:has(a.subdrop) ul li a:hover {
754
+ color: var(--primary-color) !important;
755
+ background-color: transparent;
756
+ }
757
+
758
+ .sidebar-menudrawer ul ul a .menu-arrow {
759
+ top: 3px;
760
+ }
761
+
762
+ .sidebar-menudrawer a {
763
+ line-height: 1.3;
764
+ transition: unset;
765
+ -moz-transition: unset;
766
+ -o-transition: unset;
767
+ -ms-transition: unset;
768
+ -webkit-transition: unset;
769
+ }
770
+
771
+ .sidebar-menudrawer>ul>li>a {
772
+ padding: 5px 5px;
773
+ margin: 4px 14px;
774
+ align-items: center;
775
+ display: flex;
776
+ justify-content: flex-start;
777
+ position: relative;
778
+ transition: all 0.2s ease-in-out 0s;
779
+ }
780
+
781
+ .sidebar-menudrawer ul li a i {
782
+ display: inline-block;
783
+ font-size: 16px;
784
+ line-height: 14px;
785
+ text-align: left;
786
+ vertical-align: middle;
787
+ transition: all 0.2s ease-in-out 0s;
788
+ }
789
+
790
+ .sidebar-menudrawer ul li.menu-title a i {
791
+ font-size: 12px !important;
792
+ margin-right: 0;
793
+ text-align: right;
794
+ width: auto;
795
+ }
796
+
797
+ .sidebar-menudrawer li a:hover .dashborad_icon {
798
+ color: white !important;
799
+ }
800
+
801
+ .sidebar-menudrawer li a:hover .course_icon {
802
+ color: white !important;
803
+ }
804
+
805
+ .sidebar-menudrawer li a:hover .myCourse_icon {
806
+ color: white !important;
807
+ }
808
+
809
+ .sidebar-menudrawer li a:hover .eRes_icon {
810
+ color: white !important;
811
+ }
812
+
813
+ .sidebar-menudrawer li a:hover .exam_icon {
814
+ color: white !important;
815
+ }
816
+
817
+ .sidebar-menudrawer li a:hover .profile_icon {
818
+ color: white !important;
819
+ }
820
+
821
+ .sidebar-menudrawer li a.subdrop .menu-arrow {
822
+ -ms-transform: rotate(45deg);
823
+ -webkit-transform: rotate(45deg);
824
+ -o-transform: rotate(45deg);
825
+ transform: rotate(45deg);
826
+ }
827
+
828
+ .sidebar-menudrawer li.active a {
829
+ color: var(--primary-color);
830
+ background-color: var(--sidebar_side_mnu_bg);
831
+ }
832
+
833
+ .sidebar-menudrawer li.active .icon_backgrounddrawer {
834
+ background-color: transparent;
835
+ box-shadow: none;
836
+ }
837
+
838
+ .subdrop .icon_backgrounddrawer {
839
+ background-color: transparent;
840
+ box-shadow: none;
841
+ }
842
+
843
+ .sidebar-menudrawer li:has(a.subdrop) ul {
844
+ row-gap: 0px;
845
+ border-radius: 8px;
846
+ background-color: var(--sidebar_side_mnu_bg);
847
+ margin: 4px 14px;
848
+ }
849
+
850
+ .sidebar-menudrawer ul {
851
+ font-size: 15px;
852
+ list-style-type: none;
853
+ margin: 0;
854
+ padding: 0;
855
+ position: relative;
856
+ display: flex;
857
+ flex-direction: column;
858
+ /* row-gap: 5px;
859
+ }
860
+
861
+ .sidebar {
862
+ display: block;
863
+ }
864
+
865
+ .drawer_main {
866
+ display: none;
867
+ }
868
+
869
+ .sidebar-menudrawer a {
870
+ text-decoration: none;
871
+ }
872
+
873
+ .inaction_menu span {
874
+ color: #333;
875
+ font-size: 12px;
876
+ font-weight: 500;
877
+ }
878
+
879
+ .submenu_drawer span {
880
+
881
+ color: #333;
882
+ font-size: 12px;
883
+ font-weight: 500;
884
+ margin-left: 10px;
885
+
886
+ }
887
+
888
+ .submenu_name span {
889
+
890
+ margin-top: 5px;
891
+ margin-left: 10px;
892
+
893
+ }
894
+
895
+ .menu_name_span {
896
+ margin-top: 5px;
897
+ margin-left: 10px;
898
+ }
899
+
900
+ .active span {
901
+ /* margin-top: 2px !important;
902
+ margin-left: 10px !important; */
903
+ }
904
+
905
+ .ant-drawer-content-wrapper {
906
+ width: 200px !important;
907
+ }
908
+
909
+ @media only screen and (max-width : 1001px) {
910
+ .sidebar {
911
+ display: none;
912
+ }
913
+
914
+ .drawer_main {
915
+ display: block;
916
+ }
917
+
918
+ .ant-drawer-content-wrapper {
919
+ width: 100%;
920
+ }
921
+
922
+ .main_drawer .ant-drawer-body {
923
+ padding: 0px 0px !important;
924
+ }
925
+
926
+ .sidebar-menudrawer {
927
+ margin-top: 0px;
928
+ padding: 0;
929
+ }
930
+
931
+ .sidebar-menudrawer li a:hover .exam_icon {
932
+ color: #F8B83D !important;
933
+ }
934
+
935
+ }
936
+
937
+ .comp-info-main {
938
+ display: none;
939
+ position: absolute;
940
+ bottom: 0;
941
+ font-size: 10px;
942
+ text-align: center;
943
+ width: 100%;
944
+ padding: 10px 0;
945
+ user-select: none;
946
+ font-weight: 300;
947
+ }