@pmidc/upyog-css 1.0.48 → 1.0.50
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 +438 -59
- package/dist/index.min.css +1 -1
- package/package.json +1 -1
- package/src/components/datatable.scss +98 -53
- package/src/pages/citizen/loaderMessage.scss +296 -7
package/package.json
CHANGED
|
@@ -1,70 +1,115 @@
|
|
|
1
1
|
.data-table {
|
|
2
|
-
|
|
2
|
+
color: #0d43a7;
|
|
3
|
+
border: 1px solid #ccc;
|
|
4
|
+
border-radius: 8px;
|
|
5
|
+
overflow: hidden;
|
|
6
|
+
width: 100%;
|
|
7
|
+
border-collapse: collapse;
|
|
8
|
+
padding-bottom: 0;
|
|
9
|
+
}
|
|
3
10
|
|
|
4
|
-
|
|
5
|
-
|
|
11
|
+
.data-table .row {
|
|
12
|
+
display: flex;
|
|
13
|
+
justify-content: space-between;
|
|
14
|
+
align-items: center;
|
|
15
|
+
width: 100%;
|
|
16
|
+
margin-bottom: 0;
|
|
17
|
+
padding: 15px 30px;
|
|
18
|
+
border-bottom: 1px solid var(--border, #e0e0e0);
|
|
19
|
+
}
|
|
6
20
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
}
|
|
21
|
+
.data-table .row:nth-child(odd) {
|
|
22
|
+
background-color: #eeeeee;
|
|
23
|
+
}
|
|
11
24
|
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
}
|
|
25
|
+
.data-table .row:nth-child(even) {
|
|
26
|
+
background-color: #ffffff;
|
|
27
|
+
}
|
|
16
28
|
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
width: 70%;
|
|
24
|
-
@apply text-heading-s text-text-secondary;
|
|
25
|
-
}
|
|
26
|
-
}
|
|
29
|
+
.data-table .row h2 {
|
|
30
|
+
font-weight: 600;
|
|
31
|
+
text-align: left;
|
|
32
|
+
width: 60%;
|
|
33
|
+
margin: 0;
|
|
34
|
+
}
|
|
27
35
|
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
36
|
+
.data-table .row .value {
|
|
37
|
+
text-align: left;
|
|
38
|
+
width: 40%;
|
|
39
|
+
word-break: break-word;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.data-table .row .caption {
|
|
43
|
+
font-size: 0.875rem;
|
|
44
|
+
color: var(--text-secondary, #666);
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.data-table .row span {
|
|
48
|
+
width: 70%;
|
|
49
|
+
display: contents;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.data-table .last {
|
|
53
|
+
border: none;
|
|
54
|
+
padding: 0;
|
|
55
|
+
margin: 0;
|
|
33
56
|
}
|
|
34
57
|
|
|
35
58
|
.employee-data-table {
|
|
36
|
-
|
|
37
|
-
|
|
59
|
+
color: #0d43a7;
|
|
60
|
+
border: 1px solid #ccc;
|
|
61
|
+
border-radius: 8px;
|
|
62
|
+
overflow: hidden;
|
|
63
|
+
width: 100%;
|
|
64
|
+
border-collapse: collapse;
|
|
65
|
+
padding-bottom: 0;
|
|
66
|
+
}
|
|
38
67
|
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
68
|
+
.employee-data-table .row {
|
|
69
|
+
display: flex;
|
|
70
|
+
justify-content: space-between;
|
|
71
|
+
align-items: center;
|
|
72
|
+
width: 100%;
|
|
73
|
+
margin-bottom: 0;
|
|
74
|
+
padding: 15px 30px;
|
|
75
|
+
border-bottom: 1px solid var(--border, #e0e0e0);
|
|
76
|
+
}
|
|
43
77
|
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
}
|
|
78
|
+
.employee-data-table .row:nth-child(odd) {
|
|
79
|
+
background-color: #eeeeee;
|
|
80
|
+
}
|
|
48
81
|
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
}
|
|
82
|
+
.employee-data-table .row:nth-child(even) {
|
|
83
|
+
background-color: #ffffff;
|
|
84
|
+
}
|
|
53
85
|
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
margin-left: 15px !important;
|
|
61
|
-
}
|
|
86
|
+
.employee-data-table .row h2 {
|
|
87
|
+
font-weight: 600;
|
|
88
|
+
text-align: left;
|
|
89
|
+
width: 60%;
|
|
90
|
+
margin: 0;
|
|
91
|
+
}
|
|
62
92
|
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
93
|
+
.employee-data-table .row .value {
|
|
94
|
+
text-align: left;
|
|
95
|
+
width: 40%;
|
|
96
|
+
word-break: break-word;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.employee-data-table .row .caption {
|
|
100
|
+
font-size: 0.875rem;
|
|
101
|
+
color: var(--text-secondary, #666);
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.employee-data-table .row span {
|
|
105
|
+
width: 70%;
|
|
106
|
+
display: contents;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
.employee-data-table .last {
|
|
110
|
+
border: none;
|
|
111
|
+
padding: 0;
|
|
112
|
+
margin: 0;
|
|
68
113
|
}
|
|
69
114
|
|
|
70
115
|
.pt-citizen {
|
|
@@ -1,7 +1,296 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
.loader-message {
|
|
2
|
+
overflow: hidden;
|
|
3
|
+
position: relative;
|
|
4
|
+
height: 100vh;
|
|
5
|
+
width: 100vw;
|
|
6
|
+
display: flex;
|
|
7
|
+
justify-content: center;
|
|
8
|
+
align-items: center;
|
|
9
|
+
flex-direction: column;
|
|
10
|
+
font-weight: 600;
|
|
11
|
+
font-size: 14px;
|
|
12
|
+
color: #000;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.loader-message .body {
|
|
16
|
+
position: absolute;
|
|
17
|
+
left: 44%;
|
|
18
|
+
top: 50%;
|
|
19
|
+
animation: speeder .4s linear infinite;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.loader-message .body>span {
|
|
23
|
+
height: 5px;
|
|
24
|
+
width: 35px;
|
|
25
|
+
background: #0d43a7;
|
|
26
|
+
position: absolute;
|
|
27
|
+
top: -19px;
|
|
28
|
+
left: -40px;
|
|
29
|
+
border-radius: 2px 10px 1px 0;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.loader-message .base span {
|
|
33
|
+
position: absolute;
|
|
34
|
+
width: 0;
|
|
35
|
+
height: 0;
|
|
36
|
+
border-top: 6px solid transparent;
|
|
37
|
+
border-right: 100px solid #000;
|
|
38
|
+
border-bottom: 6px solid transparent;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.loader-message .base span::before {
|
|
42
|
+
content: "";
|
|
43
|
+
height: 22px;
|
|
44
|
+
width: 22px;
|
|
45
|
+
border-radius: 50%;
|
|
46
|
+
background: #0d43a7;
|
|
47
|
+
position: absolute;
|
|
48
|
+
right: -110px;
|
|
49
|
+
top: -16px;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.loader-message .base span::after {
|
|
53
|
+
content: "";
|
|
54
|
+
position: absolute;
|
|
55
|
+
width: 0;
|
|
56
|
+
height: 0;
|
|
57
|
+
border-top: 0 solid transparent;
|
|
58
|
+
border-right: 55px solid #000;
|
|
59
|
+
border-bottom: 16px solid transparent;
|
|
60
|
+
top: -16px;
|
|
61
|
+
right: -98px;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.loader-message .face {
|
|
65
|
+
position: absolute;
|
|
66
|
+
height: 12px;
|
|
67
|
+
width: 20px;
|
|
68
|
+
background: #0d43a7;
|
|
69
|
+
border-radius: 20px 20px 0 0;
|
|
70
|
+
transform: rotate(-40deg);
|
|
71
|
+
right: -125px;
|
|
72
|
+
top: -15px;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.loader-message .face::after {
|
|
76
|
+
content: "";
|
|
77
|
+
height: 12px;
|
|
78
|
+
width: 12px;
|
|
79
|
+
background: #0d43a7;
|
|
80
|
+
right: 4px;
|
|
81
|
+
top: 7px;
|
|
82
|
+
position: absolute;
|
|
83
|
+
transform: rotate(40deg);
|
|
84
|
+
transform-origin: 50% 50%;
|
|
85
|
+
border-radius: 0 0 0 2px;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.loader-message .body>span>span {
|
|
89
|
+
width: 30px;
|
|
90
|
+
height: 1px;
|
|
91
|
+
background: #0d43a7;
|
|
92
|
+
position: absolute;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
.loader-message .body>span>span:nth-child(1) {
|
|
96
|
+
top: 0;
|
|
97
|
+
animation: fazer1 .2s linear infinite;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.loader-message .body>span>span:nth-child(2) {
|
|
101
|
+
top: 3px;
|
|
102
|
+
animation: fazer2 .4s linear infinite;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.loader-message .body>span>span:nth-child(3) {
|
|
106
|
+
top: 1px;
|
|
107
|
+
animation: fazer3 .4s linear infinite;
|
|
108
|
+
animation-delay: -1s;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.loader-message .body>span>span:nth-child(4) {
|
|
112
|
+
top: 4px;
|
|
113
|
+
animation: fazer4 1s linear infinite;
|
|
114
|
+
animation-delay: -1s;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
@keyframes fazer1 {
|
|
118
|
+
0% {
|
|
119
|
+
left: 0;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
100% {
|
|
123
|
+
left: -80px;
|
|
124
|
+
opacity: 0;
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
@keyframes fazer2 {
|
|
129
|
+
0% {
|
|
130
|
+
left: 0;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
100% {
|
|
134
|
+
left: -100px;
|
|
135
|
+
opacity: 0;
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
@keyframes fazer3 {
|
|
140
|
+
0% {
|
|
141
|
+
left: 0;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
100% {
|
|
145
|
+
left: -50px;
|
|
146
|
+
opacity: 0;
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
@keyframes fazer4 {
|
|
151
|
+
0% {
|
|
152
|
+
left: 0;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
100% {
|
|
156
|
+
left: -150px;
|
|
157
|
+
opacity: 0;
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
@keyframes speeder {
|
|
162
|
+
0% {
|
|
163
|
+
transform: translate(2px, 1px) rotate(0deg);
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
10% {
|
|
167
|
+
transform: translate(-1px, -3px) rotate(-1deg);
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
20% {
|
|
171
|
+
transform: translate(-2px, 0px) rotate(1deg);
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
30% {
|
|
175
|
+
transform: translate(1px, 2px) rotate(0deg);
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
40% {
|
|
179
|
+
transform: translate(1px, -1px) rotate(1deg);
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
50% {
|
|
183
|
+
transform: translate(-1px, 3px) rotate(-1deg);
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
60% {
|
|
187
|
+
transform: translate(-1px, 1px) rotate(0deg);
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
70% {
|
|
191
|
+
transform: translate(3px, 1px) rotate(-1deg);
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
80% {
|
|
195
|
+
transform: translate(-2px, -1px) rotate(1deg);
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
90% {
|
|
199
|
+
transform: translate(2px, 1px) rotate(0deg);
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
100% {
|
|
203
|
+
transform: translate(1px, -2px) rotate(-1deg);
|
|
204
|
+
}
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
.loader-message .longfazers {
|
|
208
|
+
position: absolute;
|
|
209
|
+
width: 100%;
|
|
210
|
+
height: 100%;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
.loader-message .longfazers span {
|
|
214
|
+
position: absolute;
|
|
215
|
+
height: 2px;
|
|
216
|
+
width: 20%;
|
|
217
|
+
background: #0d43a7;
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
.loader-message .longfazers span:nth-child(1) {
|
|
221
|
+
top: 20%;
|
|
222
|
+
animation: lf .6s linear infinite;
|
|
223
|
+
animation-delay: -5s;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
.loader-message .longfazers span:nth-child(2) {
|
|
227
|
+
top: 40%;
|
|
228
|
+
animation: lf2 .8s linear infinite;
|
|
229
|
+
animation-delay: -1s;
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
.loader-message .longfazers span:nth-child(3) {
|
|
233
|
+
top: 60%;
|
|
234
|
+
animation: lf3 .6s linear infinite;
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
.loader-message .longfazers span:nth-child(4) {
|
|
238
|
+
top: 80%;
|
|
239
|
+
animation: lf4 .5s linear infinite;
|
|
240
|
+
animation-delay: -3s;
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
.loader-message .message {
|
|
244
|
+
position: absolute;
|
|
245
|
+
font-family: 'Open Sans', sans-serif;
|
|
246
|
+
font-weight: 600;
|
|
247
|
+
font-size: 12px;
|
|
248
|
+
text-transform: uppercase;
|
|
249
|
+
left: 44%;
|
|
250
|
+
top: 58%;
|
|
251
|
+
margin-left: -20px;
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
@keyframes lf {
|
|
255
|
+
0% {
|
|
256
|
+
left: 200%;
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
100% {
|
|
260
|
+
left: -200%;
|
|
261
|
+
opacity: 0;
|
|
262
|
+
}
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
@keyframes lf2 {
|
|
266
|
+
0% {
|
|
267
|
+
left: 200%;
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
100% {
|
|
271
|
+
left: -200%;
|
|
272
|
+
opacity: 0;
|
|
273
|
+
}
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
@keyframes lf3 {
|
|
277
|
+
0% {
|
|
278
|
+
left: 200%;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
100% {
|
|
282
|
+
left: -100%;
|
|
283
|
+
opacity: 0;
|
|
284
|
+
}
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
@keyframes lf4 {
|
|
288
|
+
0% {
|
|
289
|
+
left: 200%;
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
100% {
|
|
293
|
+
left: -100%;
|
|
294
|
+
opacity: 0;
|
|
295
|
+
}
|
|
296
|
+
}
|