@egovernments/digit-ui-health-css 0.2.86 → 0.2.88
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -259,7 +259,7 @@
|
|
|
259
259
|
border-radius: 1rem;
|
|
260
260
|
background-color: white;
|
|
261
261
|
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
|
|
262
|
-
margin: 5px auto;
|
|
262
|
+
margin: 5px auto; /* updated margin since we added page no */
|
|
263
263
|
font-family: Arial, sans-serif;
|
|
264
264
|
scrollbar-width: thin; /* Firefox */
|
|
265
265
|
scrollbar-color: #d6d5d4 #fafafa; /* Firefox */
|
|
@@ -310,7 +310,7 @@
|
|
|
310
310
|
}
|
|
311
311
|
|
|
312
312
|
.app-card {
|
|
313
|
-
height: 100%;
|
|
313
|
+
min-height: 100%;
|
|
314
314
|
gap: 0.5rem;
|
|
315
315
|
&::-webkit-scrollbar-button {
|
|
316
316
|
display: none !important;
|
|
@@ -399,7 +399,7 @@
|
|
|
399
399
|
width: 100% !important;
|
|
400
400
|
}
|
|
401
401
|
.campaign-header-style {
|
|
402
|
-
color: theme(digitv2.lightTheme.
|
|
402
|
+
color: theme(digitv2.lightTheme.primary-2);
|
|
403
403
|
font-size: 2.5rem;
|
|
404
404
|
}
|
|
405
405
|
.SubHeadingClass {
|
|
@@ -422,6 +422,9 @@
|
|
|
422
422
|
color: theme(digitv2.lightTheme.primary);
|
|
423
423
|
text-align: center;
|
|
424
424
|
margin-top: 1.5rem;
|
|
425
|
+
.disabledText {
|
|
426
|
+
color: #c5c5c5;
|
|
427
|
+
}
|
|
425
428
|
}
|
|
426
429
|
.containerStyle {
|
|
427
430
|
display: flex;
|
|
@@ -447,9 +450,9 @@
|
|
|
447
450
|
}
|
|
448
451
|
.disabledCard {
|
|
449
452
|
cursor: not-allowed;
|
|
450
|
-
border: 1.5px solid
|
|
453
|
+
border: 1.5px solid #c5c5c5;
|
|
451
454
|
.descStyle {
|
|
452
|
-
color:
|
|
455
|
+
color: #c5c5c5
|
|
453
456
|
}
|
|
454
457
|
svg {
|
|
455
458
|
fill: theme(digitv2.lightTheme.text-color-secondary);
|
|
@@ -542,22 +545,24 @@
|
|
|
542
545
|
}
|
|
543
546
|
> *:last-child label {
|
|
544
547
|
border-top-right-radius: 0.5rem;
|
|
545
|
-
border-bottom-right-radius: 0.5rem;
|
|
548
|
+
border-bottom-right-radius: 0.5rem;
|
|
546
549
|
}
|
|
547
550
|
}
|
|
548
551
|
}
|
|
549
552
|
|
|
550
|
-
.digit-toggle-toolbar{
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
553
|
+
.digit-toggle-toolbar {
|
|
554
|
+
&.app-config-tab {
|
|
555
|
+
max-width: 90%;
|
|
556
|
+
> *:first-child label {
|
|
557
|
+
border-top-left-radius: 0.5rem;
|
|
558
|
+
border-bottom-left-radius: 0.5rem;
|
|
559
|
+
}
|
|
560
|
+
> *:last-child label {
|
|
561
|
+
border-top-right-radius: 0.5rem;
|
|
562
|
+
border-bottom-right-radius: 0.5rem;
|
|
563
|
+
}
|
|
559
564
|
}
|
|
560
|
-
}
|
|
565
|
+
}
|
|
561
566
|
.module-description {
|
|
562
567
|
flex-grow: 1;
|
|
563
568
|
margin: 0 0 1rem 0;
|
|
@@ -577,33 +582,116 @@
|
|
|
577
582
|
font-weight: bold;
|
|
578
583
|
text-wrap: nowrap;
|
|
579
584
|
}
|
|
580
|
-
.pop-display{
|
|
585
|
+
.pop-display {
|
|
581
586
|
display: flex;
|
|
582
587
|
margin-top: 1.5rem;
|
|
583
588
|
}
|
|
584
|
-
.popUp-header{
|
|
589
|
+
.popUp-header {
|
|
585
590
|
margin-bottom: 1.5rem;
|
|
586
591
|
}
|
|
587
|
-
.end-date-container-popUp{
|
|
592
|
+
.end-date-container-popUp {
|
|
588
593
|
margin-top: 0.8rem;
|
|
589
594
|
margin-right: 1.5rem;
|
|
590
595
|
font-weight: bold;
|
|
591
596
|
text-wrap: nowrap;
|
|
592
597
|
}
|
|
593
598
|
|
|
599
|
+
.app-config-version-tags {
|
|
600
|
+
display: flex;
|
|
601
|
+
align-items: flex-end;
|
|
602
|
+
margin-right: 24rem;
|
|
603
|
+
justify-content: center;
|
|
604
|
+
margin-top: 0.75rem;
|
|
605
|
+
margin-bottom: 0.5rem;
|
|
606
|
+
|
|
607
|
+
.app-config-placeholder-version-tag {
|
|
608
|
+
width: 30%;
|
|
609
|
+
}
|
|
610
|
+
.app-config-version-tag {
|
|
611
|
+
width: 40%;
|
|
612
|
+
}
|
|
613
|
+
}
|
|
614
|
+
|
|
615
|
+
.content-group {
|
|
616
|
+
display: flex;
|
|
617
|
+
align-items: center;
|
|
618
|
+
gap: 1.5rem;
|
|
619
|
+
padding: 1rem 0;
|
|
620
|
+
border-bottom: 1px solid #ddd;
|
|
621
|
+
}
|
|
622
|
+
|
|
623
|
+
.content-group.no-border {
|
|
624
|
+
border-bottom: none;
|
|
625
|
+
padding-bottom: 0rem;
|
|
626
|
+
margin-bottom: 0rem;
|
|
627
|
+
}
|
|
628
|
+
|
|
629
|
+
.content-icon {
|
|
630
|
+
width: 6.5rem;
|
|
631
|
+
height: 6.5rem;
|
|
632
|
+
object-fit: contain;
|
|
633
|
+
margin-top: 4px;
|
|
634
|
+
flex-shrink: 0;
|
|
635
|
+
}
|
|
594
636
|
|
|
595
|
-
.
|
|
637
|
+
.content-text-block {
|
|
596
638
|
display: flex;
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
639
|
+
flex-direction: column;
|
|
640
|
+
}
|
|
641
|
+
|
|
642
|
+
.content-bold-text {
|
|
643
|
+
font-weight: bold;
|
|
644
|
+
font-size: 1.5rem;
|
|
645
|
+
margin-bottom: 4px;
|
|
646
|
+
color: theme(digitv2.lightTheme.primary-2);
|
|
647
|
+
}
|
|
648
|
+
|
|
649
|
+
.content-regular-text {
|
|
650
|
+
font-size: theme(digitv2.fontSize.heading-s);
|
|
651
|
+
color: theme(digitv2.lightTheme.text-color-secondary);
|
|
652
|
+
}
|
|
653
|
+
|
|
654
|
+
/* Fallback text group */
|
|
655
|
+
.text-group {
|
|
656
|
+
display: flex;
|
|
657
|
+
flex-direction: column;
|
|
658
|
+
gap: 4px;
|
|
659
|
+
margin-bottom: 12px;
|
|
660
|
+
}
|
|
661
|
+
|
|
662
|
+
.bold-text {
|
|
663
|
+
font-weight: bold;
|
|
664
|
+
margin: 0;
|
|
665
|
+
}
|
|
666
|
+
|
|
667
|
+
.regular-text {
|
|
668
|
+
margin: 0;
|
|
669
|
+
}
|
|
670
|
+
|
|
671
|
+
.paragraph-text {
|
|
672
|
+
margin-bottom: 12px;
|
|
673
|
+
}
|
|
674
|
+
|
|
675
|
+
.image-block {
|
|
676
|
+
margin: 10px 0;
|
|
677
|
+
}
|
|
678
|
+
|
|
679
|
+
.responsive-image {
|
|
680
|
+
max-width: 100%;
|
|
681
|
+
height: auto;
|
|
682
|
+
}
|
|
683
|
+
|
|
684
|
+
.list-block {
|
|
685
|
+
padding-left: 20px;
|
|
686
|
+
margin-bottom: 12px;
|
|
687
|
+
}
|
|
688
|
+
.campaign-requirements-heading{
|
|
689
|
+
.digit-popup-icon-header-container{
|
|
690
|
+
.digit-popup-heading-subheading-wrap{
|
|
691
|
+
.digit-popup-heading{
|
|
692
|
+
color: theme(digitv2.lightTheme.primary-2);
|
|
608
693
|
}
|
|
609
|
-
}
|
|
694
|
+
}
|
|
695
|
+
}
|
|
696
|
+
}
|
|
697
|
+
|
|
@@ -293,6 +293,7 @@
|
|
|
293
293
|
.cmn-help-info-card{
|
|
294
294
|
margin: 1.5rem 1rem;
|
|
295
295
|
max-width: 100%;
|
|
296
|
+
display: column;
|
|
296
297
|
.cmn-help-info-card-elements-wrapper{
|
|
297
298
|
margin-bottom: 0.5rem;
|
|
298
299
|
flex-direction: column;
|
|
@@ -319,4 +320,5 @@
|
|
|
319
320
|
|
|
320
321
|
.digit-text-block-header-content {
|
|
321
322
|
flex-direction: column !important;
|
|
322
|
-
}
|
|
323
|
+
}
|
|
324
|
+
|
|
@@ -621,6 +621,9 @@ tbody {
|
|
|
621
621
|
h2 {
|
|
622
622
|
color: theme(digitv2.lightTheme.text-primary);
|
|
623
623
|
}
|
|
624
|
+
div{
|
|
625
|
+
flex-direction: column;
|
|
626
|
+
}
|
|
624
627
|
}
|
|
625
628
|
|
|
626
629
|
.link {
|
|
@@ -1048,6 +1051,12 @@ tbody {
|
|
|
1048
1051
|
.digit-description {
|
|
1049
1052
|
display: flex !important;
|
|
1050
1053
|
}
|
|
1054
|
+
.selection-card-container {
|
|
1055
|
+
.selection-card {
|
|
1056
|
+
width: 100%;
|
|
1057
|
+
justify-content: center;
|
|
1058
|
+
}
|
|
1059
|
+
}
|
|
1051
1060
|
}
|
|
1052
1061
|
.infotext {
|
|
1053
1062
|
width: 12rem !important;
|