@djb25/digit-ui-css 1.0.74 → 1.0.76

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": "@djb25/digit-ui-css",
3
- "version": "1.0.74",
3
+ "version": "1.0.76",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.css",
6
6
  "author": "satyam",
@@ -2,8 +2,6 @@
2
2
  display: flex;
3
3
  flex-direction: column;
4
4
  gap: 8px;
5
- height: 620px;
6
- min-height: 620px;
7
5
  width: 1050px;
8
6
  max-width: 100%;
9
7
  overflow-y: auto;
@@ -106,4 +104,4 @@
106
104
  color: #6b7280;
107
105
  font-weight: 500;
108
106
  }
109
- }
107
+ }
@@ -10,14 +10,14 @@
10
10
  }
11
11
 
12
12
  .menu-wrap {
13
- @apply absolute bg-white text-left mb-xs z-30 cursor-pointer;
13
+ @apply absolute bg-white text-left mb-xs z-30 cursor-pointer rounded-md;
14
14
  bottom: 45px;
15
15
  box-shadow: rgba(0, 0, 0, 0.14) 0 8px 10px 1px, rgba(0, 0, 0, 0.12) 0 3px 14px 2px, rgba(0, 0, 0, 0.2) 0 5px 5px -3px;
16
16
  width: calc(100% - 16px);
17
17
  right: 8px;
18
18
 
19
19
  div {
20
- @apply h-12 pl-sm py-md text-body-l text-text-primary;
20
+ @apply p-sm text-body-l rounded-xl text-text-primary;
21
21
 
22
22
  &:hover {
23
23
  @apply bg-grey-mid w-full;
@@ -57,10 +57,6 @@
57
57
  margin-bottom: 30px;
58
58
  @apply fixed bottom-0 bg-white py-sm pr-lg text-right;
59
59
 
60
- div {
61
- width: calc(100% - 16px);
62
- }
63
-
64
60
  .menu-wrap {
65
61
  bottom: 45px;
66
62
  top: unset;
@@ -70,7 +66,7 @@
70
66
  right: 24px;
71
67
 
72
68
  div {
73
- @apply h-12 pl-sm py-md text-body-l text-text-primary;
69
+ @apply text-body-l text-text-primary;
74
70
 
75
71
  &:hover {
76
72
  @apply bg-grey-mid w-full;
@@ -13,6 +13,11 @@
13
13
  .selector-button-border {
14
14
  @apply h-8 bg-border text-center border-b-2 border-input-border border-solid outline-none px-lg;
15
15
 
16
+ &:hover {
17
+ h2 {
18
+ color: #fff;
19
+ }
20
+ }
16
21
  &:focus {
17
22
  @apply outline-none;
18
23
  }
@@ -88,3 +88,24 @@
88
88
  }
89
89
  }
90
90
  }
91
+
92
+ .selected-zones {
93
+ display: flex;
94
+ flex-wrap: wrap;
95
+ gap: 8px;
96
+ margin-top: 12px;
97
+ }
98
+
99
+ .selected-zone-chip {
100
+ display: inline-flex;
101
+ align-items: center;
102
+ padding: 6px 12px;
103
+ background: #eef6ff;
104
+ color: #0b5ed7;
105
+ border: 1px solid #cfe2ff;
106
+ border-radius: 16px;
107
+ font-size: 13px;
108
+ font-weight: 500;
109
+ line-height: 1;
110
+ white-space: nowrap;
111
+ }
package/src/index.scss CHANGED
@@ -110,6 +110,7 @@
110
110
  @import "./pages/citizen/SurveyList.scss";
111
111
  @import "./pages/citizen/updatePropertyNumber.scss";
112
112
  @import "./pages/citizen/citizenDocument.scss";
113
+ @import "./pages/citizen/ekycStatus.scss";
113
114
  @import "./pages/employee/surveys.scss";
114
115
  @import "./digitv2/index.scss";
115
116
  /* @import "./digitv2/typography.scss"; */
@@ -0,0 +1,88 @@
1
+ .ekyc-status-search-card {
2
+ margin-bottom: 24px;
3
+ }
4
+
5
+ .ekyc-status-card-header {
6
+ font-size: 24px;
7
+ font-weight: 700;
8
+ color: #101828;
9
+ margin-bottom: 12px;
10
+ }
11
+
12
+ .ekyc-status-card-text {
13
+ color: #475467;
14
+ margin-bottom: 24px;
15
+ }
16
+
17
+ .ekyc-status-error-msg {
18
+ background: #fef3f2;
19
+ border: 1px solid #fecdca;
20
+ color: #b42318;
21
+ padding: 12px 16px;
22
+ border-radius: 8px;
23
+ margin-top: 24px;
24
+ font-size: 14px;
25
+ }
26
+
27
+ .ekyc-status-results-card {
28
+ margin-top: 24px;
29
+ }
30
+
31
+ .ekyc-status-overview-header {
32
+ display: flex;
33
+ justify-content: space-between;
34
+ align-items: center;
35
+ background: #f8f9fc;
36
+ border: 1px solid #eaecf0;
37
+ border-radius: 8px;
38
+ padding: 16px 20px;
39
+ margin-bottom: 24px;
40
+ }
41
+
42
+ .ekyc-status-label-title {
43
+ font-size: 12px;
44
+ color: #667085;
45
+ text-transform: uppercase;
46
+ font-weight: 600;
47
+ }
48
+
49
+ .ekyc-status-value-text {
50
+ font-size: 18px;
51
+ font-weight: 700;
52
+ color: #101828;
53
+ margin-top: 4px;
54
+ }
55
+
56
+ .ekyc-status-badge {
57
+ padding: 6px 14px;
58
+ border-radius: 16px;
59
+ font-size: 14px;
60
+ font-weight: 600;
61
+
62
+ &.approved {
63
+ background: #ecfdf3;
64
+ color: #027a48;
65
+ }
66
+
67
+ &.rejected {
68
+ background: #fef3f2;
69
+ color: #b42318;
70
+ }
71
+
72
+ &.pending_for_verification, &.pending {
73
+ background: #fffaba;
74
+ color: #b54708;
75
+ }
76
+ }
77
+
78
+ .ekyc-status-details-section {
79
+ border-top: 1px solid #eaecf0;
80
+ padding-top: 24px;
81
+ }
82
+
83
+ .ekyc-status-details-title {
84
+ font-size: 18px;
85
+ font-weight: 600;
86
+ color: #101828;
87
+ margin-bottom: 16px;
88
+ }
@@ -1026,3 +1026,30 @@
1026
1026
  cursor: pointer;
1027
1027
  color: #318ed0 !important;
1028
1028
  }
1029
+
1030
+ .status-search-composer-wrapper {
1031
+ .inbox-container {
1032
+ padding: 0;
1033
+ margin: 0;
1034
+ background: transparent;
1035
+ }
1036
+ .employee-form-content {
1037
+ padding: 0;
1038
+ margin: 0;
1039
+ background: transparent;
1040
+ > *:not(#search-form) {
1041
+ display: none !important;
1042
+ }
1043
+ }
1044
+ #search-form {
1045
+ background: transparent;
1046
+ padding: 0;
1047
+ box-shadow: none;
1048
+ border: none;
1049
+ }
1050
+ .search-complaint-container {
1051
+ padding: 0;
1052
+ background: transparent;
1053
+ }
1054
+ }
1055
+
@@ -256,7 +256,7 @@
256
256
  transition: all 0.2s ease;
257
257
 
258
258
  &:hover {
259
- background-color: #e2e8f0;
259
+ background-color: #00497e;
260
260
  color: #5d6774;
261
261
  }
262
262
 
@@ -265,6 +265,17 @@
265
265
  }
266
266
  }
267
267
 
268
+ .popup-module-action-bar {
269
+ .generic-button {
270
+ &:hover {
271
+ color: #fff !important;
272
+ h2 {
273
+ color: #fff !important;
274
+ }
275
+ }
276
+ }
277
+ }
278
+
268
279
  .clear-search,
269
280
  .clear-search .link-label {
270
281
  @apply border-focus text-focus;