@egovernments/digit-ui-health-css 0.2.60 → 0.2.62
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/dist/index.css +209 -3
- package/dist/index.min.css +2 -2
- package/package.json +1 -1
- package/src/pages/employee/campaign.scss +76 -18
- package/src/pages/employee/index.scss +149 -19
package/dist/index.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* @egovernments/digit-ui-health-css - 0.2.
|
|
2
|
+
* @egovernments/digit-ui-health-css - 0.2.62
|
|
3
3
|
*
|
|
4
4
|
* Copyright (c) 2025 Jagankumar <jagan.kumar@egov.org.in>
|
|
5
5
|
*
|
|
@@ -4339,8 +4339,58 @@ header {
|
|
|
4339
4339
|
.digit-label-field-pair.multiselect-label-field > div:first-of-type {
|
|
4340
4340
|
width: 69%; }
|
|
4341
4341
|
|
|
4342
|
+
.date-style {
|
|
4343
|
+
max-width: 37.5rem;
|
|
4344
|
+
grid-gap: 1rem;
|
|
4345
|
+
gap: 1rem; }
|
|
4346
|
+
|
|
4347
|
+
.app-preview, .date-style {
|
|
4348
|
+
display: -webkit-box;
|
|
4349
|
+
display: -ms-flexbox;
|
|
4350
|
+
display: flex; }
|
|
4351
|
+
|
|
4352
|
+
.app-preview {
|
|
4353
|
+
width: 25rem;
|
|
4354
|
+
height: 40rem;
|
|
4355
|
+
overflow-y: auto;
|
|
4356
|
+
border: 0 solid #ccc;
|
|
4357
|
+
border-radius: 1rem;
|
|
4358
|
+
background-color: #fff;
|
|
4359
|
+
-webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
|
|
4360
|
+
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
|
|
4361
|
+
margin: 20px auto;
|
|
4362
|
+
font-family: Arial,sans-serif; }
|
|
4363
|
+
.app-preview .digit-card-header {
|
|
4364
|
+
color: #0b4b66;
|
|
4365
|
+
font-size: 2rem;
|
|
4366
|
+
font-weight: 700; }
|
|
4367
|
+
.app-preview .digit-card-text {
|
|
4368
|
+
color: #787878;
|
|
4369
|
+
font-weight: 400;
|
|
4370
|
+
font-size: .875rem;
|
|
4371
|
+
line-height: 137%; }
|
|
4372
|
+
|
|
4373
|
+
.mobile-top {
|
|
4374
|
+
background-color: #0b4b66;
|
|
4375
|
+
height: 4rem;
|
|
4376
|
+
display: -webkit-box;
|
|
4377
|
+
display: -ms-flexbox;
|
|
4378
|
+
display: flex;
|
|
4379
|
+
-webkit-box-align: center;
|
|
4380
|
+
-ms-flex-align: center;
|
|
4381
|
+
align-items: center;
|
|
4382
|
+
padding: 0 1rem;
|
|
4383
|
+
color: #fff;
|
|
4384
|
+
font-size: 1.5rem;
|
|
4385
|
+
font-weight: 700;
|
|
4386
|
+
width: 100%;
|
|
4387
|
+
-webkit-box-sizing: border-box;
|
|
4388
|
+
box-sizing: border-box;
|
|
4389
|
+
border-top-left-radius: 1rem;
|
|
4390
|
+
border-top-right-radius: 1rem; }
|
|
4391
|
+
|
|
4342
4392
|
.appConfiglabelField {
|
|
4343
|
-
padding:
|
|
4393
|
+
padding: 1rem;
|
|
4344
4394
|
background-color: #eee;
|
|
4345
4395
|
border: 1px solid #d6d5d4;
|
|
4346
4396
|
border-radius: .5rem; }
|
|
@@ -4359,7 +4409,8 @@ header {
|
|
|
4359
4409
|
margin-bottom: 2rem; }
|
|
4360
4410
|
|
|
4361
4411
|
.appConfiglabelField-label {
|
|
4362
|
-
width: 25rem;
|
|
4412
|
+
width: 25rem;
|
|
4413
|
+
margin-bottom: .5rem; }
|
|
4363
4414
|
|
|
4364
4415
|
.app-config-actionBar {
|
|
4365
4416
|
z-index: 9999; }
|
|
@@ -4493,6 +4544,18 @@ header {
|
|
|
4493
4544
|
.campaign-view-tag {
|
|
4494
4545
|
margin-left: 1rem; }
|
|
4495
4546
|
|
|
4547
|
+
.module-card {
|
|
4548
|
+
width: 20rem;
|
|
4549
|
+
height: 16.6rem;
|
|
4550
|
+
border: 1px;
|
|
4551
|
+
border-radius: .75rem; }
|
|
4552
|
+
|
|
4553
|
+
.modules-container {
|
|
4554
|
+
display: grid;
|
|
4555
|
+
grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
|
|
4556
|
+
grid-gap: 1.5rem;
|
|
4557
|
+
padding: 1rem; }
|
|
4558
|
+
|
|
4496
4559
|
.formula-label-field {
|
|
4497
4560
|
display: -webkit-box;
|
|
4498
4561
|
display: -ms-flexbox;
|
|
@@ -6648,3 +6711,146 @@ tbody tr:nth-child(odd) {
|
|
|
6648
6711
|
min-width: -webkit-fit-content;
|
|
6649
6712
|
min-width: -moz-fit-content;
|
|
6650
6713
|
min-width: fit-content; }
|
|
6714
|
+
|
|
6715
|
+
.configure-app-tabs .configure-app-tab-head {
|
|
6716
|
+
border: 1px solid #d6d5d4;
|
|
6717
|
+
border-radius: .25rem;
|
|
6718
|
+
padding: .5rem 1rem;
|
|
6719
|
+
min-width: 2.5rem;
|
|
6720
|
+
height: 2rem;
|
|
6721
|
+
background-color: #fff;
|
|
6722
|
+
width: 10rem; }
|
|
6723
|
+
|
|
6724
|
+
.configure-app-tabs .configure-app-tab-head.active {
|
|
6725
|
+
background-color: #c84c0e;
|
|
6726
|
+
font-weight: 700;
|
|
6727
|
+
color: #fff; }
|
|
6728
|
+
|
|
6729
|
+
.digit-card-component.appConfigScreenCard {
|
|
6730
|
+
width: 50%;
|
|
6731
|
+
margin: 0 1.5rem;
|
|
6732
|
+
border-radius: .75rem; }
|
|
6733
|
+
|
|
6734
|
+
.app-configure-action-button {
|
|
6735
|
+
border-radius: .75rem;
|
|
6736
|
+
padding: 1.25rem 3.8rem;
|
|
6737
|
+
height: 4rem;
|
|
6738
|
+
width: 15rem;
|
|
6739
|
+
min-width: 12.5rem; }
|
|
6740
|
+
|
|
6741
|
+
.app-configuration-side-panel {
|
|
6742
|
+
width: 23rem;
|
|
6743
|
+
background-color: #fff; }
|
|
6744
|
+
|
|
6745
|
+
.appConfigHeaderLabelField {
|
|
6746
|
+
-webkit-box-orient: vertical;
|
|
6747
|
+
-webkit-box-direction: normal;
|
|
6748
|
+
-ms-flex-direction: column;
|
|
6749
|
+
flex-direction: column;
|
|
6750
|
+
grid-gap: .5rem;
|
|
6751
|
+
gap: .5rem; }
|
|
6752
|
+
|
|
6753
|
+
.appConfigLabelField {
|
|
6754
|
+
padding: 1rem;
|
|
6755
|
+
background-color: #fafafa;
|
|
6756
|
+
border: 1px solid #d6d5d4;
|
|
6757
|
+
border-radius: .5rem;
|
|
6758
|
+
width: 18rem;
|
|
6759
|
+
-webkit-box-orient: horizontal;
|
|
6760
|
+
-webkit-box-direction: normal;
|
|
6761
|
+
-ms-flex-direction: row;
|
|
6762
|
+
flex-direction: row;
|
|
6763
|
+
-webkit-box-pack: justify;
|
|
6764
|
+
-ms-flex-pack: justify;
|
|
6765
|
+
justify-content: space-between;
|
|
6766
|
+
-webkit-box-align: center;
|
|
6767
|
+
-ms-flex-align: center;
|
|
6768
|
+
align-items: center; }
|
|
6769
|
+
|
|
6770
|
+
.appConfigLabelField.selected {
|
|
6771
|
+
background-color: rgba(244, 119, 56, 0.10196);
|
|
6772
|
+
border: 1px solid #c84c0e; }
|
|
6773
|
+
|
|
6774
|
+
.app-config-field-tag {
|
|
6775
|
+
background-color: rgba(0, 87, 189, 0.05098) !important;
|
|
6776
|
+
border: .0031rem solid #0b4b66;
|
|
6777
|
+
color: #0b4b66;
|
|
6778
|
+
font-size: .75rem;
|
|
6779
|
+
font-weight: 400; }
|
|
6780
|
+
|
|
6781
|
+
.app-configure-drawer-footer-button {
|
|
6782
|
+
margin: auto; }
|
|
6783
|
+
|
|
6784
|
+
.app-configure-drawer-footer-container {
|
|
6785
|
+
display: -webkit-box;
|
|
6786
|
+
display: -ms-flexbox;
|
|
6787
|
+
display: flex;
|
|
6788
|
+
-webkit-box-orient: vertical;
|
|
6789
|
+
-webkit-box-direction: normal;
|
|
6790
|
+
-ms-flex-direction: column;
|
|
6791
|
+
flex-direction: column;
|
|
6792
|
+
grid-gap: 1rem;
|
|
6793
|
+
gap: 1rem;
|
|
6794
|
+
-webkit-box-align: center;
|
|
6795
|
+
-ms-flex-align: center;
|
|
6796
|
+
align-items: center; }
|
|
6797
|
+
.app-configure-drawer-footer-container .app-configure-drawer-footer-button {
|
|
6798
|
+
width: 100%; }
|
|
6799
|
+
|
|
6800
|
+
.appConfigLabelField-label {
|
|
6801
|
+
margin-bottom: .5rem;
|
|
6802
|
+
font-size: 1rem;
|
|
6803
|
+
font-weight: 700;
|
|
6804
|
+
color: #787878; }
|
|
6805
|
+
|
|
6806
|
+
.app-preview-action-button {
|
|
6807
|
+
margin-top: auto;
|
|
6808
|
+
margin-bottom: 0;
|
|
6809
|
+
width: 100%;
|
|
6810
|
+
text-align: center; }
|
|
6811
|
+
|
|
6812
|
+
.app-preview-app-config-drawer-action-button {
|
|
6813
|
+
display: -webkit-box;
|
|
6814
|
+
display: -ms-flexbox;
|
|
6815
|
+
display: flex;
|
|
6816
|
+
-webkit-box-orient: vertical;
|
|
6817
|
+
-webkit-box-direction: normal;
|
|
6818
|
+
-ms-flex-direction: column;
|
|
6819
|
+
flex-direction: column;
|
|
6820
|
+
grid-gap: .5rem;
|
|
6821
|
+
gap: .5rem; }
|
|
6822
|
+
|
|
6823
|
+
.app-preview-selected {
|
|
6824
|
+
margin: 10px -1rem;
|
|
6825
|
+
padding: 1rem;
|
|
6826
|
+
background-color: rgba(200, 76, 14, 0.2);
|
|
6827
|
+
border: 1px solid rgba(200, 76, 14, 0.2);
|
|
6828
|
+
border-radius: 1rem; }
|
|
6829
|
+
|
|
6830
|
+
.app-config-header {
|
|
6831
|
+
color: #0b4b66 !important;
|
|
6832
|
+
font-weight: 700;
|
|
6833
|
+
font-size: 2.5rem; }
|
|
6834
|
+
|
|
6835
|
+
.app-config-drawer-button, .appConfigLabelField-label-container {
|
|
6836
|
+
width: 100%; }
|
|
6837
|
+
|
|
6838
|
+
.app-preview-sub-heading {
|
|
6839
|
+
font-family: Roboto; }
|
|
6840
|
+
|
|
6841
|
+
.app-config-add-field-popup {
|
|
6842
|
+
width: 35rem !important; }
|
|
6843
|
+
.app-config-add-field-popup .digit-popup-children-wrap {
|
|
6844
|
+
overflow: visible !important; }
|
|
6845
|
+
.app-config-add-field-popup .digit-label-field-pair {
|
|
6846
|
+
display: -webkit-box;
|
|
6847
|
+
display: -ms-flexbox;
|
|
6848
|
+
display: flex;
|
|
6849
|
+
-webkit-box-align: center;
|
|
6850
|
+
-ms-flex-align: center;
|
|
6851
|
+
align-items: center; }
|
|
6852
|
+
.app-config-add-field-popup .digit-label-field-pair .product-label-field {
|
|
6853
|
+
width: 15rem !important; }
|
|
6854
|
+
|
|
6855
|
+
.app-config-drawer-action-divider {
|
|
6856
|
+
margin-top: auto; }
|