@egovernments/digit-ui-health-css 0.3.3 → 0.3.5
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/CHANGELOG.md +12 -0
- package/dist/index.css +61 -30
- package/dist/index.min.css +2 -2
- package/package.json +1 -1
- package/src/components/microplan.scss +0 -4
- package/src/pages/employee/campaign.scss +22 -9
- package/src/pages/employee/campaignCommon.scss +12 -0
- package/src/pages/employee/campaignCycle.scss +69 -10
- package/src/pages/employee/coreOverride.scss +1 -0
- package/src/pages/employee/healthdss.scss +8 -2
- package/src/pages/employee/index.scss +3 -3
package/CHANGELOG.md
CHANGED
package/dist/index.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* @egovernments/digit-ui-health-css - 0.3.
|
|
2
|
+
* @egovernments/digit-ui-health-css - 0.3.5
|
|
3
3
|
*
|
|
4
4
|
* Copyright (c) 2025 Jagankumar <jagan.kumar@egov.org.in>
|
|
5
5
|
*
|
|
@@ -3254,9 +3254,6 @@ tbody tr:last-child td:last-child .digit-dropdown-employee-select-wrap .digit-dr
|
|
|
3254
3254
|
.mp-hypothesis-label-field.addColumnsScreen .assumption-label {
|
|
3255
3255
|
width: 20%; }
|
|
3256
3256
|
|
|
3257
|
-
.new-columns-screen {
|
|
3258
|
-
width: 37%; }
|
|
3259
|
-
|
|
3260
3257
|
.typography.text-heading-xl, header {
|
|
3261
3258
|
font-family: Roboto Condensed;
|
|
3262
3259
|
font-style: normal;
|
|
@@ -3722,8 +3719,7 @@ tbody tr:last-child td:last-child .digit-dropdown-employee-select-wrap .digit-dr
|
|
|
3722
3719
|
display: flex;
|
|
3723
3720
|
-webkit-box-pack: justify;
|
|
3724
3721
|
-ms-flex-pack: justify;
|
|
3725
|
-
justify-content: space-between;
|
|
3726
|
-
margin-bottom: 1.5rem; }
|
|
3722
|
+
justify-content: space-between; }
|
|
3727
3723
|
.campaign-bulk-upload .campaign-download-template-btn {
|
|
3728
3724
|
font-weight: 700; }
|
|
3729
3725
|
|
|
@@ -4107,7 +4103,8 @@ header {
|
|
|
4107
4103
|
z-index: 0; }
|
|
4108
4104
|
|
|
4109
4105
|
.employee-app-wrapper.digit-home-app-wrapper .ground-container.digit-home-ground {
|
|
4110
|
-
margin-left: .75rem;
|
|
4106
|
+
margin-left: .75rem;
|
|
4107
|
+
margin-bottom: 1.5rem; }
|
|
4111
4108
|
|
|
4112
4109
|
.digit-landing-page-card {
|
|
4113
4110
|
border-radius: .25rem; }
|
|
@@ -4498,6 +4495,9 @@ header {
|
|
|
4498
4495
|
.copy-campaign-popup .digit-popup-children-wrap {
|
|
4499
4496
|
overflow: unset !important; }
|
|
4500
4497
|
|
|
4498
|
+
.campaign-popup-wrap .digit-popup-children-wrap {
|
|
4499
|
+
overflow: visible !important; }
|
|
4500
|
+
|
|
4501
4501
|
.summary-header {
|
|
4502
4502
|
font-size: 2.25rem;
|
|
4503
4503
|
margin-bottom: 1.5rem !important;
|
|
@@ -5044,22 +5044,39 @@ header {
|
|
|
5044
5044
|
width: 21rem;
|
|
5045
5045
|
height: 20rem;
|
|
5046
5046
|
border: 1px;
|
|
5047
|
-
border-radius: .75rem;
|
|
5047
|
+
border-radius: .75rem;
|
|
5048
|
+
display: -webkit-box;
|
|
5049
|
+
display: -ms-flexbox;
|
|
5050
|
+
display: flex;
|
|
5051
|
+
-webkit-box-orient: vertical;
|
|
5052
|
+
-webkit-box-direction: normal;
|
|
5053
|
+
-ms-flex-direction: column;
|
|
5054
|
+
flex-direction: column;
|
|
5055
|
+
-webkit-box-pack: justify;
|
|
5056
|
+
-ms-flex-pack: justify;
|
|
5057
|
+
justify-content: space-between; }
|
|
5048
5058
|
|
|
5049
5059
|
.modules-container {
|
|
5050
|
-
|
|
5060
|
+
grid-gap: 1.5rem;
|
|
5061
|
+
-ms-flex-wrap: wrap;
|
|
5062
|
+
flex-wrap: wrap;
|
|
5063
|
+
-webkit-box-align: stretch;
|
|
5064
|
+
-ms-flex-align: stretch;
|
|
5065
|
+
align-items: stretch;
|
|
5066
|
+
padding: 1rem 1rem 1rem 0;
|
|
5067
|
+
grid-template-columns: repeat(auto-fill, minmax(21rem, 1fr)); }
|
|
5051
5068
|
|
|
5052
5069
|
.modules-container, .modules-feature-container {
|
|
5053
5070
|
display: -webkit-box;
|
|
5054
5071
|
display: -ms-flexbox;
|
|
5055
5072
|
display: flex;
|
|
5073
|
+
gap: 1.5rem; }
|
|
5074
|
+
|
|
5075
|
+
.modules-feature-container {
|
|
5056
5076
|
grid-gap: 1.5rem;
|
|
5057
|
-
gap: 1.5rem;
|
|
5058
5077
|
-webkit-box-align: start;
|
|
5059
5078
|
-ms-flex-align: start;
|
|
5060
|
-
align-items: flex-start;
|
|
5061
|
-
|
|
5062
|
-
.modules-feature-container {
|
|
5079
|
+
align-items: flex-start;
|
|
5063
5080
|
padding: 1rem; }
|
|
5064
5081
|
|
|
5065
5082
|
.campaign-module-button {
|
|
@@ -5109,7 +5126,8 @@ header {
|
|
|
5109
5126
|
margin: 0 0 1rem;
|
|
5110
5127
|
font-family: Roboto;
|
|
5111
5128
|
font-size: [object Object];
|
|
5112
|
-
color: #505a5f;
|
|
5129
|
+
color: #505a5f;
|
|
5130
|
+
word-wrap: break-word; }
|
|
5113
5131
|
|
|
5114
5132
|
.date-container-popUp, .name-container-popUp {
|
|
5115
5133
|
margin-top: .8rem;
|
|
@@ -5298,6 +5316,13 @@ header {
|
|
|
5298
5316
|
.start-header {
|
|
5299
5317
|
color: #0b4b66 !important; }
|
|
5300
5318
|
|
|
5319
|
+
.digit-loader-new.Overlayloader.loader-center {
|
|
5320
|
+
position: fixed;
|
|
5321
|
+
top: 50%;
|
|
5322
|
+
left: 50%;
|
|
5323
|
+
-webkit-transform: translate(-50%, -50%);
|
|
5324
|
+
transform: translate(-50%, -50%); }
|
|
5325
|
+
|
|
5301
5326
|
.formula-label-field {
|
|
5302
5327
|
display: -webkit-box;
|
|
5303
5328
|
display: -ms-flexbox;
|
|
@@ -6820,7 +6845,9 @@ header {
|
|
|
6820
6845
|
-ms-flex-pack: start;
|
|
6821
6846
|
justify-content: flex-start;
|
|
6822
6847
|
grid-gap: 1.5rem;
|
|
6823
|
-
gap: 1.5rem;
|
|
6848
|
+
gap: 1.5rem;
|
|
6849
|
+
-ms-flex-wrap: wrap;
|
|
6850
|
+
flex-wrap: wrap; }
|
|
6824
6851
|
.digit-dss-card .digit-dss-card-parent {
|
|
6825
6852
|
-webkit-box-flex: 1;
|
|
6826
6853
|
-ms-flex: 1;
|
|
@@ -6834,7 +6861,6 @@ header {
|
|
|
6834
6861
|
|
|
6835
6862
|
.digit-loader-new.digit-center-loader {
|
|
6836
6863
|
width: 100%;
|
|
6837
|
-
height: 100%;
|
|
6838
6864
|
display: -webkit-box;
|
|
6839
6865
|
display: -ms-flexbox;
|
|
6840
6866
|
display: flex;
|
|
@@ -6979,9 +7005,11 @@ header {
|
|
|
6979
7005
|
flex-direction: column; }
|
|
6980
7006
|
|
|
6981
7007
|
.digit-stacked-collection-card {
|
|
6982
|
-
width: 33%;
|
|
6983
7008
|
grid-gap: 2rem;
|
|
6984
|
-
gap: 2rem;
|
|
7009
|
+
gap: 2rem;
|
|
7010
|
+
-webkit-box-flex: 1;
|
|
7011
|
+
-ms-flex: 1 1 0px;
|
|
7012
|
+
flex: 1 1 0; }
|
|
6985
7013
|
|
|
6986
7014
|
.digit-dss-options-header-wrapper {
|
|
6987
7015
|
margin-bottom: 2rem;
|
|
@@ -7284,17 +7312,21 @@ header {
|
|
|
7284
7312
|
max-width: auto; }
|
|
7285
7313
|
|
|
7286
7314
|
.digit-chart-row {
|
|
7315
|
+
display: -webkit-box;
|
|
7316
|
+
display: -ms-flexbox;
|
|
7317
|
+
display: flex;
|
|
7287
7318
|
grid-gap: 1.5rem;
|
|
7288
7319
|
gap: 1.5rem;
|
|
7289
7320
|
-webkit-box-align: stretch;
|
|
7290
7321
|
-ms-flex-align: stretch;
|
|
7291
7322
|
align-items: stretch;
|
|
7292
|
-
margin-bottom: 1.5rem;
|
|
7293
|
-
|
|
7294
|
-
|
|
7295
|
-
|
|
7296
|
-
|
|
7297
|
-
|
|
7323
|
+
margin-bottom: 1.5rem;
|
|
7324
|
+
-ms-flex-wrap: wrap;
|
|
7325
|
+
flex-wrap: wrap; }
|
|
7326
|
+
.digit-chart-row .digit-chart-item {
|
|
7327
|
+
-webkit-box-flex: 1;
|
|
7328
|
+
-ms-flex: 1 1 0px;
|
|
7329
|
+
flex: 1 1 0; }
|
|
7298
7330
|
|
|
7299
7331
|
.wrapper-child {
|
|
7300
7332
|
-webkit-box-orient: vertical;
|
|
@@ -7308,10 +7340,12 @@ header {
|
|
|
7308
7340
|
-ms-flex-positive: 1;
|
|
7309
7341
|
flex-grow: 1; }
|
|
7310
7342
|
|
|
7311
|
-
.blocks {
|
|
7343
|
+
.blocks, .wrapper-child {
|
|
7312
7344
|
display: -webkit-box;
|
|
7313
7345
|
display: -ms-flexbox;
|
|
7314
|
-
display: flex;
|
|
7346
|
+
display: flex; }
|
|
7347
|
+
|
|
7348
|
+
.blocks {
|
|
7315
7349
|
margin-bottom: 1.563rem; }
|
|
7316
7350
|
.blocks p:only-child {
|
|
7317
7351
|
font-weight: 700;
|
|
@@ -8221,17 +8255,14 @@ header {
|
|
|
8221
8255
|
margin-left: 0;
|
|
8222
8256
|
margin-right: 0;
|
|
8223
8257
|
padding-right: 0;
|
|
8224
|
-
margin-bottom: 0;
|
|
8225
8258
|
min-height: calc(100vh - 10em); }
|
|
8226
8259
|
.main.digit-home-main .employee-app-wrapper.digit-home-app-wrapper .ground-container.digit-home-ground {
|
|
8227
|
-
padding: 0;
|
|
8228
|
-
margin-bottom: 0; }
|
|
8260
|
+
padding: 0; }
|
|
8229
8261
|
.main.digit-home-main .employee-app-wrapper.digit-home-app-wrapper .ground-container.digit-home-ground .employee-app-container.digit-home-employee-app .ground-container.moduleCardWrapper.gridModuleWrapper.digit-home-moduleCardWrapper {
|
|
8230
8262
|
grid-gap: 1.5rem;
|
|
8231
8263
|
gap: 1.5rem;
|
|
8232
8264
|
margin-top: 1.5rem;
|
|
8233
8265
|
margin-left: 1rem;
|
|
8234
|
-
margin-bottom: 0;
|
|
8235
8266
|
padding: 0;
|
|
8236
8267
|
display: grid !important;
|
|
8237
8268
|
grid-template-columns: repeat(auto-fill, minmax(263px, 1fr)); }
|