@magicfeedback/native 2.1.2-beta.7 → 2.1.4

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.
@@ -1 +1,836 @@
1
1
 
2
+ .magicfeedback-container {
3
+ width: 100%;
4
+ }
5
+
6
+
7
+ .magicfeedback-success-message,
8
+ .magicfeedback-info-message,
9
+ .magicfeedback-start-message,
10
+ .magicfeedback-container{
11
+ animation-duration: 0.5s;
12
+ animation-name: animate-fade;
13
+ animation-delay: 0.25s;
14
+ animation-fill-mode: backwards;
15
+
16
+ font-style: normal;
17
+ text-align: justify;
18
+ font-weight: 400;
19
+ font-size: 1.2rem;
20
+ color: #475569;
21
+ line-height: 1.5;
22
+ }
23
+
24
+ @keyframes animate-fade {
25
+ 0% { opacity: 0; }
26
+ 100% { opacity: 1; }
27
+ }
28
+
29
+ .magicfeedback-form {
30
+ display: flex;
31
+ flex-direction: column;
32
+ justify-content: flex-start;
33
+ align-items: center;
34
+ width: 100%;
35
+ }
36
+ .magicfeedback-questions {
37
+ display: flex;
38
+ flex-direction: column;
39
+ justify-content: flex-start;
40
+ align-items: flex-start;
41
+ width: 100%;
42
+ }
43
+
44
+ .magicfeedback-div {
45
+ display: flex;
46
+ flex-direction: column;
47
+ justify-content: flex-start;
48
+ align-items: flex-start;
49
+ margin-bottom: 10px;
50
+ width: 100%;
51
+ }
52
+
53
+ .magicfeedback-label {
54
+ margin-bottom: 25px;
55
+ margin-top: 20px;
56
+ font-weight: 400;
57
+ font-family: inherit;
58
+ font-size: 1.2rem;
59
+ color: #212529;
60
+ text-align: start;
61
+ word-wrap: break-word;
62
+ white-space: normal;
63
+
64
+ }
65
+
66
+ .magicfeedback-checkbox {
67
+ display: flex;
68
+ flex-direction: column;
69
+ flex-wrap: wrap;
70
+ width: 100%;
71
+ }
72
+
73
+ .magicfeedback-checkbox-container {
74
+ display: flex;
75
+ flex-direction: row;
76
+ justify-content: flex-start;
77
+ align-items: center;
78
+ margin-bottom: 5px;
79
+ margin-top: 5px;
80
+ }
81
+
82
+ .magicfeedback-radio {
83
+ display: flex;
84
+ flex-direction: column;
85
+ justify-content: flex-start;
86
+ flex-wrap: wrap;
87
+ width: 100%;
88
+ }
89
+
90
+ .magicfeedback-checkbox-container,
91
+ .magicfeedback-radio-container {
92
+ display: flex;
93
+ flex-direction: row;
94
+ justify-content: flex-start;
95
+ align-items: center;
96
+ margin: 5px 2px;
97
+ padding: 5px 0;
98
+ background-color: #fff;
99
+ border-radius: 5px;
100
+ box-shadow: 0 0 3px #ccc;
101
+ }
102
+
103
+ input::-webkit-outer-spin-button,
104
+ input::-webkit-inner-spin-button {
105
+ -webkit-appearance: none;
106
+ -moz-appearance: textfield;
107
+ }
108
+
109
+ .magicfeedback-checkbox input[type="checkbox"] {
110
+ margin-right: 5px;
111
+ margin-left: 5px;
112
+ width: 20px;
113
+ height: 20px;
114
+ cursor: pointer;
115
+ }
116
+
117
+
118
+ .magicfeedback-checkbox label,
119
+ .magicfeedback-radio-container label {
120
+ margin-left: 5px;
121
+ font-weight: 400;
122
+ font-family: inherit;
123
+ font-size: 16px;
124
+ color: #212529;
125
+ text-align: start;
126
+ width: 100%;
127
+ }
128
+
129
+ p {
130
+ margin-bottom: 0px;
131
+ font-size: 12px;
132
+ }
133
+
134
+ h2 {
135
+ line-height: 1.66;
136
+ margin: 0;
137
+ padding: 0;
138
+ font-weight: 900;
139
+ color: #222;
140
+ font-family: 'Montserrat';
141
+ font-size: 18px;
142
+ text-transform: uppercase;
143
+ text-align: center;
144
+ margin-bottom: 40px;
145
+ }
146
+
147
+ h6 {
148
+ margin-bottom: 1rem;
149
+ }
150
+
151
+ input[type="date"],
152
+ input[type="text"],
153
+ input[type="number"],
154
+ input[type="email"],
155
+ input[type="password"],
156
+ textarea,
157
+ select {
158
+ box-sizing: border-box;
159
+ padding: 10px;
160
+ margin: 10px 0;
161
+ width: 100%;
162
+ border: 2px solid #ccc; /* Default border color - you can customize this */
163
+ border-radius: 5px;
164
+ font-size: 18px;
165
+ outline: none;
166
+ transition: border-color 0.3s ease;
167
+ min-height: 50px;
168
+ font-family: inherit;
169
+ -webkit-appearance: none;
170
+ }
171
+
172
+ select {
173
+ background-image: linear-gradient(45deg, transparent 50%, gray 50%),
174
+ linear-gradient(135deg, gray 50%, transparent 50%),
175
+ linear-gradient(to right, #ccc, #ccc);
176
+ background-position: calc(100% - 20px) calc(1em + 2px),
177
+ calc(100% - 15px) calc(1em + 2px),
178
+ calc(100% - 2.5em) 0.5em;
179
+ background-size: 5px 5px,
180
+ 5px 5px,
181
+ 1px 1.5em;
182
+ background-repeat: no-repeat;
183
+ }
184
+
185
+ .magicfeedback-boolean-container {
186
+ display: flex;
187
+ flex-direction: row;
188
+ justify-content: flex-start;
189
+ align-items: center;
190
+ margin: 10px 0;
191
+ width: 100%;
192
+ }
193
+
194
+ .magicfeedback-boolean-container label {
195
+ margin-left: 10px;
196
+ font-weight: 400;
197
+ font-size: 16px;
198
+ width: 100%;
199
+ padding-top: 5px;
200
+ }
201
+
202
+ .magicfeedback-boolean-option {
203
+ margin-right: 10px;
204
+ margin-left: 10px;
205
+ width: 100%;
206
+ height: 38px;
207
+ border-radius: 8px;
208
+ font-size: 16px;
209
+ cursor: pointer;
210
+ border: 1px solid #ced4da !important;
211
+ }
212
+
213
+ .magicfeedback-boolean-option label {
214
+ font-weight: 400;
215
+ font-size: 16px;
216
+ color: #475569;
217
+ cursor: pointer;
218
+ width: 100%;
219
+ height: 100%;
220
+ display: flex;
221
+ justify-content: center;
222
+ align-items: center;
223
+ border-radius: inherit;
224
+ }
225
+
226
+ .magicfeedback-boolean-option input[type=radio] + label:hover {
227
+ color: #007bff;
228
+ }
229
+
230
+ .magicfeedback-boolean-option input[type=radio]:checked + label {
231
+ color: #007bff;
232
+ background-color: #cadff8;
233
+ }
234
+
235
+ input[type="radio"] {
236
+ padding: 20px;
237
+ margin: 10px 0 10px 15px;
238
+ width: 40px;
239
+ background-color: #fff;
240
+ box-shadow: none;
241
+ }
242
+
243
+ /* Style for focused input/select */
244
+ input:focus, select:focus {
245
+ border-color: #4CAF50; /* Highlight color when focused - you can customize this */
246
+ }
247
+
248
+ /* Style for invalid input (example: validation error) */
249
+ input.error, select.error {
250
+ border-color: #ff3333; /* Red color for error state - you can customize this */
251
+ }
252
+
253
+ .magicfeedback-action-container {
254
+ display: flex;
255
+ flex-direction: row;
256
+ justify-content: space-between;
257
+ align-items: center;
258
+ margin-top: 10px;
259
+ width: 100%;
260
+ }
261
+
262
+ .magicfeedback-action-container .magicfeedback-submit {
263
+ cursor: pointer;
264
+ padding: 10px;
265
+ margin: 10px 0;
266
+ width: 100px;
267
+ border-radius: 8px;
268
+ font-size: 16px;
269
+ outline: none;
270
+ transition: border-color 0.3s ease;
271
+ background-color: #1E293B;
272
+ color: white;
273
+ }
274
+
275
+ .magicfeedback-action-container .magicfeedback-back {
276
+ cursor: pointer;
277
+ padding: 10px;
278
+ margin: 10px 0;
279
+ width: 100px;
280
+ border: 0;
281
+ border-radius: 8px;
282
+ font-size: 16px;
283
+ outline: none;
284
+ transition: border-color 0.3s ease;
285
+ background-color: transparent;
286
+ color: #212529;
287
+ }
288
+
289
+
290
+
291
+ /* Rating styles */
292
+ .magicfeedback-rating {
293
+ width: 100%;
294
+ }
295
+
296
+ .magicfeedback-rating-container {
297
+ display: flex;
298
+ flex-direction: row;
299
+ justify-content: space-around;
300
+ flex-wrap: wrap;
301
+ align-items: center;
302
+
303
+ margin: 15px 5px;
304
+ padding: 0;
305
+
306
+ list-style: none;
307
+ font-size: 1.5rem;
308
+ cursor: pointer;
309
+ user-select: none;
310
+ -webkit-user-select: none;
311
+ -moz-user-select: none;
312
+ -ms-user-select: none;
313
+ }
314
+
315
+ .magicfeedback-rating-placeholder-value,
316
+ .magicfeedback-rating-placeholder{
317
+ text-align: center;
318
+ align-content: center;
319
+ justify-content: center;
320
+ text-wrap: wrap;
321
+ }
322
+
323
+ .magicfeedback-rating-option {
324
+ margin: 0 0.5rem;
325
+ padding: 0;
326
+ }
327
+
328
+ @media (max-width: 1024px) {
329
+ .magicfeedback-rating-option {
330
+ margin: 10px 0;
331
+ padding: 0;
332
+ width: 20%;
333
+ display: flex;
334
+ justify-content: center;
335
+ }
336
+
337
+ .magicfeedback-rating-placeholder-value {
338
+ font-size: 0.75rem;
339
+ margin-bottom: 1px;
340
+ }
341
+ .magicfeedback-rating-placeholder{
342
+ justify-content: center;
343
+ }
344
+
345
+ .magicfeedback-rating-container {
346
+ flex-wrap: wrap;
347
+ justify-content: flex-start;
348
+ }
349
+ }
350
+
351
+
352
+ .magicfeedback-rating-option-label-container {
353
+ display: flex;
354
+ flex-direction: column;
355
+ }
356
+
357
+
358
+ .magicfeedback-rating-option-label-container label {
359
+ display: inline-block;
360
+ text-align: center;
361
+ margin-bottom: 0;
362
+ font-weight: 600;
363
+ font-size: 18px;
364
+ color: #475569;
365
+ }
366
+
367
+ .magicfeedback-rating-option-label-container input[type=radio] {
368
+ position: absolute;
369
+ opacity: 0;
370
+ width: 0;
371
+ height: 0;
372
+ }
373
+
374
+ /* IMAGE STYLES */
375
+ .magicfeedback-rating-option-label-container input[type=radio] + img {
376
+ cursor: pointer;
377
+ height: 48px;
378
+ width: 48px;
379
+ }
380
+
381
+ /* LABEL STYLES */
382
+ .magicfeedback-rating-option-label-container input[type=radio] + label {
383
+ cursor: pointer;
384
+ }
385
+
386
+ /* CHECKED STYLES */
387
+ .magicfeedback-rating-option-label-container input[type=radio]:checked + img {
388
+ box-shadow: #007bff 0px 1px 4px, #007BFFA0 0px 0px 0px 2px;
389
+ border-radius: 50%;
390
+ }
391
+
392
+ .magicfeedback-rating-number {
393
+ width: 100%;
394
+ }
395
+ .magicfeedback-rating-container,
396
+ .magicfeedback-rating-number-container {
397
+ display: flex;
398
+ flex-direction: row;
399
+ justify-content: space-between;
400
+ align-items: center;
401
+
402
+ margin: 15px 0;
403
+ padding: 0;
404
+
405
+ list-style: none;
406
+ font-size: 1.5rem;
407
+ cursor: pointer;
408
+ user-select: none;
409
+ -webkit-user-select: none;
410
+ -moz-user-select: none;
411
+ -ms-user-select: none;
412
+ }
413
+
414
+ .magicfeedback-rating-number-option {
415
+ display: flex;
416
+ flex-direction: row;
417
+ justify-content: flex-start;
418
+ align-items: center;
419
+ margin: 5px;
420
+ padding: 0;
421
+ list-style: none;
422
+ font-size: 1.5rem;
423
+ cursor: pointer;
424
+ user-select: none;
425
+ -webkit-user-select: none;
426
+ -moz-user-select: none;
427
+ -ms-user-select: none;
428
+ width: 100%;
429
+ }
430
+
431
+ .magicfeedback-rating-number-option-row{
432
+ max-width: 100% !important;
433
+ }
434
+
435
+ .magicfeedback-rating-number-top-placeholder,
436
+ .magicfeedback-rating-number-bottom-placeholder{
437
+ text-align: center !important;
438
+ align-content: center;
439
+ justify-content: center;
440
+ text-wrap: wrap;
441
+
442
+ font-size: 15px;
443
+ color: #475569;
444
+
445
+ width: 100%;
446
+ margin: auto;
447
+ }
448
+
449
+ @media (min-width: 650px) {
450
+ .magicfeedback-rating-number-option-row +.magicfeedback-rating-number-container-ltr:first-child,
451
+ .magicfeedback-rating-number-option-row + +.magicfeedback-rating-number-container-rtl:last-child {
452
+ margin-left: 0;
453
+ width: calc(100% - 10px);
454
+ }
455
+
456
+ .magicfeedback-rating-number-option-row +.magicfeedback-rating-number-container-rtl:first-child,
457
+ .magicfeedback-rating-number-option-row + +.magicfeedback-rating-number-container-ltr:last-child {
458
+ margin-right: 0;
459
+ width: calc(100% - 10px);
460
+ }
461
+ }
462
+
463
+
464
+ .magicfeedback-rating-number-option-label-container {
465
+ display: flex;
466
+ flex-direction: column;
467
+ align-items: center;
468
+ justify-content: center;
469
+ width: 100%;
470
+ height: 100%;
471
+ }
472
+
473
+ .magicfeedback-rating-number-option-label-container label {
474
+ display: flex;
475
+ align-items: center;
476
+ justify-content: center;
477
+ white-space: nowrap;
478
+ overflow: hidden;
479
+ text-overflow: ellipsis;
480
+ margin: 0 10px;
481
+ font-weight: 600;
482
+ font-size: 14px;
483
+ color: #475569;
484
+ cursor: pointer;
485
+ width: 100%;
486
+ height: 100%;
487
+ min-height: 50px;
488
+ text-align: center;
489
+ padding: 0;
490
+ border-radius: 4px;
491
+ border: 1px solid #ced4da;
492
+ background-color: rgba(246, 246, 246, 0.3);
493
+ transition: background-color 0.15s ease-in-out;
494
+ }
495
+
496
+ .magicfeedback-rating-number-option-label-container input[type=radio] {
497
+ position: absolute;
498
+ opacity: 0;
499
+ width: 0;
500
+ height: 0;
501
+ }
502
+
503
+ .magicfeedback-rating-number-option-label-container input[type=radio] + label {
504
+ cursor: pointer;
505
+ }
506
+
507
+ .magicfeedback-rating-number-option-label-container input[type=radio] + label:hover,
508
+ .magicfeedback-rating-number-option-label-container input[type=radio]:checked + label {
509
+ color: #007bff;
510
+ border: 1px solid #007bff;
511
+ background-color: rgba(86, 168, 253, 0.29);
512
+ }
513
+
514
+ .magicfeedback-rating-number-container-column{
515
+ align-items: flex-start !important;
516
+ }
517
+
518
+ @media (max-width: 650px) {
519
+ .magicfeedback-rating-number-container-ltr {
520
+ justify-content: center;
521
+ flex-wrap: wrap;
522
+ }
523
+
524
+ .magicfeedback-rating-number-container-rtl {
525
+ justify-content: center;
526
+ flex-wrap: wrap-reverse;
527
+ }
528
+
529
+ .magicfeedback-rating-number-option {
530
+ max-width: 100%;
531
+ height: 55px;
532
+ margin: 5px 0;
533
+ }
534
+ }
535
+
536
+ .magicfeedback-rating-star {
537
+ width: 100%;
538
+ }
539
+
540
+ .magicfeedback-rating-star-container {
541
+ display: flex !important;
542
+ flex-direction: row !important;
543
+ justify-content: center !important;
544
+ align-items: center !important;
545
+ flex-wrap: wrap;
546
+ margin: 15px 5px;
547
+ padding: 0;
548
+ list-style: none;
549
+ font-size: 1.5rem;
550
+ cursor: pointer;
551
+ user-select: none;
552
+ -webkit-user-select: none;
553
+ -moz-user-select: none;
554
+ -ms-user-select: none;
555
+ }
556
+
557
+ .magicfeedback-rating-star-option:not(:checked) > .rating__star {
558
+ float: right;
559
+ width: 1em;
560
+ overflow: hidden;
561
+ white-space: nowrap;
562
+ cursor: pointer;
563
+ font-size: 30px;
564
+ color: #ccc;
565
+ margin: 0 10px;
566
+ }
567
+
568
+ .magicfeedback-rating-star-option:not(:checked) > .rating__star:hover,
569
+ .magicfeedback-rating-star-option:not(:checked) > .rating__star:hover ~ span {
570
+ color: #deb217 !important;
571
+ }
572
+
573
+ .magicfeedback-rating-star-selected {
574
+ color: #ffc700 !important;
575
+ }
576
+
577
+
578
+ /* Style for multiple choice image */
579
+ .magicfeedback-image-option-label-container:hover {
580
+ cursor: pointer;
581
+ border: 0 !important;
582
+ }
583
+
584
+ .magicfeedback-image-option-label-container input[type=radio]:checked + img,
585
+ .magicfeedback-image-option-label-container input[type=checkbox]:checked + img {
586
+ border: 1px solid #007bff !important;
587
+ box-shadow: 0 0 3px #007bff !important;
588
+ }
589
+
590
+ .magicfeedback-image-option-label-container input[type=radio] + img,
591
+ .magicfeedback-image-option-label-container input[type=checkbox] + img {
592
+ border: 1px solid transparent !important;
593
+ }
594
+
595
+ .magicfeedback-image-option-label-container{
596
+ margin: 10px !important;
597
+ height: calc(100% - 20px) !important;
598
+ width: calc(100% - 20px) !important;
599
+ }
600
+
601
+ .magicfeedback-multiple-choice-image-option {
602
+ display: flex;
603
+ height: auto !important;
604
+ box-shadow: 0 0 3px #ccc;
605
+ }
606
+
607
+ .magicfeedback-multiple-choice-image-label {
608
+ font-size: 1rem;
609
+ }
610
+
611
+ .magicfeedback-consent-container {
612
+ display: flex;
613
+ flex-direction: row;
614
+ justify-content: flex-start;
615
+ align-items: center;
616
+ margin: 10px 0;
617
+ width: 100%;
618
+ }
619
+
620
+ .magicfeedback-consent-container label {
621
+ margin-left: 10px;
622
+ }
623
+
624
+ .magicfeedback-start-message-container {
625
+ /* ... add your start message container styles here ... */
626
+ }
627
+
628
+ .magicfeedback-success-message,
629
+ .magicfeedback-info-message,
630
+ .magicfeedback-start-message {
631
+ margin: 35px 5px;
632
+ }
633
+
634
+ .magicfeedback-success-message p,
635
+ .magicfeedback-info-message p,
636
+ .magicfeedback-start-message p {
637
+ font-style: normal;
638
+ text-align: start;
639
+ font-weight: 400;
640
+ font-size: 16px;
641
+ color: #475569;
642
+ line-height: 1.5;
643
+ }
644
+
645
+ .magicfeedback-success-message img,
646
+ .magicfeedback-info-message img,
647
+ .magicfeedback-start-message img {
648
+ width: 400px;
649
+ max-width: 80%;
650
+ height: auto;
651
+ margin: 10px auto;
652
+ }
653
+
654
+ .magicfeedback-counter,
655
+ .magicfeedback-point-system-total {
656
+ margin: 10px 0 0 0 !important;
657
+ display: flex !important;
658
+ justify-content: right !important;
659
+ align-items: center !important;
660
+ width: 100%;
661
+ }
662
+
663
+ .magicfeedback-skip-container {
664
+ background-color: transparent !important;
665
+ border: 0 !important;
666
+ color: #999999FF !important;
667
+ padding: 0 !important;
668
+ margin: 0 !important;
669
+ cursor: pointer !important;
670
+ font-size: 0.5em !important;
671
+ font-weight: 400 !important;
672
+ box-shadow: 0 0 0 !important;
673
+
674
+ &:hover {
675
+ color: #0066ff;
676
+ }
677
+ }
678
+
679
+ .magicfeedback-skip-container input[type=checkbox] {
680
+ border-color: #999999FF !important;
681
+ border: 0 !important;
682
+ cursor: pointer !important;
683
+
684
+ }
685
+
686
+ .magicfeedback-multi-question-matrix,
687
+ .magicfeedback-point-system,
688
+ .magicfeedback-priority-list {
689
+ width: 100% !important;
690
+ }
691
+
692
+ .magicfeedback-multi-question-matrix-container,
693
+ .magicfeedback-point-system-container,
694
+ .magicfeedback-priority-list-container {
695
+ width: 100% !important;
696
+ overflow-x: auto;
697
+ }
698
+
699
+ .magicfeedback-point-system-list,
700
+ .magicfeedback-priority-list-list,
701
+ .magicfeedback-multi-question-matrix-table {
702
+ width: 100% !important;
703
+ padding: 0 !important;
704
+ overflow-x: auto;
705
+ }
706
+
707
+ .magicfeedback-multi-question-matrix {
708
+ position: relative !important;
709
+ }
710
+
711
+ .magicfeedback-multi-question-matrix-container {
712
+ overflow: auto !important;
713
+ padding-bottom: 10px;
714
+ }
715
+
716
+ .magicfeedback-multi-question-matrix-label{
717
+ text-align: left !important;
718
+ }
719
+ .magicfeedback-priority-list-item {
720
+ display: flex;
721
+ flex-direction: row;
722
+ justify-content: space-between;
723
+ align-items: center;
724
+ padding: 10px 0 10px 10px;
725
+
726
+ border: 1px solid #ced4da;
727
+ border-radius: 5px;
728
+ margin: 10px 0 !important;
729
+ }
730
+
731
+ .magicfeedback-point-system-item {
732
+ height: 45px;
733
+ margin: 5px 0 !important;
734
+ }
735
+
736
+ .magicfeedback-point-system-item label,
737
+ .magicfeedback-priority-list-item-label {
738
+ font-family: inherit;
739
+ font-size: 18px !important;
740
+ color: #212529;
741
+ text-align: start;
742
+ word-wrap: break-word;
743
+ white-space: normal;
744
+ padding: 0 10px 0 0;
745
+ }
746
+
747
+ .magicfeedback-point-system-input-container {
748
+ padding: 0 10px 0 0;
749
+ border-radius: 5px;
750
+ font-size: 14px;
751
+ border: 1px solid #ced4da;
752
+ height: 42px;
753
+ margin: auto 0;
754
+ }
755
+
756
+ .magicfeedback-multi-question-matrix-table thead {
757
+ margin-bottom: 20px;
758
+ }
759
+
760
+ .magicfeedback-multi-question-matrix-table th{
761
+ text-align: center;
762
+ font-weight: 400 !important;
763
+ font-size: 1rem !important;
764
+ padding: 0 10px !important;
765
+ }
766
+
767
+ .magicfeedback-multi-question-matrix-table th,
768
+ .magicfeedback-multi-question-matrix-table td label,
769
+ .magicfeedback-priority-list-arrow-up,
770
+ .magicfeedback-priority-list-arrow-down {
771
+ font-style: normal !important;
772
+ font-weight: 400 !important;
773
+ font-size: 1rem !important;
774
+ color: #475569 !important;
775
+ cursor: pointer !important;
776
+ margin: 0 !important;
777
+ line-height: inherit;
778
+ }
779
+
780
+ .magicfeedback-multi-question-matrix-table tr {
781
+ align-items: center;
782
+ margin: 5px 0;
783
+ }
784
+
785
+ .magicfeedback-multi-question-matrix-row-tr{
786
+ border-radius: 5px;
787
+ margin: 10px 0 !important;
788
+ }
789
+
790
+ .magicfeedback-multi-question-matrix-row-tr:nth-child(odd) {
791
+ background-color: #f1f6f6; /* Light gray background for odd rows */
792
+ }
793
+
794
+ .magicfeedback-multi-question-matrix-row-tr:nth-child(even) {
795
+ background-color: #ffffff; /* White background for even rows */
796
+ }
797
+
798
+ .magicfeedback-multi-question-matrix-row-label {
799
+ text-align: left !important;
800
+ }
801
+
802
+ .magicfeedback-point-system-item span {
803
+ color: #475569 !important;
804
+ }
805
+
806
+ .magicfeedback-point-system-item input {
807
+ padding: 0;
808
+ margin: 0 !important;
809
+ width: auto !important;
810
+ min-width: 100px !important;
811
+ height: auto !important;
812
+ min-height: 42px;
813
+ cursor: pointer;
814
+ font-size: 14px;
815
+ text-align: center !important;
816
+ }
817
+
818
+ .magicfeedback-multi-question-matrix-table input {
819
+ margin: auto !important;
820
+ padding: 20px !important;
821
+ width: 100% !important;
822
+ height: 15px;
823
+ border: 1px solid #ced4da;
824
+ cursor: pointer;
825
+ }
826
+
827
+ .magicfeedback-image{
828
+ max-height: 400px !important;
829
+ height: auto !important;
830
+ max-width: 100% !important;
831
+ margin: 10px auto !important;
832
+ }
833
+
834
+ .magicfeedback-error{
835
+ margin-top: 5px;
836
+ }