@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.
- package/dist/index.css +4595 -2612
- package/dist/index.min.css +1 -1
- package/package.json +1 -1
- package/src/components/CardBasedOptions.scss +425 -0
- package/src/components/NewAccordianCitizen.scss +130 -0
- package/src/components/TimeLine.scss +29 -1
- package/src/components/body.scss +116 -2
- package/src/components/buttons.scss +9 -2
- package/src/components/card.scss +243 -98
- package/src/components/info-banner.scss +1 -1
- package/src/components/keynote.scss +2 -0
- package/src/components/map.scss +6 -0
- package/src/components/multiSelectDropdown.scss +21 -5
- package/src/components/navbar.scss +3 -10
- package/src/components/newFooter.scss +75 -0
- package/src/components/searchAction.scss +7 -0
- package/src/components/selectdropdown.scss +89 -18
- package/src/components/table.scss +325 -141
- package/src/components/textfields.scss +25 -17
- package/src/components/topbar.scss +169 -99
- package/src/index.scss +7 -1
- package/src/pages/citizen/CitizenLogin.scss +50 -0
- package/src/pages/citizen/DocumentList.scss +145 -1
- package/src/pages/citizen/HomePageWrapper.scss +61 -12
- package/src/pages/citizen/InboxCard.scss +327 -0
- package/src/pages/citizen/citizenDocument.scss +4 -0
- package/src/pages/citizen/citizenNewLogin.scss +266 -102
- package/src/pages/citizen/container.scss +10 -0
- package/src/pages/employee/dashboard.scss +1 -1
- package/src/pages/employee/dss.scss +2 -0
- package/src/pages/employee/header.scss +262 -0
- package/src/pages/employee/index.scss +60 -61
- package/src/pages/employee/login.scss +188 -530
|
@@ -0,0 +1,262 @@
|
|
|
1
|
+
/* Banner Header Container */
|
|
2
|
+
.employee-header-bannerHeader {
|
|
3
|
+
width: 100%;
|
|
4
|
+
background-color: #ffffff;
|
|
5
|
+
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
|
|
6
|
+
position: sticky;
|
|
7
|
+
top: 0;
|
|
8
|
+
z-index: 1000;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
/* Top App Bar */
|
|
12
|
+
.employee-header-appbar {
|
|
13
|
+
background-color: #2947a3;
|
|
14
|
+
color: #ffffff;
|
|
15
|
+
font-size: 14px;
|
|
16
|
+
padding: 8px 0;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.employee-header-appbar-container {
|
|
20
|
+
max-width: 1440px;
|
|
21
|
+
margin: 0 auto;
|
|
22
|
+
padding: 0 24px;
|
|
23
|
+
display: flex;
|
|
24
|
+
justify-content: space-between;
|
|
25
|
+
align-items: center;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.employee-header-appbar-box-left {
|
|
29
|
+
font-weight: 500;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.employee-header-appbar-box-right a {
|
|
33
|
+
color: #ffffff;
|
|
34
|
+
text-decoration: none;
|
|
35
|
+
font-size: 13px;
|
|
36
|
+
transition: opacity 0.2s;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.employee-header-appbar-box-right a:hover {
|
|
40
|
+
opacity: 0.8;
|
|
41
|
+
text-decoration: underline;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
/* Main Header */
|
|
45
|
+
.employee-header-topHeader {
|
|
46
|
+
background-color: #ffffff;
|
|
47
|
+
padding: 16px 0;
|
|
48
|
+
border-bottom: 1px solid #e5e7eb;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.employee-header-topHeader-container {
|
|
52
|
+
max-width: 1440px;
|
|
53
|
+
margin: 0 auto;
|
|
54
|
+
padding: 0 24px;
|
|
55
|
+
display: flex;
|
|
56
|
+
justify-content: space-between;
|
|
57
|
+
align-items: center;
|
|
58
|
+
gap: 32px;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
/* Logo Section */
|
|
62
|
+
.employee-header-topHeader-box-left {
|
|
63
|
+
display: flex;
|
|
64
|
+
align-items: center;
|
|
65
|
+
gap: 24px;
|
|
66
|
+
flex-shrink: 0;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.employee-header-header-logo {
|
|
70
|
+
height: 50px;
|
|
71
|
+
width: auto;
|
|
72
|
+
object-fit: contain;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
/* Navigation Menu */
|
|
76
|
+
.employee-header-topHeader-box-center {
|
|
77
|
+
flex: 1;
|
|
78
|
+
display: flex;
|
|
79
|
+
justify-content: center;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.employee-header-header-nav ul {
|
|
83
|
+
display: flex;
|
|
84
|
+
list-style: none;
|
|
85
|
+
margin: 0;
|
|
86
|
+
padding: 0;
|
|
87
|
+
gap: 32px;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.employee-header-header-nav li {
|
|
91
|
+
margin: 0;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.employee-header-header-nav a {
|
|
95
|
+
color: #374151;
|
|
96
|
+
text-decoration: none;
|
|
97
|
+
font-weight: 500;
|
|
98
|
+
font-size: 15px;
|
|
99
|
+
transition: color 0.2s;
|
|
100
|
+
position: relative;
|
|
101
|
+
padding: 8px 0;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.employee-header-header-nav a:hover {
|
|
105
|
+
color: #2947a3;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.employee-header-header-nav a::after {
|
|
109
|
+
content: "";
|
|
110
|
+
position: absolute;
|
|
111
|
+
bottom: 0;
|
|
112
|
+
left: 0;
|
|
113
|
+
width: 0;
|
|
114
|
+
height: 2px;
|
|
115
|
+
background-color: #2947a3;
|
|
116
|
+
transition: width 0.3s ease;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
.employee-header-header-nav a:hover::after {
|
|
120
|
+
width: 100%;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
/* Action Buttons */
|
|
124
|
+
.employee-header-topHeader-box-right {
|
|
125
|
+
display: flex;
|
|
126
|
+
gap: 12px;
|
|
127
|
+
flex-shrink: 0;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.employee-header-header-btn {
|
|
131
|
+
padding: 10px 24px;
|
|
132
|
+
border-radius: 6px;
|
|
133
|
+
font-weight: 500;
|
|
134
|
+
font-size: 14px;
|
|
135
|
+
cursor: pointer;
|
|
136
|
+
transition: all 0.2s;
|
|
137
|
+
border: none;
|
|
138
|
+
outline: none;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.employee-header-header-btn-login {
|
|
142
|
+
background-color: transparent;
|
|
143
|
+
color: #2947a3;
|
|
144
|
+
border: 2px solid #2947a3;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.employee-header-header-btn-login:hover {
|
|
148
|
+
background-color: #2947a3;
|
|
149
|
+
color: #ffffff;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.employee-header-header-btn-register {
|
|
153
|
+
background-color: #2947a3;
|
|
154
|
+
color: #ffffff;
|
|
155
|
+
border: 2px solid #2947a3;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
.employee-header-header-btn-register:hover {
|
|
159
|
+
background-color: #1e3a8a;
|
|
160
|
+
border-color: #1e3a8a;
|
|
161
|
+
transform: translateY(-1px);
|
|
162
|
+
box-shadow: 0 4px 12px rgba(41, 71, 163, 0.3);
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
/* Responsive Design */
|
|
166
|
+
@media (max-width: 1024px) {
|
|
167
|
+
.employee-header-topHeader-container {
|
|
168
|
+
gap: 16px;
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
.employee-header-header-nav ul {
|
|
172
|
+
gap: 20px;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
.employee-header-header-nav a {
|
|
176
|
+
font-size: 14px;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
.employee-header-header-logo {
|
|
180
|
+
height: 42px;
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
@media (max-width: 768px) {
|
|
185
|
+
.employee-header-appbar-container {
|
|
186
|
+
padding: 0 16px;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
.employee-header-topHeader {
|
|
190
|
+
padding: 12px 0;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
.employee-header-topHeader-container {
|
|
194
|
+
padding: 0 16px;
|
|
195
|
+
flex-wrap: wrap;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
.employee-header-topHeader-box-left {
|
|
199
|
+
gap: 16px;
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
.employee-header-header-logo {
|
|
203
|
+
height: 36px;
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
.employee-header-topHeader-box-center {
|
|
207
|
+
order: 3;
|
|
208
|
+
width: 100%;
|
|
209
|
+
margin-top: 12px;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
.employee-header-header-nav ul {
|
|
213
|
+
gap: 16px;
|
|
214
|
+
justify-content: center;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
.employee-header-header-nav a {
|
|
218
|
+
font-size: 13px;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
.employee-header-topHeader-box-right {
|
|
222
|
+
gap: 8px;
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
.employee-header-header-btn {
|
|
226
|
+
padding: 8px 16px;
|
|
227
|
+
font-size: 13px;
|
|
228
|
+
}
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
@media (max-width: 480px) {
|
|
232
|
+
.employee-header-appbar {
|
|
233
|
+
font-size: 12px;
|
|
234
|
+
padding: 6px 0;
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
.employee-header-appbar-box-right a {
|
|
238
|
+
font-size: 11px;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
.employee-header-topHeader-box-left {
|
|
242
|
+
gap: 12px;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
.employee-header-header-logo {
|
|
246
|
+
height: 32px;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
.employee-header-header-nav ul {
|
|
250
|
+
gap: 12px;
|
|
251
|
+
flex-wrap: wrap;
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
.employee-header-header-nav a {
|
|
255
|
+
font-size: 12px;
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
.employee-header-header-btn {
|
|
259
|
+
padding: 7px 14px;
|
|
260
|
+
font-size: 12px;
|
|
261
|
+
}
|
|
262
|
+
}
|
|
@@ -188,61 +188,84 @@
|
|
|
188
188
|
.sidebar {
|
|
189
189
|
position: fixed;
|
|
190
190
|
left: 0;
|
|
191
|
-
height:
|
|
192
|
-
color: #
|
|
193
|
-
margin-top: 80px;
|
|
191
|
+
height: calc(100vh - 36px);
|
|
192
|
+
color: #1f2937;
|
|
194
193
|
z-index: 999;
|
|
195
|
-
transition: 0.
|
|
194
|
+
transition: 0.25s ease all;
|
|
196
195
|
white-space: nowrap;
|
|
197
|
-
height: calc(100vh - 36px);
|
|
198
196
|
padding-bottom: 5rem;
|
|
199
|
-
background:
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
197
|
+
background: #ffffff;
|
|
198
|
+
border-right: 1px solid rgba(15, 23, 42, 0.06);
|
|
199
|
+
box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
|
|
200
|
+
border-radius: 0 12px 12px 0;
|
|
201
|
+
backdrop-filter: blur(6px);
|
|
202
|
+
margin-top: 5rem;
|
|
203
203
|
|
|
204
204
|
.actions {
|
|
205
205
|
cursor: pointer;
|
|
206
206
|
display: flex;
|
|
207
207
|
align-items: center;
|
|
208
208
|
.tooltip {
|
|
209
|
-
margin-left:
|
|
209
|
+
margin-left: 12px;
|
|
210
210
|
}
|
|
211
211
|
}
|
|
212
212
|
|
|
213
213
|
svg {
|
|
214
214
|
width: 24px;
|
|
215
215
|
height: 24px;
|
|
216
|
-
fill: #
|
|
216
|
+
fill: #374151;
|
|
217
|
+
transition: fill 0.18s ease;
|
|
218
|
+
margin-right: 20px;
|
|
219
|
+
margin-left: -10px;
|
|
217
220
|
}
|
|
221
|
+
|
|
218
222
|
a {
|
|
219
223
|
display: flex;
|
|
224
|
+
align-items: center;
|
|
225
|
+
text-decoration: none;
|
|
220
226
|
}
|
|
227
|
+
|
|
221
228
|
.sidebar-link {
|
|
222
229
|
display: flex;
|
|
223
|
-
color: #
|
|
230
|
+
color: #374151;
|
|
224
231
|
justify-content: space-between;
|
|
225
232
|
align-items: center;
|
|
226
|
-
padding:
|
|
233
|
+
padding: 12px 18px;
|
|
227
234
|
font-size: 14px;
|
|
228
|
-
border-left: 4px solid
|
|
229
|
-
border-radius:
|
|
235
|
+
border-left: 4px solid transparent;
|
|
236
|
+
border-radius: 8px;
|
|
237
|
+
margin: 6px 8px;
|
|
238
|
+
transition: all 0.18s ease;
|
|
239
|
+
|
|
230
240
|
&.active {
|
|
241
|
+
color: #ffffff !important;
|
|
242
|
+
background: linear-gradient(90deg, #2563eb 0%, #7c3aed 100%);
|
|
243
|
+
border-left-color: #2563eb;
|
|
244
|
+
svg {
|
|
245
|
+
fill: #ffffff !important;
|
|
246
|
+
}
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
&:hover {
|
|
231
250
|
color: #0d43a7 !important;
|
|
232
|
-
background-color:
|
|
251
|
+
background-color: rgba(37, 99, 235, 0.06);
|
|
252
|
+
border-left-color: rgba(37, 99, 235, 0.16);
|
|
253
|
+
cursor: pointer;
|
|
233
254
|
svg {
|
|
234
255
|
fill: #0d43a7 !important;
|
|
235
256
|
}
|
|
236
257
|
}
|
|
258
|
+
|
|
237
259
|
.employee-search-input {
|
|
238
260
|
border: none;
|
|
239
261
|
outline: none;
|
|
240
|
-
background-color:
|
|
262
|
+
background-color: transparent;
|
|
241
263
|
margin-left: 13px;
|
|
242
264
|
}
|
|
265
|
+
|
|
243
266
|
.custom-link {
|
|
244
267
|
.tooltip {
|
|
245
|
-
margin-left:
|
|
268
|
+
margin-left: 8px;
|
|
246
269
|
span {
|
|
247
270
|
margin-left: unset !important;
|
|
248
271
|
left: unset !important;
|
|
@@ -250,41 +273,33 @@
|
|
|
250
273
|
}
|
|
251
274
|
}
|
|
252
275
|
|
|
253
|
-
svg {
|
|
254
|
-
fill: #ffffff !important;
|
|
255
|
-
width: 21px;
|
|
256
|
-
height: 21px;
|
|
257
|
-
}
|
|
258
|
-
|
|
259
|
-
&:hover {
|
|
260
|
-
color: #0d43a7 !important;
|
|
261
|
-
background-color: #fff;
|
|
262
|
-
border-radius: 8px;
|
|
263
|
-
padding: 1rem 0.2rem;
|
|
264
|
-
|
|
265
|
-
cursor: pointer;
|
|
266
|
-
svg {
|
|
267
|
-
fill: #0d43a7 !important;
|
|
268
|
-
}
|
|
269
|
-
}
|
|
270
276
|
.search-icon-wrapper {
|
|
271
277
|
svg {
|
|
272
|
-
fill: #
|
|
273
|
-
width:
|
|
274
|
-
height:
|
|
278
|
+
fill: #6b7280 !important;
|
|
279
|
+
width: 20px;
|
|
280
|
+
height: 20px;
|
|
275
281
|
path {
|
|
276
|
-
fill: #
|
|
282
|
+
fill: #6b7280 !important;
|
|
277
283
|
}
|
|
278
284
|
}
|
|
279
285
|
}
|
|
286
|
+
|
|
287
|
+
span {
|
|
288
|
+
margin-left: 12px;
|
|
289
|
+
text-overflow: ellipsis;
|
|
290
|
+
overflow: hidden;
|
|
291
|
+
white-space: nowrap;
|
|
292
|
+
max-width: calc(100% - 56px);
|
|
293
|
+
}
|
|
280
294
|
}
|
|
295
|
+
|
|
281
296
|
.dropdown-link {
|
|
282
297
|
height: 40px;
|
|
283
298
|
display: flex;
|
|
284
299
|
margin-left: 40px;
|
|
285
300
|
align-items: center;
|
|
286
301
|
text-decoration: none;
|
|
287
|
-
color: #
|
|
302
|
+
color: #374151;
|
|
288
303
|
font-size: 14px;
|
|
289
304
|
.actions {
|
|
290
305
|
.tooltiptext {
|
|
@@ -295,30 +310,11 @@
|
|
|
295
310
|
svg {
|
|
296
311
|
width: 20px;
|
|
297
312
|
height: 20px;
|
|
298
|
-
fill: #
|
|
313
|
+
fill: #6b7280;
|
|
299
314
|
}
|
|
300
315
|
&:hover {
|
|
301
|
-
|
|
302
|
-
background-color: #486480;
|
|
303
|
-
cursor: pointer;
|
|
304
|
-
svg {
|
|
305
|
-
fill: #fe7a51 !important;
|
|
306
|
-
}
|
|
316
|
+
background: rgba(99, 102, 241, 0.06);
|
|
307
317
|
}
|
|
308
|
-
&.active {
|
|
309
|
-
/* color: #a82227 !important;
|
|
310
|
-
|
|
311
|
-
border-right: 4px solid #a82227;
|
|
312
|
-
svg {
|
|
313
|
-
fill: #a82227 !important;
|
|
314
|
-
} */
|
|
315
|
-
}
|
|
316
|
-
}
|
|
317
|
-
span {
|
|
318
|
-
margin-left: 16px;
|
|
319
|
-
text-overflow: ellipsis;
|
|
320
|
-
overflow: hidden;
|
|
321
|
-
white-space: nowrap;
|
|
322
318
|
}
|
|
323
319
|
}
|
|
324
320
|
|
|
@@ -451,6 +447,9 @@
|
|
|
451
447
|
svg {
|
|
452
448
|
fill: #a82227;
|
|
453
449
|
}
|
|
450
|
+
.form-field{
|
|
451
|
+
width: 100%;
|
|
452
|
+
}
|
|
454
453
|
}
|
|
455
454
|
}
|
|
456
455
|
|