@egovernments/digit-ui-health-css 0.2.104 → 0.2.106

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@egovernments/digit-ui-health-css",
3
- "version": "0.2.104",
3
+ "version": "0.2.106",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.css",
6
6
  "author": "Jagankumar <jagan.kumar@egov.org.in>",
@@ -560,7 +560,6 @@
560
560
  width: 100% !important;
561
561
  }
562
562
  .beneficiary-selection-label {
563
- margin-top: 1.5rem;
564
563
  margin-bottom: 0rem;
565
564
  }
566
565
  .selected-card {
@@ -3,6 +3,7 @@
3
3
  .camp-drawer-caption{
4
4
  font-size: 1rem !important;
5
5
  font-weight: 400 !important;
6
+ padding-bottom: 1.5rem;
6
7
  }
7
8
 
8
9
  .camp-app-help-tutorial-popup{
@@ -199,22 +199,36 @@ header {
199
199
  .action-bar-wrap .actionBarClass {
200
200
  z-index: 10;
201
201
  }
202
- .campaign-flow-stepper{
202
+ .campaign-flow-stepper {
203
203
  margin-left: -5.625rem;
204
204
  margin-right: -6.875rem;
205
205
  }
206
- .wbh-header-container{
206
+ .wbh-header-container {
207
207
  margin: 0rem;
208
208
  }
209
- .digit-description{
209
+ .digit-description {
210
210
  display: contents !important;
211
211
  }
212
- .create-campaign-disable{
213
- opacity: .5;
212
+ .create-campaign-disable {
213
+ opacity: 0.5;
214
214
  background: #c5c5c5 !important;
215
215
  }
216
- .date-field-container{
216
+ .date-field-container {
217
217
  .digit-new-date-format {
218
218
  z-index: 0;
219
219
  }
220
220
  }
221
+
222
+ .employee-app-wrapper {
223
+ &.digit-home-app-wrapper {
224
+ .ground-container {
225
+ &.digit-home-ground {
226
+ margin-left: 0.75rem;
227
+ }
228
+ }
229
+ }
230
+ }
231
+
232
+ .digit-landing-page-card {
233
+ border-radius: 0.25rem;
234
+ }
@@ -294,6 +294,7 @@
294
294
  font-size: 24px;
295
295
  color: #505a5f;
296
296
  margin-top: 0.5rem;
297
+ padding-bottom: 1rem;
297
298
  }
298
299
 
299
300
  .header-end {
@@ -959,13 +960,18 @@ tbody {
959
960
  .appConfigLabelField {
960
961
  position: relative;
961
962
  padding: 1rem;
962
- background-color: #fafafa;
963
- border: 1px solid #d6d5d4;
964
- border-radius: 0.5rem;
965
963
  width: 18rem;
966
964
  flex-direction: row;
967
965
  justify-content: space-between;
968
966
  align-items: center;
967
+ margin-bottom: unset;
968
+ }
969
+ .draggableField-cont {
970
+ margin-bottom: 1rem;
971
+ width: fit-content;
972
+ border-radius: 0.5rem;
973
+ border: 1px solid #d6d5d4;
974
+ background-color: #fafafa;
969
975
  }
970
976
  .appConfigLabelField.selected {
971
977
  background-color: #f477381a;
@@ -1034,6 +1040,9 @@ tbody {
1034
1040
  }
1035
1041
  .app-config-add-field-popup {
1036
1042
  width: 35rem !important;
1043
+ .digit-popup-heading {
1044
+ color: theme(digitv2.lightTheme.primary-2);
1045
+ }
1037
1046
  .digit-popup-children-wrap {
1038
1047
  overflow: visible !important;
1039
1048
  }
@@ -1086,11 +1095,15 @@ tbody {
1086
1095
  margin-bottom: unset;
1087
1096
  margin-left: 0.5rem;
1088
1097
  }
1089
- .app-config-checkbox-label.required::after {
1090
- content: "*";
1091
- margin-left: 0.5rem;
1092
- color: #d4351c;
1098
+ .app-config-checkbox-label {
1099
+ display: inline-block;
1100
+
1101
+ &.required::after {
1102
+ content: " *";
1103
+ color: #d4351c;
1104
+ }
1093
1105
  }
1106
+
1094
1107
  .app-preview-field-button {
1095
1108
  width: 100%;
1096
1109
  }
@@ -1135,10 +1148,26 @@ tbody {
1135
1148
  margin-bottom: 0.5rem;
1136
1149
  .tooltip-wrapper {
1137
1150
  .tooltip-content {
1138
- width: auto !important;
1151
+ width: max-content !important;
1139
1152
  }
1140
1153
  }
1141
1154
  }
1142
1155
  .mobile-bezel-child-container {
1143
1156
  height: 90%;
1144
1157
  }
1158
+ .drag-handle {
1159
+ display: grid;
1160
+ grid-template-columns: repeat(2, 4px); /* 2 columns */
1161
+ gap: 4px; /* spacing between dots */
1162
+ width: fit-content;
1163
+ margin: 0 0.5rem;
1164
+ cursor: grab;
1165
+ }
1166
+
1167
+ .drag-handle span {
1168
+ width: 4px;
1169
+ height: 4px;
1170
+ background-color: #d9d9d9;
1171
+ border-radius: 50%;
1172
+ display: block;
1173
+ }