@egovernments/digit-ui-components-css 0.0.2-beta.11 → 0.0.2-beta.12
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/CHANGELOG.md +88 -88
- package/README.md +80 -80
- package/package.json +69 -69
- package/src/digitv2/components/FormComposerV2.scss +118 -118
- package/src/digitv2/components/actionbarV2.scss +206 -206
- package/src/digitv2/components/backLinkV2.scss +36 -36
- package/src/digitv2/components/bodyContainerV2.scss +39 -39
- package/src/digitv2/components/breadcrumbV2.scss +56 -56
- package/src/digitv2/components/buttonsV2.scss +451 -451
- package/src/digitv2/components/cardV2.scss +497 -497
- package/src/digitv2/components/cardbasedoptionsV2.scss +46 -46
- package/src/digitv2/components/cardlabelV2.scss +7 -7
- package/src/digitv2/components/checkboxV2.scss +83 -83
- package/src/digitv2/components/chipV2.scss +129 -129
- package/src/digitv2/components/dividerV2.scss +10 -10
- package/src/digitv2/components/errorMessageV2.scss +20 -20
- package/src/digitv2/components/fieldV1.scss +96 -96
- package/src/digitv2/components/headerdropdownV2.scss +151 -151
- package/src/digitv2/components/infoCardV2.scss +139 -139
- package/src/digitv2/components/infobuttonV2.scss +75 -75
- package/src/digitv2/components/labelFieldPairV2.scss +66 -66
- package/src/digitv2/components/mobileNumberV2.scss +65 -65
- package/src/digitv2/components/multiSelectDropdownV2.scss +315 -315
- package/src/digitv2/components/panelCardV2.scss +160 -160
- package/src/digitv2/components/panelV2.scss +114 -114
- package/src/digitv2/components/popUpV2.scss +330 -330
- package/src/digitv2/components/radiobtnV2.scss +115 -115
- package/src/digitv2/components/selectDropdownV2.scss +364 -364
- package/src/digitv2/components/stepperV2.scss +147 -147
- package/src/digitv2/components/textInputV2.scss +462 -462
- package/src/digitv2/components/textareaV2.scss +99 -99
- package/src/digitv2/components/textblockV2.scss +46 -46
- package/src/digitv2/components/timelineV2.scss +170 -170
- package/src/digitv2/components/toastV2.scss +80 -80
- package/src/digitv2/components/toggleV2.scss +72 -72
- package/src/digitv2/components/topbarV2.scss +387 -387
- package/src/digitv2/components/treeSelectV2.scss +132 -132
- package/src/digitv2/components/uploaderV2.scss +556 -556
- package/src/digitv2/components/viewCardFieldPairV2.scss +44 -44
- package/src/digitv2/index.scss +169 -169
- package/src/digitv2/pages/employee/index.scss +1 -1
- package/src/digitv2/pages/employee/workbench.scss +615 -615
- package/src/digitv2/typography.scss +638 -638
- package/src/index.scss +681 -681
- package/src/pages/employee/index.scss +625 -625
- package/src/pages/employee/login.scss +220 -220
|
@@ -1,626 +1,626 @@
|
|
|
1
|
-
@import "./login.scss";
|
|
2
|
-
|
|
3
|
-
/* TODO: convert using tailwind */
|
|
4
|
-
.employee {
|
|
5
|
-
.breadcrumb {
|
|
6
|
-
@apply ml-sm mb-lg;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
.ground-container {
|
|
10
|
-
margin-bottom: 56px;
|
|
11
|
-
@apply flex flex-col;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
.card-home {
|
|
15
|
-
font-size: 16px;
|
|
16
|
-
padding: 0 0 16px 0;
|
|
17
|
-
width: 92vw;
|
|
18
|
-
display: inline-block;
|
|
19
|
-
margin: 8px auto;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
.home-action-cards {
|
|
23
|
-
height: auto !important;
|
|
24
|
-
min-height: 263px;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
.topbar {
|
|
28
|
-
position: fixed;
|
|
29
|
-
top: 0;
|
|
30
|
-
width: 100%;
|
|
31
|
-
padding: 16px 24px;
|
|
32
|
-
background: white;
|
|
33
|
-
box-shadow: rgba(0, 0, 0, 0.24) 0 1px 4px;
|
|
34
|
-
z-index: 9999;
|
|
35
|
-
|
|
36
|
-
img {
|
|
37
|
-
display: inline;
|
|
38
|
-
|
|
39
|
-
&.city {
|
|
40
|
-
margin-right: 8px;
|
|
41
|
-
height: 48px;
|
|
42
|
-
width: 48px;
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
&.state {
|
|
46
|
-
height: 20px;
|
|
47
|
-
max-height: 20px;
|
|
48
|
-
width: auto;
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
.ulb {
|
|
53
|
-
font-weight: bold;
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
.right {
|
|
57
|
-
float: right;
|
|
58
|
-
margin-top: 12px;
|
|
59
|
-
|
|
60
|
-
.user-img-txt {
|
|
61
|
-
background: theme(colors.primary.main);
|
|
62
|
-
padding: 10px 15px;
|
|
63
|
-
border-radius: 50%;
|
|
64
|
-
color: white;
|
|
65
|
-
font-weight: 700;
|
|
66
|
-
}
|
|
67
|
-
}
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
.main {
|
|
71
|
-
padding-top: 88px;
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
.loginContainer {
|
|
75
|
-
padding-top: 88px;
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
@media screen and (max-width: 640px) {
|
|
80
|
-
.grounded-container {
|
|
81
|
-
margin-left: 0px;
|
|
82
|
-
}
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
@media screen and (min-width: 641px) {
|
|
86
|
-
.grounded-container {
|
|
87
|
-
margin-left: 64px;
|
|
88
|
-
}
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
.react-time-picker {
|
|
92
|
-
width: 100%;
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
.react-time-picker__wrapper {
|
|
96
|
-
border: 1px solid theme(colors.inputBorder);
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
.react-time-picker__clock {
|
|
100
|
-
display: none;
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
.react-time-picker__inputGroup__leadingZero {
|
|
104
|
-
padding-right: 8px;
|
|
105
|
-
display: inline !important;
|
|
106
|
-
}
|
|
107
|
-
|
|
108
|
-
.react-time-picker__inputGroup__input {
|
|
109
|
-
padding: 0;
|
|
110
|
-
min-width: none;
|
|
111
|
-
outline: none !important;
|
|
112
|
-
border: none !important;
|
|
113
|
-
}
|
|
114
|
-
|
|
115
|
-
.react-time-picker__wrapper {
|
|
116
|
-
padding-left: 8px;
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
.citizen {
|
|
121
|
-
.main {
|
|
122
|
-
padding-top: 82px;
|
|
123
|
-
min-height: calc(100vh - 90px);
|
|
124
|
-
}
|
|
125
|
-
}
|
|
126
|
-
|
|
127
|
-
.citizen,
|
|
128
|
-
.employee {
|
|
129
|
-
.sidebar {
|
|
130
|
-
position: fixed;
|
|
131
|
-
left: 0;
|
|
132
|
-
background: #0B4B66;
|
|
133
|
-
height: 100%;
|
|
134
|
-
color: theme(colors.white);
|
|
135
|
-
margin-top: 83px;
|
|
136
|
-
z-index: 999;
|
|
137
|
-
transition: 0.3s ease all;
|
|
138
|
-
white-space: nowrap;
|
|
139
|
-
height: calc(100vh - 36px);
|
|
140
|
-
padding-bottom: 5rem;
|
|
141
|
-
|
|
142
|
-
.actions {
|
|
143
|
-
cursor: pointer;
|
|
144
|
-
display: flex;
|
|
145
|
-
align-items: center;
|
|
146
|
-
|
|
147
|
-
.tooltip {
|
|
148
|
-
margin-left: 16px;
|
|
149
|
-
}
|
|
150
|
-
|
|
151
|
-
margin-bottom: 0px;
|
|
152
|
-
}
|
|
153
|
-
|
|
154
|
-
svg {
|
|
155
|
-
width: 24px;
|
|
156
|
-
height: 24px;
|
|
157
|
-
fill: theme(colors.white);
|
|
158
|
-
}
|
|
159
|
-
|
|
160
|
-
a {
|
|
161
|
-
display: flex;
|
|
162
|
-
}
|
|
163
|
-
|
|
164
|
-
.sidebar-link {
|
|
165
|
-
display: flex;
|
|
166
|
-
color: theme(colors.white);
|
|
167
|
-
justify-content: space-between;
|
|
168
|
-
align-items: center;
|
|
169
|
-
padding: 20px;
|
|
170
|
-
font-size: 14px;
|
|
171
|
-
|
|
172
|
-
&.level-0 {
|
|
173
|
-
margin: 0 0.3rem 0 0.3rem;
|
|
174
|
-
|
|
175
|
-
&.select-level {
|
|
176
|
-
border-top: 1px solid;
|
|
177
|
-
border-bottom: 1px solid;
|
|
178
|
-
}
|
|
179
|
-
}
|
|
180
|
-
|
|
181
|
-
&.active {
|
|
182
|
-
color: theme(colors.primary.main) !important;
|
|
183
|
-
|
|
184
|
-
border-right: none;
|
|
185
|
-
|
|
186
|
-
svg {
|
|
187
|
-
fill: theme(colors.primary.main) !important;
|
|
188
|
-
}
|
|
189
|
-
}
|
|
190
|
-
|
|
191
|
-
.employee-search-input {
|
|
192
|
-
border: none;
|
|
193
|
-
outline: none;
|
|
194
|
-
background-color: rgba(0, 0, 0, 0);
|
|
195
|
-
margin-left: 13px;
|
|
196
|
-
}
|
|
197
|
-
|
|
198
|
-
.custom-link {
|
|
199
|
-
.tooltip {
|
|
200
|
-
margin-left: 16px;
|
|
201
|
-
|
|
202
|
-
span {
|
|
203
|
-
margin-left: unset !important;
|
|
204
|
-
left: unset !important;
|
|
205
|
-
}
|
|
206
|
-
}
|
|
207
|
-
}
|
|
208
|
-
|
|
209
|
-
svg {
|
|
210
|
-
fill: theme(colors.white) !important;
|
|
211
|
-
width: 21px;
|
|
212
|
-
height: 21px;
|
|
213
|
-
}
|
|
214
|
-
|
|
215
|
-
&:hover {
|
|
216
|
-
|
|
217
|
-
background-color: #0B4B66;
|
|
218
|
-
|
|
219
|
-
cursor: pointer;
|
|
220
|
-
|
|
221
|
-
}
|
|
222
|
-
|
|
223
|
-
.search-icon-wrapper {
|
|
224
|
-
border: 2px solid theme(colors.white);
|
|
225
|
-
border-radius: 4px;
|
|
226
|
-
padding: 5px;
|
|
227
|
-
|
|
228
|
-
svg {
|
|
229
|
-
fill: theme(colors.white) !important;
|
|
230
|
-
width: 21px;
|
|
231
|
-
height: 21px;
|
|
232
|
-
|
|
233
|
-
path {
|
|
234
|
-
fill: theme(colors.white) !important;
|
|
235
|
-
}
|
|
236
|
-
}
|
|
237
|
-
}
|
|
238
|
-
}
|
|
239
|
-
|
|
240
|
-
.dropdown-link {
|
|
241
|
-
height: 40px;
|
|
242
|
-
display: flex;
|
|
243
|
-
margin-left: 40px;
|
|
244
|
-
align-items: center;
|
|
245
|
-
text-decoration: none;
|
|
246
|
-
color: theme(colors.white);
|
|
247
|
-
font-size: 14px;
|
|
248
|
-
|
|
249
|
-
.actions {
|
|
250
|
-
.tooltiptext {
|
|
251
|
-
left: unset;
|
|
252
|
-
right: 1%;
|
|
253
|
-
}
|
|
254
|
-
}
|
|
255
|
-
|
|
256
|
-
svg {
|
|
257
|
-
width: 20px;
|
|
258
|
-
height: 20px;
|
|
259
|
-
fill: theme(colors.white);
|
|
260
|
-
}
|
|
261
|
-
|
|
262
|
-
&:hover {
|
|
263
|
-
background-color: #6A8E9D;
|
|
264
|
-
opacity: 0.8;
|
|
265
|
-
cursor: pointer;
|
|
266
|
-
|
|
267
|
-
svg {
|
|
268
|
-
fill: #fe7a51 !important;
|
|
269
|
-
}
|
|
270
|
-
}
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
&.active {
|
|
274
|
-
border-left: 4px solid theme(colors.primary.main);
|
|
275
|
-
|
|
276
|
-
&.level-0 {}
|
|
277
|
-
|
|
278
|
-
&.level-1 {
|
|
279
|
-
border-left: 8.5px solid theme(colors.primary.main);
|
|
280
|
-
}
|
|
281
|
-
|
|
282
|
-
&.level-2 {
|
|
283
|
-
border-left: 4px solid theme(colors.primary.main);
|
|
284
|
-
}
|
|
285
|
-
|
|
286
|
-
&.level-3 {}
|
|
287
|
-
|
|
288
|
-
color: theme(colors.primary.main) !important;
|
|
289
|
-
border-right: none;
|
|
290
|
-
|
|
291
|
-
svg {
|
|
292
|
-
fill: theme(colors.primary.main) !important;
|
|
293
|
-
}
|
|
294
|
-
}
|
|
295
|
-
}
|
|
296
|
-
|
|
297
|
-
span {
|
|
298
|
-
margin-left: 16px;
|
|
299
|
-
text-overflow: ellipsis;
|
|
300
|
-
overflow: hidden;
|
|
301
|
-
white-space: nowrap;
|
|
302
|
-
}
|
|
303
|
-
}
|
|
304
|
-
|
|
305
|
-
.wrapperStyles {
|
|
306
|
-
margin-top: -5px;
|
|
307
|
-
padding-left: 20px;
|
|
308
|
-
padding-top: 10px;
|
|
309
|
-
|
|
310
|
-
.containerStyles {
|
|
311
|
-
border: 1px solid theme(colors.text.secondary);
|
|
312
|
-
padding: 16px;
|
|
313
|
-
margin-bottom: 20px;
|
|
314
|
-
}
|
|
315
|
-
|
|
316
|
-
&.leftBorder {
|
|
317
|
-
border-left: 2px solid rgba(0, 0, 0, 0.12);
|
|
318
|
-
}
|
|
319
|
-
}
|
|
320
|
-
|
|
321
|
-
.rowContainerStyles {
|
|
322
|
-
@apply flex flex-col;
|
|
323
|
-
}
|
|
324
|
-
|
|
325
|
-
.tableContainerStyles {
|
|
326
|
-
border: 1px solid theme(colors.text.secondary);
|
|
327
|
-
padding: 16px;
|
|
328
|
-
margin-bottom: 20px;
|
|
329
|
-
}
|
|
330
|
-
|
|
331
|
-
.historyTables {
|
|
332
|
-
display: grid;
|
|
333
|
-
grid-template-rows: 100px 100px;
|
|
334
|
-
grid-template-columns: repeat(5, minmax(100px, 1fr));
|
|
335
|
-
}
|
|
336
|
-
|
|
337
|
-
.historyContent {
|
|
338
|
-
margin: 0 10px;
|
|
339
|
-
position: relative;
|
|
340
|
-
padding-bottom: 5px;
|
|
341
|
-
}
|
|
342
|
-
|
|
343
|
-
.historyCheckpoint {
|
|
344
|
-
background-color: #fe7a51;
|
|
345
|
-
border-radius: 100%;
|
|
346
|
-
width: 18px;
|
|
347
|
-
height: 18px;
|
|
348
|
-
display: inline-block;
|
|
349
|
-
position: relative;
|
|
350
|
-
left: -9px;
|
|
351
|
-
top: 4px;
|
|
352
|
-
|
|
353
|
-
&.zIndex {
|
|
354
|
-
z-index: 10;
|
|
355
|
-
}
|
|
356
|
-
}
|
|
357
|
-
|
|
358
|
-
.historyTableDateLabel {
|
|
359
|
-
color: rgba(0, 0, 0, 0.87);
|
|
360
|
-
font-size: 16px;
|
|
361
|
-
font-weight: 700;
|
|
362
|
-
line-height: 17px;
|
|
363
|
-
text-align: left;
|
|
364
|
-
display: inline-block;
|
|
365
|
-
padding-top: 5px;
|
|
366
|
-
}
|
|
367
|
-
|
|
368
|
-
.bottomMargin {
|
|
369
|
-
margin-bottom: 0px;
|
|
370
|
-
}
|
|
371
|
-
|
|
372
|
-
.historyTableDate {
|
|
373
|
-
color: rgba(0, 0, 0, 0.87);
|
|
374
|
-
font-size: 19px;
|
|
375
|
-
font-weight: 400;
|
|
376
|
-
line-height: 17px;
|
|
377
|
-
text-align: left;
|
|
378
|
-
display: inline-block;
|
|
379
|
-
padding-top: 10px;
|
|
380
|
-
}
|
|
381
|
-
|
|
382
|
-
.historyHorizontalBar {
|
|
383
|
-
background-color: rgba(0, 0, 0, 0.12);
|
|
384
|
-
width: auto;
|
|
385
|
-
height: 2px;
|
|
386
|
-
margin-left: 16px;
|
|
387
|
-
}
|
|
388
|
-
|
|
389
|
-
.smallText {
|
|
390
|
-
font-weight: 500;
|
|
391
|
-
font-size: 14px;
|
|
392
|
-
}
|
|
393
|
-
}
|
|
394
|
-
|
|
395
|
-
.citizen {
|
|
396
|
-
.sidebar {
|
|
397
|
-
margin-top: 54px;
|
|
398
|
-
min-width: 200px;
|
|
399
|
-
|
|
400
|
-
.actions {
|
|
401
|
-
display: flex;
|
|
402
|
-
align-items: center;
|
|
403
|
-
gap: 10px;
|
|
404
|
-
}
|
|
405
|
-
}
|
|
406
|
-
}
|
|
407
|
-
|
|
408
|
-
.link {
|
|
409
|
-
@apply text-primary-main cursor-pointer;
|
|
410
|
-
|
|
411
|
-
:hover {
|
|
412
|
-
@apply text-primary-dark;
|
|
413
|
-
}
|
|
414
|
-
}
|
|
415
|
-
|
|
416
|
-
.RightMostTopBarOptions {
|
|
417
|
-
@apply flex;
|
|
418
|
-
|
|
419
|
-
.EventNotificationWrapper {
|
|
420
|
-
@apply relative cursor-pointer ml-md;
|
|
421
|
-
|
|
422
|
-
span {
|
|
423
|
-
top: -10px;
|
|
424
|
-
right: -10px;
|
|
425
|
-
@apply absolute bg-error h-5 w-5 rounded-full text-center;
|
|
426
|
-
|
|
427
|
-
p {
|
|
428
|
-
line-height: 20px;
|
|
429
|
-
}
|
|
430
|
-
}
|
|
431
|
-
}
|
|
432
|
-
|
|
433
|
-
.select-wrap {
|
|
434
|
-
margin-bottom: unset;
|
|
435
|
-
|
|
436
|
-
svg {
|
|
437
|
-
fill: theme(colors.white);
|
|
438
|
-
}
|
|
439
|
-
}
|
|
440
|
-
}
|
|
441
|
-
|
|
442
|
-
@media (min-width: 640px) {
|
|
443
|
-
.employee {
|
|
444
|
-
.ground-container {
|
|
445
|
-
@apply block;
|
|
446
|
-
}
|
|
447
|
-
|
|
448
|
-
.breadcrumb {
|
|
449
|
-
@apply mb-lg;
|
|
450
|
-
margin-left: 0;
|
|
451
|
-
}
|
|
452
|
-
|
|
453
|
-
.card-home {
|
|
454
|
-
width: 270px;
|
|
455
|
-
margin-right: 10px;
|
|
456
|
-
margin-bottom: 10px;
|
|
457
|
-
}
|
|
458
|
-
|
|
459
|
-
.card-home-hrms {
|
|
460
|
-
width: 405px;
|
|
461
|
-
padding: 0px;
|
|
462
|
-
margin-right: 16px;
|
|
463
|
-
margin-bottom: 16px;
|
|
464
|
-
}
|
|
465
|
-
|
|
466
|
-
.main {
|
|
467
|
-
display: flex;
|
|
468
|
-
flex-direction: column;
|
|
469
|
-
padding-top: 80px;
|
|
470
|
-
margin-left: 72px;
|
|
471
|
-
width: calc(100%-83px);
|
|
472
|
-
}
|
|
473
|
-
|
|
474
|
-
.citizen-home-container {
|
|
475
|
-
display: flex;
|
|
476
|
-
flex-direction: unset !important;
|
|
477
|
-
width: unset !important;
|
|
478
|
-
margin-left: unset !important;
|
|
479
|
-
padding-top: 58px;
|
|
480
|
-
}
|
|
481
|
-
}
|
|
482
|
-
|
|
483
|
-
.citizen {
|
|
484
|
-
.main {
|
|
485
|
-
width: 100%;
|
|
486
|
-
padding-top: 58px;
|
|
487
|
-
height: 100%;
|
|
488
|
-
display: flex;
|
|
489
|
-
justify-content: center;
|
|
490
|
-
}
|
|
491
|
-
|
|
492
|
-
.center-container {}
|
|
493
|
-
}
|
|
494
|
-
}
|
|
495
|
-
|
|
496
|
-
.fullWidth {
|
|
497
|
-
width: 100%;
|
|
498
|
-
}
|
|
499
|
-
|
|
500
|
-
.multi-select-container {
|
|
501
|
-
.disposal-text {
|
|
502
|
-
@apply font-bold;
|
|
503
|
-
}
|
|
504
|
-
|
|
505
|
-
.disposal-info {
|
|
506
|
-
@apply my-md ml-sm;
|
|
507
|
-
}
|
|
508
|
-
|
|
509
|
-
.disposal-action-bar {
|
|
510
|
-
@apply flex justify-between items-center;
|
|
511
|
-
}
|
|
512
|
-
}
|
|
513
|
-
|
|
514
|
-
@screen dt {
|
|
515
|
-
.d-grid {
|
|
516
|
-
display: grid;
|
|
517
|
-
grid-template-columns: 250px 250px 250px 250px;
|
|
518
|
-
column-gap: 10px;
|
|
519
|
-
row-gap: 2px;
|
|
520
|
-
margin-left: -12px;
|
|
521
|
-
}
|
|
522
|
-
}
|
|
523
|
-
|
|
524
|
-
.m-auto {
|
|
525
|
-
margin: auto !important;
|
|
526
|
-
}
|
|
527
|
-
|
|
528
|
-
.mb-50 {
|
|
529
|
-
margin-bottom: 50px;
|
|
530
|
-
}
|
|
531
|
-
|
|
532
|
-
.mb-25 {
|
|
533
|
-
margin-bottom: 25px;
|
|
534
|
-
}
|
|
535
|
-
|
|
536
|
-
.back-wrapper {
|
|
537
|
-
display: flex;
|
|
538
|
-
justify-content: space-between;
|
|
539
|
-
|
|
540
|
-
.top-back-btn {
|
|
541
|
-
margin-bottom: 0px;
|
|
542
|
-
color: theme(colors.white);
|
|
543
|
-
margin-right: 1em;
|
|
544
|
-
|
|
545
|
-
& svg {
|
|
546
|
-
fill: theme(colors.white);
|
|
547
|
-
}
|
|
548
|
-
}
|
|
549
|
-
|
|
550
|
-
.hambuger-back-wrapper {
|
|
551
|
-
display: flex;
|
|
552
|
-
|
|
553
|
-
@media (min-width: 780px) {
|
|
554
|
-
.hamburger-span {
|
|
555
|
-
display: none;
|
|
556
|
-
}
|
|
557
|
-
}
|
|
558
|
-
}
|
|
559
|
-
}
|
|
560
|
-
|
|
561
|
-
@screen dt {
|
|
562
|
-
.back-wrapper {
|
|
563
|
-
margin-right: 2rem;
|
|
564
|
-
margin-left: 2rem;
|
|
565
|
-
}
|
|
566
|
-
}
|
|
567
|
-
|
|
568
|
-
.user-profile {
|
|
569
|
-
@media (min-width: 780px) {
|
|
570
|
-
width: calc(100% - 219px);
|
|
571
|
-
margin-left: 16px;
|
|
572
|
-
margin-right: 16px;
|
|
573
|
-
}
|
|
574
|
-
}
|
|
575
|
-
|
|
576
|
-
.link {
|
|
577
|
-
a {
|
|
578
|
-
color: inherit;
|
|
579
|
-
text-decoration: inherit
|
|
580
|
-
}
|
|
581
|
-
}
|
|
582
|
-
|
|
583
|
-
.breadcrumb {
|
|
584
|
-
a {
|
|
585
|
-
color: inherit;
|
|
586
|
-
text-decoration: inherit
|
|
587
|
-
}
|
|
588
|
-
}
|
|
589
|
-
|
|
590
|
-
.sidebar-link.active {
|
|
591
|
-
.custom-link {
|
|
592
|
-
text-decoration: none;
|
|
593
|
-
|
|
594
|
-
div {
|
|
595
|
-
span {
|
|
596
|
-
color: theme(colors.primary.main) !important;
|
|
597
|
-
text-decoration: none;
|
|
598
|
-
}
|
|
599
|
-
}
|
|
600
|
-
}
|
|
601
|
-
}
|
|
602
|
-
|
|
603
|
-
.bread-crumb {
|
|
604
|
-
a {
|
|
605
|
-
color: inherit;
|
|
606
|
-
text-decoration: inherit
|
|
607
|
-
}
|
|
608
|
-
}
|
|
609
|
-
|
|
610
|
-
.sidebar-link {
|
|
611
|
-
.custom-link {
|
|
612
|
-
text-decoration: none;
|
|
613
|
-
|
|
614
|
-
div {
|
|
615
|
-
span {
|
|
616
|
-
color: theme(colors.white);
|
|
617
|
-
text-decoration: none;
|
|
618
|
-
}
|
|
619
|
-
}
|
|
620
|
-
}
|
|
621
|
-
}
|
|
622
|
-
|
|
623
|
-
/* TODO fix required NABEEL/ANIL for home screen card */
|
|
624
|
-
.customEmployeeCard {
|
|
625
|
-
@apply m-sm !important;
|
|
1
|
+
@import "./login.scss";
|
|
2
|
+
|
|
3
|
+
/* TODO: convert using tailwind */
|
|
4
|
+
.employee {
|
|
5
|
+
.breadcrumb {
|
|
6
|
+
@apply ml-sm mb-lg;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.ground-container {
|
|
10
|
+
margin-bottom: 56px;
|
|
11
|
+
@apply flex flex-col;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.card-home {
|
|
15
|
+
font-size: 16px;
|
|
16
|
+
padding: 0 0 16px 0;
|
|
17
|
+
width: 92vw;
|
|
18
|
+
display: inline-block;
|
|
19
|
+
margin: 8px auto;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.home-action-cards {
|
|
23
|
+
height: auto !important;
|
|
24
|
+
min-height: 263px;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.topbar {
|
|
28
|
+
position: fixed;
|
|
29
|
+
top: 0;
|
|
30
|
+
width: 100%;
|
|
31
|
+
padding: 16px 24px;
|
|
32
|
+
background: white;
|
|
33
|
+
box-shadow: rgba(0, 0, 0, 0.24) 0 1px 4px;
|
|
34
|
+
z-index: 9999;
|
|
35
|
+
|
|
36
|
+
img {
|
|
37
|
+
display: inline;
|
|
38
|
+
|
|
39
|
+
&.city {
|
|
40
|
+
margin-right: 8px;
|
|
41
|
+
height: 48px;
|
|
42
|
+
width: 48px;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
&.state {
|
|
46
|
+
height: 20px;
|
|
47
|
+
max-height: 20px;
|
|
48
|
+
width: auto;
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.ulb {
|
|
53
|
+
font-weight: bold;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.right {
|
|
57
|
+
float: right;
|
|
58
|
+
margin-top: 12px;
|
|
59
|
+
|
|
60
|
+
.user-img-txt {
|
|
61
|
+
background: theme(colors.primary.main);
|
|
62
|
+
padding: 10px 15px;
|
|
63
|
+
border-radius: 50%;
|
|
64
|
+
color: white;
|
|
65
|
+
font-weight: 700;
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.main {
|
|
71
|
+
padding-top: 88px;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.loginContainer {
|
|
75
|
+
padding-top: 88px;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
@media screen and (max-width: 640px) {
|
|
80
|
+
.grounded-container {
|
|
81
|
+
margin-left: 0px;
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
@media screen and (min-width: 641px) {
|
|
86
|
+
.grounded-container {
|
|
87
|
+
margin-left: 64px;
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.react-time-picker {
|
|
92
|
+
width: 100%;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
.react-time-picker__wrapper {
|
|
96
|
+
border: 1px solid theme(colors.inputBorder);
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.react-time-picker__clock {
|
|
100
|
+
display: none;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.react-time-picker__inputGroup__leadingZero {
|
|
104
|
+
padding-right: 8px;
|
|
105
|
+
display: inline !important;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.react-time-picker__inputGroup__input {
|
|
109
|
+
padding: 0;
|
|
110
|
+
min-width: none;
|
|
111
|
+
outline: none !important;
|
|
112
|
+
border: none !important;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.react-time-picker__wrapper {
|
|
116
|
+
padding-left: 8px;
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.citizen {
|
|
121
|
+
.main {
|
|
122
|
+
padding-top: 82px;
|
|
123
|
+
min-height: calc(100vh - 90px);
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
.citizen,
|
|
128
|
+
.employee {
|
|
129
|
+
.sidebar {
|
|
130
|
+
position: fixed;
|
|
131
|
+
left: 0;
|
|
132
|
+
background: #0B4B66;
|
|
133
|
+
height: 100%;
|
|
134
|
+
color: theme(colors.white);
|
|
135
|
+
margin-top: 83px;
|
|
136
|
+
z-index: 999;
|
|
137
|
+
transition: 0.3s ease all;
|
|
138
|
+
white-space: nowrap;
|
|
139
|
+
height: calc(100vh - 36px);
|
|
140
|
+
padding-bottom: 5rem;
|
|
141
|
+
|
|
142
|
+
.actions {
|
|
143
|
+
cursor: pointer;
|
|
144
|
+
display: flex;
|
|
145
|
+
align-items: center;
|
|
146
|
+
|
|
147
|
+
.tooltip {
|
|
148
|
+
margin-left: 16px;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
margin-bottom: 0px;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
svg {
|
|
155
|
+
width: 24px;
|
|
156
|
+
height: 24px;
|
|
157
|
+
fill: theme(colors.white);
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
a {
|
|
161
|
+
display: flex;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.sidebar-link {
|
|
165
|
+
display: flex;
|
|
166
|
+
color: theme(colors.white);
|
|
167
|
+
justify-content: space-between;
|
|
168
|
+
align-items: center;
|
|
169
|
+
padding: 20px;
|
|
170
|
+
font-size: 14px;
|
|
171
|
+
|
|
172
|
+
&.level-0 {
|
|
173
|
+
margin: 0 0.3rem 0 0.3rem;
|
|
174
|
+
|
|
175
|
+
&.select-level {
|
|
176
|
+
border-top: 1px solid;
|
|
177
|
+
border-bottom: 1px solid;
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
&.active {
|
|
182
|
+
color: theme(colors.primary.main) !important;
|
|
183
|
+
|
|
184
|
+
border-right: none;
|
|
185
|
+
|
|
186
|
+
svg {
|
|
187
|
+
fill: theme(colors.primary.main) !important;
|
|
188
|
+
}
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
.employee-search-input {
|
|
192
|
+
border: none;
|
|
193
|
+
outline: none;
|
|
194
|
+
background-color: rgba(0, 0, 0, 0);
|
|
195
|
+
margin-left: 13px;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
.custom-link {
|
|
199
|
+
.tooltip {
|
|
200
|
+
margin-left: 16px;
|
|
201
|
+
|
|
202
|
+
span {
|
|
203
|
+
margin-left: unset !important;
|
|
204
|
+
left: unset !important;
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
svg {
|
|
210
|
+
fill: theme(colors.white) !important;
|
|
211
|
+
width: 21px;
|
|
212
|
+
height: 21px;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
&:hover {
|
|
216
|
+
|
|
217
|
+
background-color: #0B4B66;
|
|
218
|
+
|
|
219
|
+
cursor: pointer;
|
|
220
|
+
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
.search-icon-wrapper {
|
|
224
|
+
border: 2px solid theme(colors.white);
|
|
225
|
+
border-radius: 4px;
|
|
226
|
+
padding: 5px;
|
|
227
|
+
|
|
228
|
+
svg {
|
|
229
|
+
fill: theme(colors.white) !important;
|
|
230
|
+
width: 21px;
|
|
231
|
+
height: 21px;
|
|
232
|
+
|
|
233
|
+
path {
|
|
234
|
+
fill: theme(colors.white) !important;
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
.dropdown-link {
|
|
241
|
+
height: 40px;
|
|
242
|
+
display: flex;
|
|
243
|
+
margin-left: 40px;
|
|
244
|
+
align-items: center;
|
|
245
|
+
text-decoration: none;
|
|
246
|
+
color: theme(colors.white);
|
|
247
|
+
font-size: 14px;
|
|
248
|
+
|
|
249
|
+
.actions {
|
|
250
|
+
.tooltiptext {
|
|
251
|
+
left: unset;
|
|
252
|
+
right: 1%;
|
|
253
|
+
}
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
svg {
|
|
257
|
+
width: 20px;
|
|
258
|
+
height: 20px;
|
|
259
|
+
fill: theme(colors.white);
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
&:hover {
|
|
263
|
+
background-color: #6A8E9D;
|
|
264
|
+
opacity: 0.8;
|
|
265
|
+
cursor: pointer;
|
|
266
|
+
|
|
267
|
+
svg {
|
|
268
|
+
fill: #fe7a51 !important;
|
|
269
|
+
}
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
|
|
273
|
+
&.active {
|
|
274
|
+
border-left: 4px solid theme(colors.primary.main);
|
|
275
|
+
|
|
276
|
+
&.level-0 {}
|
|
277
|
+
|
|
278
|
+
&.level-1 {
|
|
279
|
+
border-left: 8.5px solid theme(colors.primary.main);
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
&.level-2 {
|
|
283
|
+
border-left: 4px solid theme(colors.primary.main);
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
&.level-3 {}
|
|
287
|
+
|
|
288
|
+
color: theme(colors.primary.main) !important;
|
|
289
|
+
border-right: none;
|
|
290
|
+
|
|
291
|
+
svg {
|
|
292
|
+
fill: theme(colors.primary.main) !important;
|
|
293
|
+
}
|
|
294
|
+
}
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
span {
|
|
298
|
+
margin-left: 16px;
|
|
299
|
+
text-overflow: ellipsis;
|
|
300
|
+
overflow: hidden;
|
|
301
|
+
white-space: nowrap;
|
|
302
|
+
}
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
.wrapperStyles {
|
|
306
|
+
margin-top: -5px;
|
|
307
|
+
padding-left: 20px;
|
|
308
|
+
padding-top: 10px;
|
|
309
|
+
|
|
310
|
+
.containerStyles {
|
|
311
|
+
border: 1px solid theme(colors.text.secondary);
|
|
312
|
+
padding: 16px;
|
|
313
|
+
margin-bottom: 20px;
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
&.leftBorder {
|
|
317
|
+
border-left: 2px solid rgba(0, 0, 0, 0.12);
|
|
318
|
+
}
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
.rowContainerStyles {
|
|
322
|
+
@apply flex flex-col;
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
.tableContainerStyles {
|
|
326
|
+
border: 1px solid theme(colors.text.secondary);
|
|
327
|
+
padding: 16px;
|
|
328
|
+
margin-bottom: 20px;
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
.historyTables {
|
|
332
|
+
display: grid;
|
|
333
|
+
grid-template-rows: 100px 100px;
|
|
334
|
+
grid-template-columns: repeat(5, minmax(100px, 1fr));
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
.historyContent {
|
|
338
|
+
margin: 0 10px;
|
|
339
|
+
position: relative;
|
|
340
|
+
padding-bottom: 5px;
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
.historyCheckpoint {
|
|
344
|
+
background-color: #fe7a51;
|
|
345
|
+
border-radius: 100%;
|
|
346
|
+
width: 18px;
|
|
347
|
+
height: 18px;
|
|
348
|
+
display: inline-block;
|
|
349
|
+
position: relative;
|
|
350
|
+
left: -9px;
|
|
351
|
+
top: 4px;
|
|
352
|
+
|
|
353
|
+
&.zIndex {
|
|
354
|
+
z-index: 10;
|
|
355
|
+
}
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
.historyTableDateLabel {
|
|
359
|
+
color: rgba(0, 0, 0, 0.87);
|
|
360
|
+
font-size: 16px;
|
|
361
|
+
font-weight: 700;
|
|
362
|
+
line-height: 17px;
|
|
363
|
+
text-align: left;
|
|
364
|
+
display: inline-block;
|
|
365
|
+
padding-top: 5px;
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
.bottomMargin {
|
|
369
|
+
margin-bottom: 0px;
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
.historyTableDate {
|
|
373
|
+
color: rgba(0, 0, 0, 0.87);
|
|
374
|
+
font-size: 19px;
|
|
375
|
+
font-weight: 400;
|
|
376
|
+
line-height: 17px;
|
|
377
|
+
text-align: left;
|
|
378
|
+
display: inline-block;
|
|
379
|
+
padding-top: 10px;
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
.historyHorizontalBar {
|
|
383
|
+
background-color: rgba(0, 0, 0, 0.12);
|
|
384
|
+
width: auto;
|
|
385
|
+
height: 2px;
|
|
386
|
+
margin-left: 16px;
|
|
387
|
+
}
|
|
388
|
+
|
|
389
|
+
.smallText {
|
|
390
|
+
font-weight: 500;
|
|
391
|
+
font-size: 14px;
|
|
392
|
+
}
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
.citizen {
|
|
396
|
+
.sidebar {
|
|
397
|
+
margin-top: 54px;
|
|
398
|
+
min-width: 200px;
|
|
399
|
+
|
|
400
|
+
.actions {
|
|
401
|
+
display: flex;
|
|
402
|
+
align-items: center;
|
|
403
|
+
gap: 10px;
|
|
404
|
+
}
|
|
405
|
+
}
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
.link {
|
|
409
|
+
@apply text-primary-main cursor-pointer;
|
|
410
|
+
|
|
411
|
+
:hover {
|
|
412
|
+
@apply text-primary-dark;
|
|
413
|
+
}
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
.RightMostTopBarOptions {
|
|
417
|
+
@apply flex;
|
|
418
|
+
|
|
419
|
+
.EventNotificationWrapper {
|
|
420
|
+
@apply relative cursor-pointer ml-md;
|
|
421
|
+
|
|
422
|
+
span {
|
|
423
|
+
top: -10px;
|
|
424
|
+
right: -10px;
|
|
425
|
+
@apply absolute bg-error h-5 w-5 rounded-full text-center;
|
|
426
|
+
|
|
427
|
+
p {
|
|
428
|
+
line-height: 20px;
|
|
429
|
+
}
|
|
430
|
+
}
|
|
431
|
+
}
|
|
432
|
+
|
|
433
|
+
.select-wrap {
|
|
434
|
+
margin-bottom: unset;
|
|
435
|
+
|
|
436
|
+
svg {
|
|
437
|
+
fill: theme(colors.white);
|
|
438
|
+
}
|
|
439
|
+
}
|
|
440
|
+
}
|
|
441
|
+
|
|
442
|
+
@media (min-width: 640px) {
|
|
443
|
+
.employee {
|
|
444
|
+
.ground-container {
|
|
445
|
+
@apply block;
|
|
446
|
+
}
|
|
447
|
+
|
|
448
|
+
.breadcrumb {
|
|
449
|
+
@apply mb-lg;
|
|
450
|
+
margin-left: 0;
|
|
451
|
+
}
|
|
452
|
+
|
|
453
|
+
.card-home {
|
|
454
|
+
width: 270px;
|
|
455
|
+
margin-right: 10px;
|
|
456
|
+
margin-bottom: 10px;
|
|
457
|
+
}
|
|
458
|
+
|
|
459
|
+
.card-home-hrms {
|
|
460
|
+
width: 405px;
|
|
461
|
+
padding: 0px;
|
|
462
|
+
margin-right: 16px;
|
|
463
|
+
margin-bottom: 16px;
|
|
464
|
+
}
|
|
465
|
+
|
|
466
|
+
.main {
|
|
467
|
+
display: flex;
|
|
468
|
+
flex-direction: column;
|
|
469
|
+
padding-top: 80px;
|
|
470
|
+
margin-left: 72px;
|
|
471
|
+
width: calc(100%-83px);
|
|
472
|
+
}
|
|
473
|
+
|
|
474
|
+
.citizen-home-container {
|
|
475
|
+
display: flex;
|
|
476
|
+
flex-direction: unset !important;
|
|
477
|
+
width: unset !important;
|
|
478
|
+
margin-left: unset !important;
|
|
479
|
+
padding-top: 58px;
|
|
480
|
+
}
|
|
481
|
+
}
|
|
482
|
+
|
|
483
|
+
.citizen {
|
|
484
|
+
.main {
|
|
485
|
+
width: 100%;
|
|
486
|
+
padding-top: 58px;
|
|
487
|
+
height: 100%;
|
|
488
|
+
display: flex;
|
|
489
|
+
justify-content: center;
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
.center-container {}
|
|
493
|
+
}
|
|
494
|
+
}
|
|
495
|
+
|
|
496
|
+
.fullWidth {
|
|
497
|
+
width: 100%;
|
|
498
|
+
}
|
|
499
|
+
|
|
500
|
+
.multi-select-container {
|
|
501
|
+
.disposal-text {
|
|
502
|
+
@apply font-bold;
|
|
503
|
+
}
|
|
504
|
+
|
|
505
|
+
.disposal-info {
|
|
506
|
+
@apply my-md ml-sm;
|
|
507
|
+
}
|
|
508
|
+
|
|
509
|
+
.disposal-action-bar {
|
|
510
|
+
@apply flex justify-between items-center;
|
|
511
|
+
}
|
|
512
|
+
}
|
|
513
|
+
|
|
514
|
+
@screen dt {
|
|
515
|
+
.d-grid {
|
|
516
|
+
display: grid;
|
|
517
|
+
grid-template-columns: 250px 250px 250px 250px;
|
|
518
|
+
column-gap: 10px;
|
|
519
|
+
row-gap: 2px;
|
|
520
|
+
margin-left: -12px;
|
|
521
|
+
}
|
|
522
|
+
}
|
|
523
|
+
|
|
524
|
+
.m-auto {
|
|
525
|
+
margin: auto !important;
|
|
526
|
+
}
|
|
527
|
+
|
|
528
|
+
.mb-50 {
|
|
529
|
+
margin-bottom: 50px;
|
|
530
|
+
}
|
|
531
|
+
|
|
532
|
+
.mb-25 {
|
|
533
|
+
margin-bottom: 25px;
|
|
534
|
+
}
|
|
535
|
+
|
|
536
|
+
.back-wrapper {
|
|
537
|
+
display: flex;
|
|
538
|
+
justify-content: space-between;
|
|
539
|
+
|
|
540
|
+
.top-back-btn {
|
|
541
|
+
margin-bottom: 0px;
|
|
542
|
+
color: theme(colors.white);
|
|
543
|
+
margin-right: 1em;
|
|
544
|
+
|
|
545
|
+
& svg {
|
|
546
|
+
fill: theme(colors.white);
|
|
547
|
+
}
|
|
548
|
+
}
|
|
549
|
+
|
|
550
|
+
.hambuger-back-wrapper {
|
|
551
|
+
display: flex;
|
|
552
|
+
|
|
553
|
+
@media (min-width: 780px) {
|
|
554
|
+
.hamburger-span {
|
|
555
|
+
display: none;
|
|
556
|
+
}
|
|
557
|
+
}
|
|
558
|
+
}
|
|
559
|
+
}
|
|
560
|
+
|
|
561
|
+
@screen dt {
|
|
562
|
+
.back-wrapper {
|
|
563
|
+
margin-right: 2rem;
|
|
564
|
+
margin-left: 2rem;
|
|
565
|
+
}
|
|
566
|
+
}
|
|
567
|
+
|
|
568
|
+
.user-profile {
|
|
569
|
+
@media (min-width: 780px) {
|
|
570
|
+
width: calc(100% - 219px);
|
|
571
|
+
margin-left: 16px;
|
|
572
|
+
margin-right: 16px;
|
|
573
|
+
}
|
|
574
|
+
}
|
|
575
|
+
|
|
576
|
+
.link {
|
|
577
|
+
a {
|
|
578
|
+
color: inherit;
|
|
579
|
+
text-decoration: inherit
|
|
580
|
+
}
|
|
581
|
+
}
|
|
582
|
+
|
|
583
|
+
.breadcrumb {
|
|
584
|
+
a {
|
|
585
|
+
color: inherit;
|
|
586
|
+
text-decoration: inherit
|
|
587
|
+
}
|
|
588
|
+
}
|
|
589
|
+
|
|
590
|
+
.sidebar-link.active {
|
|
591
|
+
.custom-link {
|
|
592
|
+
text-decoration: none;
|
|
593
|
+
|
|
594
|
+
div {
|
|
595
|
+
span {
|
|
596
|
+
color: theme(colors.primary.main) !important;
|
|
597
|
+
text-decoration: none;
|
|
598
|
+
}
|
|
599
|
+
}
|
|
600
|
+
}
|
|
601
|
+
}
|
|
602
|
+
|
|
603
|
+
.bread-crumb {
|
|
604
|
+
a {
|
|
605
|
+
color: inherit;
|
|
606
|
+
text-decoration: inherit
|
|
607
|
+
}
|
|
608
|
+
}
|
|
609
|
+
|
|
610
|
+
.sidebar-link {
|
|
611
|
+
.custom-link {
|
|
612
|
+
text-decoration: none;
|
|
613
|
+
|
|
614
|
+
div {
|
|
615
|
+
span {
|
|
616
|
+
color: theme(colors.white);
|
|
617
|
+
text-decoration: none;
|
|
618
|
+
}
|
|
619
|
+
}
|
|
620
|
+
}
|
|
621
|
+
}
|
|
622
|
+
|
|
623
|
+
/* TODO fix required NABEEL/ANIL for home screen card */
|
|
624
|
+
.customEmployeeCard {
|
|
625
|
+
@apply m-sm !important;
|
|
626
626
|
}
|