@pmidc/upyog-css 1.1.5 → 1.1.6

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 (33) hide show
  1. package/dist/index.css +4595 -2612
  2. package/dist/index.min.css +1 -1
  3. package/package.json +1 -1
  4. package/src/components/CardBasedOptions.scss +425 -0
  5. package/src/components/NewAccordianCitizen.scss +130 -0
  6. package/src/components/TimeLine.scss +29 -1
  7. package/src/components/body.scss +116 -2
  8. package/src/components/buttons.scss +9 -2
  9. package/src/components/card.scss +243 -98
  10. package/src/components/info-banner.scss +1 -1
  11. package/src/components/keynote.scss +2 -0
  12. package/src/components/map.scss +6 -0
  13. package/src/components/multiSelectDropdown.scss +21 -5
  14. package/src/components/navbar.scss +3 -10
  15. package/src/components/newFooter.scss +75 -0
  16. package/src/components/searchAction.scss +7 -0
  17. package/src/components/selectdropdown.scss +89 -18
  18. package/src/components/table.scss +325 -141
  19. package/src/components/textfields.scss +25 -17
  20. package/src/components/topbar.scss +169 -99
  21. package/src/index.scss +7 -1
  22. package/src/pages/citizen/CitizenLogin.scss +50 -0
  23. package/src/pages/citizen/DocumentList.scss +145 -1
  24. package/src/pages/citizen/HomePageWrapper.scss +61 -12
  25. package/src/pages/citizen/InboxCard.scss +327 -0
  26. package/src/pages/citizen/citizenDocument.scss +4 -0
  27. package/src/pages/citizen/citizenNewLogin.scss +266 -102
  28. package/src/pages/citizen/container.scss +10 -0
  29. package/src/pages/employee/dashboard.scss +1 -1
  30. package/src/pages/employee/dss.scss +2 -0
  31. package/src/pages/employee/header.scss +262 -0
  32. package/src/pages/employee/index.scss +60 -61
  33. package/src/pages/employee/login.scss +188 -530
@@ -36,9 +36,7 @@
36
36
  display: flex;
37
37
  flex-direction: column;
38
38
  align-items: center;
39
- padding-top: 30px;
40
- /* background-color: #ffffff; */
41
- background: linear-gradient(to bottom right, #3765ca, #294a97);
39
+ padding-top: 30px;
42
40
  border-radius: 8px;
43
41
  margin: 0.2rem;
44
42
 
@@ -81,12 +79,10 @@
81
79
  cursor: pointer;
82
80
  text-decoration: none;
83
81
  margin: 0px;
84
- padding: 0px;
85
82
  outline: none;
86
83
  font-size: 16px;
87
84
  position: relative;
88
85
  color: rgb(95, 92, 98);
89
- line-height: 48px;
90
86
  transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
91
87
  min-height: 48px;
92
88
  white-space: initial;
@@ -98,7 +94,6 @@
98
94
  height: 21px;
99
95
  width: 21px;
100
96
  float: left;
101
- margin-top: 12px;
102
97
  }
103
98
  .edit-btn-ico{
104
99
  height: 17px;
@@ -112,8 +107,7 @@
112
107
  }
113
108
  }
114
109
  .sidebar-list {
115
- padding-right: 16px;
116
- padding-left: 16px;
110
+
117
111
  &.active {
118
112
  border-left: 5px solid #a82227;
119
113
  .menu-label {
@@ -187,7 +181,6 @@
187
181
  cursor: pointer;
188
182
  text-decoration: none;
189
183
  margin: 0px;
190
- padding: 0px;
191
184
  outline: none;
192
185
  font-size: 16px;
193
186
  position: relative;
@@ -326,7 +319,7 @@
326
319
  flex-direction: row;
327
320
  width: 50%;
328
321
  align-items: center;
329
- justify-content: space-evenly;
322
+ justify-content: flex-end;
330
323
  padding: auto 1.5rem;
331
324
  }
332
325
 
@@ -0,0 +1,75 @@
1
+
2
+ .new-df-footer{
3
+ background-color:#1e293b;
4
+ color:#ffffff;
5
+ padding:48px 0 0 0;
6
+ margin-top:64px;
7
+ width:100%;
8
+ box-sizing:border-box;
9
+ }
10
+
11
+ .new-df-container{
12
+ max-width:1200px;
13
+ margin:0 auto;
14
+ padding:0 40px;
15
+ box-sizing:border-box;
16
+ }
17
+
18
+ .new-df-grid{
19
+ display:grid;
20
+ grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
21
+ gap:48px;
22
+ padding-bottom:40px;
23
+ }
24
+
25
+ .new-df-column{
26
+ display:flex;
27
+ flex-direction:column;
28
+ gap:16px;
29
+ }
30
+
31
+ .new-df-heading{
32
+ font-size:18px;
33
+ font-weight:600;
34
+ margin:0 0 8px 0;
35
+ color:#ffffff;
36
+ }
37
+
38
+ .new-df-text{
39
+ font-size:14px;
40
+ line-height:1.6;
41
+ color:#cbd5e1;
42
+ margin:0;
43
+ }
44
+
45
+ .new-df-link{
46
+ font-size:14px;
47
+ color:#cbd5e1;
48
+ text-decoration:none;
49
+ cursor:pointer;
50
+ transition:color 0.2s ease;
51
+ display:block;
52
+ margin-bottom:8px;
53
+ }
54
+
55
+ .new-df-link:hover{
56
+ color:#ffffff;
57
+ }
58
+
59
+ .new-df-bottom{
60
+ border-top:1px solid #334155;
61
+ padding:24px 0;
62
+ text-align:center;
63
+ }
64
+
65
+ .new-df-copyright{
66
+ font-size:14px;
67
+ color:#94a3b8;
68
+ margin:0;
69
+ }
70
+
71
+ @media (max-width:768px){
72
+ .new-df-container{padding:0 16px}
73
+ .new-df-grid{gap:20px}
74
+ }
75
+
@@ -18,3 +18,10 @@
18
18
  }
19
19
  }
20
20
  }
21
+
22
+ .obps-search-application-container{
23
+ margin-top: 24px;
24
+ }
25
+ .obps-autocomplete-font-size{
26
+ font-size: 14px;
27
+ }
@@ -18,21 +18,29 @@
18
18
  }
19
19
  }
20
20
  */
21
- .employee-select-wrap:active{
22
- background-color: white
21
+ .employee-select-wrap:active {
22
+ background-color: white;
23
+ }
24
+ .employee-select-wrap .select {
25
+ background-color: white;
26
+ border-radius: 5px;
27
+ border-color:1px solid blue;
28
+ height: 50px;
23
29
  }
24
30
  .employee-select-wrap {
25
31
  @apply mb-lg relative;
26
32
 
27
33
  .select {
28
- @apply relative block w-full h-10 border border-solid border-input-border;
29
- &:hover {
30
- @apply border-2 border-solid border-primary-main;
31
- }
34
+ background-color: white;
35
+ border-radius: 8px;
36
+ border-color: rgb(46, 46, 236);
37
+ height: 50px;
38
+
39
+
32
40
  input[type="text"] {
33
41
  width: calc(100% - 32px);
34
42
  background-color: transparent;
35
- margin-top: -23px !important;
43
+
36
44
  @apply absolute z-10 w-full h-full outline-none text-text-primary text-form-field pl-sm;
37
45
  }
38
46
 
@@ -52,16 +60,17 @@
52
60
 
53
61
  .select-active {
54
62
  @apply relative block w-full h-10 border-2 border-solid border-primary-main;
55
- height: 2 rem !important;
56
- padding: 1.5rem 1rem;
63
+ height: 3rem;
64
+ border: 1px solid #2563eb;
57
65
  border-radius: 8px;
58
- border: 1px solid #b4b4b4;
59
66
  background-color: white;
67
+ box-shadow: 0 8px 26px rgba(37, 99, 235, 0.12);
68
+ position: relative;
60
69
 
61
70
  input[type="text"] {
62
71
  width: calc(100% - 32px);
63
72
  background-color: transparent;
64
- margin-top: -23px;
73
+
65
74
  @apply absolute z-10 w-full h-full outline-none text-text-primary text-form-field pl-sm;
66
75
  }
67
76
 
@@ -78,7 +87,12 @@
78
87
  }
79
88
 
80
89
  svg {
81
- @apply absolute right-0 float-right h-6 w-6 mt-sm mr-sm;
90
+ position: absolute !important;
91
+ top: 50% !important;
92
+ right: 12px !important;
93
+ transform: translateY(-50%) !important;
94
+ margin: 0 !important;
95
+ float: none !important;
82
96
  }
83
97
  }
84
98
 
@@ -118,7 +132,7 @@
118
132
  margin-bottom: 0;
119
133
  }
120
134
 
121
- .employee-select-wrap--elipses {
135
+ .employee-select-wrap-elipses {
122
136
  width: 85% !important;
123
137
  overflow: hidden;
124
138
  text-overflow: ellipsis;
@@ -128,13 +142,15 @@
128
142
  .select-wrap {
129
143
  @apply mb-lg relative;
130
144
  max-width: 540px;
131
- width:100%;
145
+ width: 100%;
132
146
 
133
147
  .select {
134
148
  @apply relative block w-full;
135
149
  height: 3rem;
136
- border: 1px solid #b4b4b4;
150
+ border: 1px solid #d1d5db;
137
151
  border-radius: 8px;
152
+ transition: border-color 0.18s ease, box-shadow 0.18s ease;
153
+ background-color: #ffffff;
138
154
 
139
155
  input[type="text"] {
140
156
  width: calc(100% - 32px);
@@ -153,17 +169,32 @@
153
169
  }
154
170
 
155
171
  svg {
156
- @apply absolute right-0 float-right h-6 w-6 mt-sm mr-sm;
172
+ position: absolute !important;
173
+ top: 50% !important;
174
+ right: 12px !important;
175
+ transform: translateY(-50%) !important;
176
+ margin: 0 !important;
177
+ float: none !important;
157
178
  }
158
179
  }
159
180
 
181
+ .select:hover {
182
+ border-color: #2563eb;
183
+ box-shadow: 0 6px 18px rgba(37, 99, 235, 0.06);
184
+ }
185
+
186
+ .select:focus-within {
187
+ border-color: #2563eb !important;
188
+ box-shadow: 0 8px 26px rgba(37, 99, 235, 0.12) !important;
189
+ }
190
+
160
191
  .select-active {
161
192
  @apply relative block w-full h-10 border-2 border-solid border-primary-main;
162
193
 
163
194
  input[type="text"] {
164
195
  width: calc(100% - 32px);
165
196
  background-color: transparent;
166
- margin-top: -23px;
197
+
167
198
  @apply absolute z-10 w-full h-full outline-none text-text-primary text-form-field pl-sm;
168
199
  }
169
200
 
@@ -200,6 +231,46 @@
200
231
  }
201
232
  }
202
233
 
203
- .employee-select-wrap .select img, .employee-select-wrap .select svg{
234
+ .employee-select-wrap .select img {
204
235
  margin-top: -10px;
205
236
  }
237
+
238
+ .employee-select-wrap .select svg {
239
+ position: absolute !important;
240
+ top: 50% !important;
241
+ right: 12px !important;
242
+ transform: translateY(-50%) !important;
243
+ margin: 0 !important;
244
+ float: none !important;
245
+ }
246
+
247
+ .employee-login-form .field-container .custom-field {
248
+ padding: 0 !important;
249
+ border: none !important;
250
+ box-shadow: none !important;
251
+ }
252
+
253
+ /* Improved select border and hover/focus styles */
254
+ .employee-select-wrap .select {
255
+ border: 1px solid #d1d5db; /* neutral light border */
256
+ border-radius: 8px;
257
+ transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
258
+ background-color: #ffffff;
259
+ }
260
+
261
+ .employee-select-wrap .select:hover {
262
+ border-color: #2563eb; /* blue on hover */
263
+ box-shadow: 0 6px 18px rgba(37, 99, 235, 0.06);
264
+ }
265
+
266
+ .employee-select-wrap .select:focus-within,
267
+ .employee-select-wrap .select-active {
268
+ border-color: #2563eb !important;
269
+ box-shadow: 0 8px 26px rgba(37, 99, 235, 0.12) !important;
270
+ }
271
+
272
+ /* keep dropdown options visible and give subtle offset */
273
+ .employee-select-wrap .options-card {
274
+ transform: translateY(6px);
275
+ will-change: transform;
276
+ }