@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/dist/index.css CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * @egovernments/digit-ui-health-css - 0.2.104
2
+ * @egovernments/digit-ui-health-css - 0.2.106
3
3
  *
4
4
  * Copyright (c) 2025 Jagankumar <jagan.kumar@egov.org.in>
5
5
  *
@@ -4098,9 +4098,16 @@ header {
4098
4098
  .date-field-container .digit-new-date-format {
4099
4099
  z-index: 0; }
4100
4100
 
4101
+ .employee-app-wrapper.digit-home-app-wrapper .ground-container.digit-home-ground {
4102
+ margin-left: .75rem; }
4103
+
4104
+ .digit-landing-page-card {
4105
+ border-radius: .25rem; }
4106
+
4101
4107
  .camp-drawer-caption {
4102
4108
  font-size: 1rem !important;
4103
- font-weight: 400 !important; }
4109
+ font-weight: 400 !important;
4110
+ padding-bottom: 1.5rem; }
4104
4111
 
4105
4112
  .camp-app-help-tutorial-popup {
4106
4113
  bottom: 0;
@@ -5045,7 +5052,6 @@ header {
5045
5052
  width: 100% !important; }
5046
5053
 
5047
5054
  .beneficiary-selection-label {
5048
- margin-top: 1.5rem;
5049
5055
  margin-bottom: 0; }
5050
5056
 
5051
5057
  .selected-card {
@@ -7117,7 +7123,8 @@ header {
7117
7123
  font-weight: 700;
7118
7124
  font-size: 24px;
7119
7125
  color: #505a5f;
7120
- margin-top: .5rem; }
7126
+ margin-top: .5rem;
7127
+ padding-bottom: 1rem; }
7121
7128
 
7122
7129
  .header-end {
7123
7130
  margin-right: 1rem; }
@@ -7632,9 +7639,6 @@ tbody tr:nth-child(odd) {
7632
7639
  .appConfigLabelField {
7633
7640
  position: relative;
7634
7641
  padding: 1rem;
7635
- background-color: #fafafa;
7636
- border: 1px solid #d6d5d4;
7637
- border-radius: .5rem;
7638
7642
  width: 18rem;
7639
7643
  -webkit-box-orient: horizontal;
7640
7644
  -webkit-box-direction: normal;
@@ -7645,7 +7649,17 @@ tbody tr:nth-child(odd) {
7645
7649
  justify-content: space-between;
7646
7650
  -webkit-box-align: center;
7647
7651
  -ms-flex-align: center;
7648
- align-items: center; }
7652
+ align-items: center;
7653
+ margin-bottom: unset; }
7654
+
7655
+ .draggableField-cont {
7656
+ margin-bottom: 1rem;
7657
+ width: -webkit-fit-content;
7658
+ width: -moz-fit-content;
7659
+ width: fit-content;
7660
+ border-radius: .5rem;
7661
+ border: 1px solid #d6d5d4;
7662
+ background-color: #fafafa; }
7649
7663
 
7650
7664
  .appConfigLabelField.selected {
7651
7665
  background-color: rgba(244, 119, 56, 0.10196);
@@ -7728,6 +7742,8 @@ tbody tr:nth-child(odd) {
7728
7742
 
7729
7743
  .app-config-add-field-popup {
7730
7744
  width: 35rem !important; }
7745
+ .app-config-add-field-popup .digit-popup-heading {
7746
+ color: #0b4b66; }
7731
7747
  .app-config-add-field-popup .digit-popup-children-wrap {
7732
7748
  overflow: visible !important; }
7733
7749
  .app-config-add-field-popup .digit-label-field-pair {
@@ -7784,10 +7800,11 @@ tbody tr:nth-child(odd) {
7784
7800
  margin-bottom: unset;
7785
7801
  margin-left: .5rem; }
7786
7802
 
7787
- .app-config-checkbox-label.required:after {
7788
- content: "*";
7789
- margin-left: .5rem;
7790
- color: #d4351c; }
7803
+ .app-config-checkbox-label {
7804
+ display: inline-block; }
7805
+ .app-config-checkbox-label.required:after {
7806
+ content: " *";
7807
+ color: #d4351c; }
7791
7808
 
7792
7809
  .app-preview-field-button {
7793
7810
  width: 100%; }
@@ -7837,7 +7854,28 @@ tbody tr:nth-child(odd) {
7837
7854
  .icon-wrapper.app-config-tooltip {
7838
7855
  margin-bottom: .5rem; }
7839
7856
  .icon-wrapper.app-config-tooltip .tooltip-wrapper .tooltip-content {
7840
- width: auto !important; }
7857
+ width: -webkit-max-content !important;
7858
+ width: -moz-max-content !important;
7859
+ width: max-content !important; }
7841
7860
 
7842
7861
  .mobile-bezel-child-container {
7843
7862
  height: 90%; }
7863
+
7864
+ .drag-handle {
7865
+ display: grid;
7866
+ grid-template-columns: repeat(2, 4px);
7867
+ grid-gap: 4px;
7868
+ gap: 4px;
7869
+ width: -webkit-fit-content;
7870
+ width: -moz-fit-content;
7871
+ width: fit-content;
7872
+ margin: 0 .5rem;
7873
+ cursor: -webkit-grab;
7874
+ cursor: grab; }
7875
+
7876
+ .drag-handle span {
7877
+ width: 4px;
7878
+ height: 4px;
7879
+ background-color: #d9d9d9;
7880
+ border-radius: 50%;
7881
+ display: block; }