@egovernments/digit-ui-health-css 0.2.98 → 0.2.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.
package/package.json
CHANGED
|
@@ -172,7 +172,7 @@
|
|
|
172
172
|
|
|
173
173
|
p {
|
|
174
174
|
margin: 0;
|
|
175
|
-
margin-bottom:
|
|
175
|
+
margin-bottom: 1rem;
|
|
176
176
|
}
|
|
177
177
|
|
|
178
178
|
.mandatory-date {
|
|
@@ -213,13 +213,11 @@
|
|
|
213
213
|
width: 100%;
|
|
214
214
|
}
|
|
215
215
|
.campaign-tag {
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
height: 3.3rem;
|
|
219
|
-
.digit-tag-text {
|
|
220
|
-
font-size: 1.5rem;
|
|
221
|
-
font-weight: 700;
|
|
216
|
+
.digit-tag-text{
|
|
217
|
+
color: theme(digitv2.alert.info) !important;
|
|
222
218
|
}
|
|
219
|
+
background-color: #EFF8FF !important;
|
|
220
|
+
border-color: theme(digitv2.alert.info) !important;
|
|
223
221
|
}
|
|
224
222
|
.digit-popup-wrapper.dataMapping {
|
|
225
223
|
.digit-popup-children-wrap {
|
|
@@ -228,13 +226,14 @@
|
|
|
228
226
|
}
|
|
229
227
|
.dataMappingCard {
|
|
230
228
|
overflow-y: scroll;
|
|
229
|
+
margin-top: 1.5rem;
|
|
231
230
|
}
|
|
232
231
|
.dataMappingDropdown {
|
|
233
232
|
min-width: 13rem !important;
|
|
234
233
|
}
|
|
235
234
|
.data-mapping-filter-switch {
|
|
236
235
|
float: right;
|
|
237
|
-
margin-right:
|
|
236
|
+
margin-right: 0rem;
|
|
238
237
|
margin-bottom: 0rem;
|
|
239
238
|
}
|
|
240
239
|
.digit-label-field-pair.multiselect-label-field {
|
|
@@ -467,9 +466,13 @@
|
|
|
467
466
|
cursor: pointer;
|
|
468
467
|
flex-direction: column;
|
|
469
468
|
text-align: center;
|
|
470
|
-
transition: box-shadow 0.3s ease-in-out;
|
|
469
|
+
transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
|
|
471
470
|
background-color: #fff;
|
|
472
471
|
}
|
|
472
|
+
.cardStyle:hover {
|
|
473
|
+
transform: translateY(-5px);
|
|
474
|
+
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
|
|
475
|
+
}
|
|
473
476
|
.disabledCard {
|
|
474
477
|
cursor: not-allowed;
|
|
475
478
|
border: 1.5px solid #c5c5c5;
|
|
@@ -512,6 +515,7 @@
|
|
|
512
515
|
.detail-header {
|
|
513
516
|
font-size: theme(digitv2.fontSize.heading-m);
|
|
514
517
|
color: theme(digitv2.lightTheme.primary-2);
|
|
518
|
+
font-family: "roboto"
|
|
515
519
|
}
|
|
516
520
|
.details-desc {
|
|
517
521
|
color: theme(digitv2.lightTheme.text-color-secondary);
|
|
@@ -524,11 +528,12 @@
|
|
|
524
528
|
}
|
|
525
529
|
.campaign-view-tag {
|
|
526
530
|
margin-left: 1rem;
|
|
531
|
+
height: fit-content;
|
|
527
532
|
}
|
|
528
533
|
|
|
529
534
|
.module-card {
|
|
530
535
|
width: 20rem;
|
|
531
|
-
height:
|
|
536
|
+
height: 23rem;
|
|
532
537
|
border: 1px;
|
|
533
538
|
border-radius: 0.75rem;
|
|
534
539
|
}
|
|
@@ -545,6 +550,7 @@
|
|
|
545
550
|
width: 100% !important;
|
|
546
551
|
}
|
|
547
552
|
.beneficiary-selection-label {
|
|
553
|
+
margin-top: 1.5rem;
|
|
548
554
|
margin-bottom: 0rem;
|
|
549
555
|
}
|
|
550
556
|
.selected-card {
|
|
@@ -753,3 +759,15 @@
|
|
|
753
759
|
.app-config {
|
|
754
760
|
width: auto;
|
|
755
761
|
}
|
|
762
|
+
.progress-popup{
|
|
763
|
+
.digit-popup-close{
|
|
764
|
+
display: none !important;
|
|
765
|
+
}
|
|
766
|
+
}
|
|
767
|
+
.update-boundary-header{
|
|
768
|
+
color: theme(digitv2.lightTheme.primary-2);
|
|
769
|
+
font-size: theme(fontSize.heading-xl);
|
|
770
|
+
}
|
|
771
|
+
.select-boundary{
|
|
772
|
+
color: theme(digitv2.lightTheme.primary-2) !important;
|
|
773
|
+
}
|
|
@@ -281,6 +281,7 @@
|
|
|
281
281
|
margin-right: 24rem;
|
|
282
282
|
}
|
|
283
283
|
.boldLabel{
|
|
284
|
+
margin-bottom: 0rem;
|
|
284
285
|
.digit-header-content{
|
|
285
286
|
font-weight: 700;
|
|
286
287
|
}
|
|
@@ -321,4 +322,9 @@
|
|
|
321
322
|
.digit-text-block-header-content {
|
|
322
323
|
flex-direction: column !important;
|
|
323
324
|
}
|
|
325
|
+
.copy-campaign-popup{
|
|
326
|
+
.digit-popup-heading{
|
|
327
|
+
color: theme(digitv2.lightTheme.primary-2);
|
|
328
|
+
}
|
|
329
|
+
}
|
|
324
330
|
|
|
@@ -679,7 +679,8 @@ tbody {
|
|
|
679
679
|
|
|
680
680
|
.digit-employee-card.campaign-update-container {
|
|
681
681
|
padding: 1.5rem;
|
|
682
|
-
margin:
|
|
682
|
+
margin: 0rem;
|
|
683
|
+
margin-top: 1rem;
|
|
683
684
|
|
|
684
685
|
.header {
|
|
685
686
|
margin-bottom: 1.5rem;
|
|
@@ -714,7 +715,7 @@ tbody {
|
|
|
714
715
|
|
|
715
716
|
p {
|
|
716
717
|
margin: 0;
|
|
717
|
-
margin-bottom:
|
|
718
|
+
margin-bottom: 1rem;
|
|
718
719
|
}
|
|
719
720
|
|
|
720
721
|
.mandatory-date {
|