@entit/digit-ui-css 2.0.0 → 2.0.1

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.
Files changed (55) hide show
  1. package/dist/index.css +409 -2230
  2. package/dist/index.min.css +1 -1
  3. package/package.json +2 -2
  4. package/src/components/CardBasedOptions.scss +39 -105
  5. package/src/components/CitizenHomeCard.scss +35 -46
  6. package/src/components/PageBasedInput.scss +19 -27
  7. package/src/components/PropertySearchForm.scss +2 -2
  8. package/src/components/TimeLine.scss +2 -2
  9. package/src/components/bannercomponents.scss +3 -9
  10. package/src/components/body.scss +4 -32
  11. package/src/components/buttons.scss +0 -3
  12. package/src/components/card.scss +25 -48
  13. package/src/components/charts.scss +1 -134
  14. package/src/components/checkbox.scss +4 -35
  15. package/src/components/checkpoint.scss +1 -3
  16. package/src/components/datatable.scss +6 -10
  17. package/src/components/filters.scss +3 -3
  18. package/src/components/hoc/InboxComposer.scss +15 -108
  19. package/src/components/info-banner.scss +2 -3
  20. package/src/components/languageSelector.scss +7 -8
  21. package/src/components/multiLink.scss +0 -15
  22. package/src/components/navbar.scss +12 -210
  23. package/src/components/radiobtn.scss +0 -12
  24. package/src/components/searchAction.scss +1 -1
  25. package/src/components/selectdropdown.scss +2 -28
  26. package/src/components/statushighlight.scss +1 -1
  27. package/src/components/summary.scss +0 -3
  28. package/src/components/table.scss +3 -14
  29. package/src/components/textfields.scss +1 -19
  30. package/src/components/topbar.scss +7 -21
  31. package/src/components/uploadcomponents.scss +0 -18
  32. package/src/index.scss +39 -263
  33. package/src/pages/citizen/CitizenEngagementNotificationWrapper.scss +5 -8
  34. package/src/pages/citizen/DocumentList.scss +2 -2
  35. package/src/pages/citizen/HomePageWrapper.scss +84 -148
  36. package/src/pages/citizen/container.scss +1 -1
  37. package/src/pages/employee/cardfix.scss +1 -2
  38. package/src/pages/employee/container.scss +13 -13
  39. package/src/pages/employee/dss.scss +9 -142
  40. package/src/pages/employee/iframe.scss +1 -1
  41. package/src/pages/employee/inbox.scss +49 -259
  42. package/src/pages/employee/index.scss +75 -363
  43. package/src/pages/employee/login.scss +21 -96
  44. package/src/pages/employee/popupmodule.scss +0 -13
  45. package/src/pages/employee/scroll-table.scss +1 -1
  46. package/src/pages/employee/surveys.scss +6 -5
  47. package/svg/check.svg +1 -1
  48. package/svg/starempty.svg +1 -1
  49. package/svg/starfilled.svg +1 -1
  50. package/src/components/FAQ.scss +0 -64
  51. package/src/components/howItWorks.scss +0 -71
  52. package/src/components/plusMinus.scss +0 -15
  53. package/src/components/staticDynamicMessages.scss +0 -107
  54. package/src/components/staticSideBar.scss +0 -27
  55. package/src/components/toggleSwitch.scss +0 -41
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@entit/digit-ui-css",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.css",
6
6
  "engines": {
@@ -22,7 +22,7 @@
22
22
  ],
23
23
  "style": "./dist/index.css",
24
24
  "dependencies": {
25
- "@entit/digit-ui-css": "2.0.0",
25
+ "@entit/digit-ui-css": "9.6.1",
26
26
  "node-sass": "4.14.1",
27
27
  "normalize.css": "8.0.1",
28
28
  "postcss-scss": "3.0.5",
@@ -1,111 +1,45 @@
1
1
  .CardBasedOptions{
2
- box-shadow: #32325d14 0px 50px 100px -20px, rgb(0 0 0 / 18%) 0px 30px 60px -30px, #0a254038 0px -2px 6px 0px inset;
3
- border-radius: 12px;
4
- padding: 0px !important;
5
- @apply bg-white mb-md px-sm py-md mx-sm rounded w-full;
6
- .headContent{
7
- @apply flex justify-between mb-lg;
8
- h2{
9
- @apply text-heading-s font-bold text-text-primary;
10
- }
11
- p{
12
- @apply text-link text-primary-main font-medium cursor-pointer;
13
- }
14
- }
2
+ box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.16);
3
+ @apply bg-white mb-md px-sm py-md mx-sm rounded w-full;
4
+ .headContent{
5
+ @apply flex justify-between mb-lg;
6
+ h2{
7
+ @apply text-heading-s font-bold text-text-primary;
8
+ }
9
+ p{
10
+ @apply text-link text-primary-main font-medium cursor-pointer;
11
+ }
12
+ }
15
13
 
16
- .mainContent{
17
- @apply flex justify-evenly;
18
-
19
- .CardBasedOptionsMainChildOption{
20
- width: 25%;
21
-
22
- @apply text-center;
23
- margin: auto;
24
- .ChildOptionImageWrapper{
25
- margin: auto !important;
26
- background: rgba(244, 119, 56, 0.12);
27
- mix-blend-mode: normal;
28
- padding-top: 14px;
29
- @apply h-12 w-12 rounded-full cursor-pointer;
30
- svg{
31
- height: 20px;
32
- width: 20px;
33
- fill: #a82227;
34
- margin: auto;
35
- }
36
- }
37
- .ChildOptionName{
38
- font-size: 12px;
39
- line-height: 14px;
40
- }
41
- }
42
- }
14
+ .mainContent{
15
+ @apply flex justify-evenly;
16
+ .CardBasedOptionsMainChildOption{
17
+ width: 25%;
18
+ @apply text-center;
19
+ .ChildOptionImageWrapper{
20
+ margin: auto !important;
21
+ background: rgba(244, 119, 56, 0.12);
22
+ mix-blend-mode: normal;
23
+ padding-top: 14px;
24
+ @apply h-12 w-12 rounded-full cursor-pointer;
25
+ svg{
26
+ height: 20px;
27
+ width: 20px;
28
+ fill: #F47738;
29
+ margin: auto;
30
+ }
31
+ }
32
+ .ChildOptionName{
33
+ font-size: 12px;
34
+ line-height: 14px;
35
+ }
36
+ }
37
+ }
43
38
  }
44
39
 
45
40
  @screen dt{
46
- .CardBasedOptions{
47
- width: calc( 50% - 16px );
48
- padding: 0px !important;
49
- height: 250px !important;
50
- }
51
- }
52
- .citizen .ServicesSection .CardBasedOptions:nth-child(odd){
53
- .employeeCustomCard{
54
- background-image: url("https://in-egov-assets.s3.ap-south-1.amazonaws.com/images/top-red-card.png");
55
- background-size: cover
56
- }
57
- }
58
- .citizen .ServicesSection .CardBasedOptions:nth-child(even){
59
- .employeeCustomCard{
60
- background-image: url("https://in-egov-assets.s3.ap-south-1.amazonaws.com/images/top-green-card.png");
61
- background-size: cover
62
- }
63
- }
64
- .citizen .employeeCustomCard {
65
- border-radius: 10px;
66
- background-image: url(https://in-egov-assets.s3.ap-south-1.amazonaws.com/images/top-red-card.png);
67
- background-size: cover;
68
- .employeeCustomCard {
69
- border-radius: 10px;
70
- background-image: url(https://in-egov-assets.s3.ap-south-1.amazonaws.com/images/top-red-card.png);
71
- background-size: cover;
72
- }
73
- }
74
- .employee-card-banner{
75
- background-color: white;
76
- width: 88%;
77
- height: 60%;
78
- bottom: 0px;
79
- position: absolute;
80
- margin-bottom: -10%;
81
- left: 6%;
82
- box-shadow: 1px 5px 6px 0px #e3e4e3;
83
- border-radius: 10px;
84
- }
85
- .citizen .employee-card-banner{
86
- margin-bottom: -5% !important;
87
- height: 65% !important;
88
- }
89
- .text-employee-card{
90
- font-size: 1.5rem;
91
- font-weight: 700;
92
- font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
93
- position: absolute;
94
- top:10%;
95
- padding-left: 10%;
96
- color: white !important;
97
-
98
- }
99
- .citizen .employee-card-banner .citizenAllServiceGrid{
100
- display: flex-root !important;
101
- height: 100% !important;
102
- }
103
-
104
- @media screen and (min-width: 300px) {
105
- .CardBasedOptions {
106
- height: 200px;
107
- }
108
- .employeeCustomCard{
109
- font-size: 1rem;
110
- }
41
+ .CardBasedOptions{
42
+ width: calc( 50% - 16px );
43
+ @apply p-md;
44
+ }
111
45
  }
@@ -1,58 +1,47 @@
1
1
  .CitizenHomeCard{
2
2
 
3
- @apply bg-white mx-md p-md mb-lg;
3
+ @apply bg-white mx-md p-md mb-lg;
4
4
 
5
- .header{
6
- @apply flex font-bold text-heading-l text-text-primary justify-between pb-sm;
5
+ .header{
6
+ @apply flex font-bold text-heading-l text-text-primary justify-between pb-sm;
7
7
 
8
- svg{
9
- width: 33px;
10
- height: 33px;
11
- }
12
- }
8
+ svg{
9
+ width: 33px;
10
+ height: 33px;
11
+ }
12
+ }
13
13
 
14
- .links{
15
-
16
- @apply text-heading-s text-primary-main;
14
+ .links{
15
+ @apply text-heading-s text-primary-main;
17
16
 
18
- a{
19
- @apply block pb-sm;
20
- }
21
- }
17
+ a{
18
+ @apply block pb-sm;
19
+ }
20
+ }
22
21
  }
23
22
 
24
23
  @screen dt{
25
24
 
26
- .citizenAllServiceGrid{
27
- display: flex-root !important;
28
- @apply grid grid-cols-2 gap-4;
29
- }
30
- .links{
31
- display: grid;
32
- grid-template-columns: repeat(4, minmax(0, 1fr));
33
- grid-gap: 1px;
34
- gap: 1px;
35
- }
36
-
37
- .CitizenHomeCard{
38
- padding: 16px !important;
39
- margin-right:16px !important;
40
- display:block !important;
41
- box-shadow: rgb(50 50 93 / 18%) 0px 50px 100px -20px, rgb(0 0 0 / 16%) 0px 30px 60px -30px, rgb(10 37 64 / 17%) 0px -2px 6px 0px inset;
42
- @apply inline-block mr-lg p-lg align-top;
43
- .header{
44
- @apply pb-lg text-heading-l-dt;
45
- svg{
46
- @apply w-12 h-12;
47
- }
25
+ .citizenAllServiceGrid{
26
+ @apply grid grid-cols-2 gap-4;
48
27
  }
49
-
50
- .links{
51
-
52
- a{
53
-
54
- @apply pb-md
55
- }
56
- }
57
- }
28
+
29
+ .CitizenHomeCard{
30
+
31
+ min-width: 40%;
32
+ margin-left: 0;
33
+ @apply inline-block mr-lg p-lg align-top;
34
+ .header{
35
+ @apply pb-lg text-heading-l-dt;
36
+ svg{
37
+ @apply w-12 h-12;
38
+ }
39
+ }
40
+
41
+ .links{
42
+ a{
43
+ @apply pb-md
44
+ }
45
+ }
46
+ }
58
47
  }
@@ -1,31 +1,23 @@
1
- .PageBasedInputWrapper {
2
- .SubmitBar {
3
- z-index: 60;
4
- @apply p-sm fixed w-full bottom-0 left-0 text-right bg-white;
5
- }
6
- .SubmitBarInCardInDesktopView {
7
- @apply hidden;
8
- }
9
- label {
10
- margin-left: 0 !important;
11
- }
12
- }
13
-
14
- @screen dt {
15
- .PageBasedInputWrapper {
16
- .SubmitBar {
17
- @apply hidden;
18
- }
19
- .SubmitBarInCardInDesktopView {
20
- @apply block;
21
- position:relative;
22
- background-color: #fff0;
1
+ .PageBasedInputWrapper{
2
+ .SubmitBar{
3
+ z-index: 60;
4
+ @apply p-sm fixed w-full bottom-0 left-0 text-right bg-white;
23
5
  }
24
- .card {
25
- max-width: 960px;
6
+ .SubmitBarInCardInDesktopView{
7
+ @apply hidden;
26
8
  }
27
- button {
28
- max-width: 240px;
9
+ label{
10
+ margin-left: 0 !important;
29
11
  }
30
- }
31
12
  }
13
+
14
+ @screen dt{
15
+ .PageBasedInputWrapper{
16
+ .SubmitBar{
17
+ @apply hidden;
18
+ }
19
+ .SubmitBarInCardInDesktopView{
20
+ @apply block;
21
+ }
22
+ }
23
+ }
@@ -24,10 +24,10 @@
24
24
  font-weight: 400;
25
25
  }
26
26
  .selected {
27
- color: #a82227;
27
+ color: #f47738;
28
28
  font-weight: 700;
29
29
  padding-bottom: 10px;
30
- border-bottom: 2px solid #a82227;
30
+ border-bottom: 2px solid #f47738;
31
31
  }
32
32
  span {
33
33
  margin-right: 20px;
@@ -39,8 +39,8 @@
39
39
  }
40
40
 
41
41
  .active {
42
- background-color: #a82227;
43
- border-color: #a82227;
42
+ background-color: #F47738;
43
+ border-color: #F47738;
44
44
  }
45
45
  }
46
46
 
@@ -62,7 +62,7 @@
62
62
 
63
63
  @screen dt {
64
64
  .success-wrap {
65
- width: calc(100%);
65
+ width: calc(100% + 284px);
66
66
  header {
67
67
  @apply text-heading-xl-dt;
68
68
  }
@@ -75,7 +75,7 @@
75
75
  }
76
76
 
77
77
  .error-wrap {
78
- width: calc(100%);
78
+ width: calc(100% + 284px);
79
79
  header {
80
80
  @apply text-heading-xl-dt;
81
81
  }
@@ -111,7 +111,7 @@
111
111
  .banner {
112
112
  @apply flex justify-center items-center;
113
113
  height: calc(100vh - 80px);
114
- position: relative;
114
+ background: linear-gradient(rgba(11,75,102,0.8), rgba(11,75,102,0.8)), var(--banner-url) center center;
115
115
 
116
116
  .bannerCard {
117
117
  min-width: 400px;
@@ -129,9 +129,3 @@
129
129
  margin-bottom: 24px;
130
130
  }
131
131
  }
132
-
133
- .banner-container {
134
- flex-direction: column;
135
- justify-content: center;
136
- align-items: center !important;
137
- }
@@ -4,14 +4,10 @@ body {
4
4
 
5
5
  .body-container {
6
6
  @apply bg-grey-bg h-full min-h-screen overflow-x-hidden;
7
- position: relative !important;
8
-
9
-
10
7
  }
11
8
 
12
9
  .navbar {
13
10
  @apply text-white bg-secondary p-md w-full mb-md;
14
- background: linear-gradient(to right, #feeee7, #a82227,#feeee7) !important;
15
11
  img {
16
12
  height: 24px;
17
13
  }
@@ -25,7 +21,7 @@ body {
25
21
  }*/
26
22
 
27
23
  .h1 {
28
- @apply text-heading-l text-text-primary font-bold mb-md ml-md;
24
+ @apply text-heading-l text-text-primary font-bold mb-md ml-md ;
29
25
  }
30
26
 
31
27
  .link-label {
@@ -54,7 +50,6 @@ body {
54
50
  color: #505a5f;
55
51
  display: flex;
56
52
  margin-bottom: 10px;
57
- flex-wrap: wrap
58
53
  }
59
54
  .bread-crumb--item {
60
55
  margin-left: 5px;
@@ -96,25 +91,9 @@ body {
96
91
  }
97
92
 
98
93
  .app-container {
99
- width: 100%;
100
- form {
101
- .card {
102
- max-width: 960px;
103
- h2 {
104
- text-align: left;
105
- }
106
- .field-container {
107
- max-width: 540px;
108
- }
109
- button {
110
- max-width: 240px;
111
- }
112
- .input-otp-wrap,
113
- .card-text-button {
114
- text-align: left;
115
- }
116
- }
117
- }
94
+ width: 960px;
95
+ margin-left: 8px;
96
+ margin-right: auto;
118
97
  }
119
98
 
120
99
  .h1 {
@@ -137,11 +116,4 @@ body {
137
116
 
138
117
  .body-container::-webkit-scrollbar {
139
118
  display: none;
140
- }
141
- .audit-card {
142
- width: 80%;
143
- margin-left: -21%;
144
- margin-right: -27%;
145
- max-height: 120px;
146
- margin-top: 90px;
147
119
  }
@@ -45,6 +45,3 @@
45
45
  @apply font-rc font-medium text-legend text-white;
46
46
  }
47
47
  }
48
- .submit-bar:focus {
49
- @apply outline-none !important;
50
- }
@@ -1,7 +1,6 @@
1
1
  .card {
2
2
  @apply bg-white m-sm px-md pt-md pb-lg shadow-card;
3
3
  border-radius: 4px;
4
- max-width: 960px;
5
4
 
6
5
  .card-header {
7
6
  @apply text-text-primary text-heading-xl font-bold font-rc align-middle text-left mb-md;
@@ -32,7 +31,7 @@
32
31
  }
33
32
 
34
33
  .card-label {
35
- @apply text-legend text-text-primary mb-sm;
34
+ @apply text-legend text-text-primary mb-md;
36
35
  }
37
36
 
38
37
  .card-label-error {
@@ -48,13 +47,13 @@
48
47
  }
49
48
  }
50
49
 
51
- .validation-error {
50
+ .validation-error{
52
51
  @apply block text-body-s text-error;
53
52
  }
54
53
 
55
54
  .docsDescription {
56
- color: #0b0c0c !important;
57
- }
55
+ color: #0B0C0C !important;
56
+ }
58
57
 
59
58
  .field-container {
60
59
  @apply flex items-center;
@@ -78,10 +77,6 @@
78
77
  @apply text-text-primary text-heading-m font-bold;
79
78
  }
80
79
 
81
- .card-section-sub-text{
82
- @apply text-text-primary text-body-s;
83
- }
84
-
85
80
  .card-caption {
86
81
  @apply text-text-secondary text-caption-xl mb-sm;
87
82
  }
@@ -118,7 +113,7 @@
118
113
  @apply block text-center text-link text-link-normal mt-md;
119
114
  }
120
115
 
121
- .card-search-heading {
116
+ .card-search-heading{
122
117
  margin-right: 0px !important;
123
118
  margin-left: 0px !important;
124
119
  margin-bottom: 0px !important;
@@ -127,9 +122,10 @@
127
122
  }
128
123
  }
129
124
  .employeeCard.fsm {
130
- margin-bottom: 64px !important;
125
+ margin-bottom: 16px !important;
131
126
  margin-left: 0px !important;
132
127
  margin-right: 16px !important; }
128
+
133
129
  .header-wrap {
134
130
  @apply flex mb-md;
135
131
 
@@ -155,7 +151,7 @@
155
151
 
156
152
  .submit-bar {
157
153
  @apply h-10 bg-primary-main text-center w-full outline-none;
158
- box-shadow: inset 0px -2px 0px #0b0c0c;
154
+ box-shadow: inset 0px -2px 0px #0B0C0C;
159
155
 
160
156
  &:focus {
161
157
  @apply outline-none;
@@ -168,7 +164,6 @@
168
164
 
169
165
  .submit-bar-disabled {
170
166
  @apply h-10 bg-primary-main text-center w-full outline-none opacity-50;
171
- background-color: #882636 !important;
172
167
 
173
168
  &:focus {
174
169
  @apply outline-none;
@@ -176,7 +171,6 @@
176
171
 
177
172
  header {
178
173
  @apply font-rc font-medium text-legend text-white leading-10;
179
- line-height: 2rem !important;
180
174
  }
181
175
  }
182
176
 
@@ -184,13 +178,16 @@
184
178
  .submit-bar,
185
179
  .submit-bar-disabled {
186
180
  width: 240px;
187
- background-color: #882636 !important;
188
- height: 2rem !important
189
181
  }
190
182
 
191
183
  .card {
192
- display: flex;
193
- flex-direction: column;
184
+ margin-right: auto;
185
+ padding-right: 300px;
186
+ padding-left: 16px;
187
+ padding-top: 16px;
188
+ max-width: 960px;
189
+ min-width: 640px;
190
+ margin-left: 0px;
194
191
 
195
192
  .card-header {
196
193
  @apply text-heading-xl-dt;
@@ -240,11 +237,7 @@
240
237
  @apply text-heading-m-dt;
241
238
  }
242
239
 
243
- .card-section-sub-text{
244
- @apply text-text-primary text-body-s-dt;
245
- }
246
-
247
- .card-search-heading {
240
+ .card-search-heading{
248
241
  margin-right: 0px !important;
249
242
  margin-left: 0px !important;
250
243
  margin-bottom: 0px !important;
@@ -316,7 +309,7 @@
316
309
  @apply text-text-primary text-heading-m font-bold;
317
310
  }
318
311
 
319
- .card-search-heading {
312
+ .card-search-heading{
320
313
  margin-right: 0px !important;
321
314
  margin-left: 0px !important;
322
315
  margin-bottom: 0px !important;
@@ -338,16 +331,18 @@
338
331
  }
339
332
  .home-page-info-banner-wrap {
340
333
  max-width: 45%;
341
- min-width: 100%;
334
+ min-width: 40%;
342
335
  margin-left: 0;
343
336
  margin-right: 24px;
344
337
  margin-bottom: 24px;
345
338
  }
346
339
  .info-banner-wrap-citizen-override {
340
+ min-width: 640px;
341
+ max-width: 960px
347
342
  }
348
343
  .oc-aknowledgement-screen {
349
344
  width: auto;
350
- min-width: 240px;
345
+ min-width: 240px;
351
346
  max-width: 100%;
352
347
  padding: 0px 10px;
353
348
  }
@@ -364,23 +359,21 @@
364
359
  .BPAemployeeCard {
365
360
  margin-left: 0px !important;
366
361
  margin-right: 0px !important;
367
- margin-bottom: 0px !important;
362
+ margin-bottom: 64px !important;
368
363
  }
369
364
 
370
365
  .employee-application-details {
371
366
  display: flex !important;
372
- flex-direction: column !important;
373
367
  justify-content: space-between !important;
374
- max-height: 70px !important;
375
- height: 70px !important;
376
- margin-bottom: 15px !important;
368
+ max-height: 60px !important;
369
+ height: 60px !important
377
370
  }
378
371
  .employee-main-application-details {
379
372
  padding: 10px !important;
380
373
  }
381
374
 
382
375
  .employee-mulitlink-main-div {
383
- z-index: 10 !important;
376
+ z-index: 10 !important;
384
377
  max-width: 41% !important;
385
378
  }
386
379
 
@@ -394,20 +387,4 @@
394
387
  position: unset !important;
395
388
  margin: 0 !important;
396
389
  width: 100% !important;
397
- }
398
-
399
- .language-selector .submit-bar, .submit-bar-disabled{
400
- background-color: #5a1166 !important;
401
- }
402
-
403
- .owner-details{
404
- display: flex;
405
- flex-direction: row;
406
- width: 100%;
407
- flex-wrap: wrap;
408
- justify-content: space-between
409
- }
410
-
411
- .owner-details-child{
412
- width: 50%;
413
390
  }