sample-piral 1.0.0-pre.2296 → 1.0.1-beta.5640
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/app/index.2e228d.js +65171 -0
- package/app/index.2e228d.js.map +1 -0
- package/app/index.d.ts +1002 -1864
- package/app/index.html +7 -8
- package/app/index.js +1 -1
- package/files.tar +0 -0
- package/files_once.tar +0 -0
- package/package.json +36 -24
- package/app/src.a14bddb2.js +0 -71682
- package/app/src.a14bddb2.js.map +0 -1
- package/app/src.a5b4f1ad.css +0 -9
- package/app/src.a5b4f1ad.css.map +0 -1
- package/app/styles.12ced89d.css +0 -564
- package/app/styles.12ced89d.css.map +0 -1
- /package/app/{error.aedb88fb.svg → 14147d9696bdda569940.svg} +0 -0
- /package/app/{not-found.7e0f3e44.svg → 32d34aa10f17957ad7f2.svg} +0 -0
- /package/app/{de.ac52df79.png → 6cb30ba07b9d12f26f57.png} +0 -0
- /package/app/{male.f86fb0d1.png → 7a0dfe01986938a963b4.png} +0 -0
- /package/app/{female.29a695d2.png → 7e8dfb610a2f04b46fb6.png} +0 -0
- /package/app/{close.bb892b1b.svg → be953d3bb28334341670.svg} +0 -0
- /package/app/{en.34451d07.png → d3ce413fe9432d213ccf.png} +0 -0
package/app/styles.12ced89d.css
DELETED
|
@@ -1,564 +0,0 @@
|
|
|
1
|
-
html, body, #app, .app-container {
|
|
2
|
-
width: 100%;
|
|
3
|
-
min-height: 100%;
|
|
4
|
-
background: white; }
|
|
5
|
-
|
|
6
|
-
html, body {
|
|
7
|
-
height: 100%;
|
|
8
|
-
margin: 0;
|
|
9
|
-
padding: 0;
|
|
10
|
-
font-family: 'Roboto', sans-serif; }
|
|
11
|
-
|
|
12
|
-
a {
|
|
13
|
-
text-decoration: none;
|
|
14
|
-
color: #56aa1c; }
|
|
15
|
-
a:hover {
|
|
16
|
-
color: #407e15; }
|
|
17
|
-
|
|
18
|
-
.pi-modal {
|
|
19
|
-
display: none;
|
|
20
|
-
position: fixed;
|
|
21
|
-
z-index: 3;
|
|
22
|
-
left: 0;
|
|
23
|
-
top: 0;
|
|
24
|
-
width: 100%;
|
|
25
|
-
height: 100%;
|
|
26
|
-
overflow: auto;
|
|
27
|
-
background: rgba(0, 0, 0, 0.4);
|
|
28
|
-
animation: fade-in 0.4s; }
|
|
29
|
-
.pi-modal .pi-modal-dialog {
|
|
30
|
-
position: fixed;
|
|
31
|
-
left: 0;
|
|
32
|
-
right: 0;
|
|
33
|
-
bottom: 0;
|
|
34
|
-
top: 0;
|
|
35
|
-
max-width: 90%;
|
|
36
|
-
max-height: 90%;
|
|
37
|
-
margin: auto;
|
|
38
|
-
background: #fefefe;
|
|
39
|
-
animation: fade-in 0.4s; }
|
|
40
|
-
|
|
41
|
-
body.pi-modal-open {
|
|
42
|
-
height: 100vh;
|
|
43
|
-
overflow-y: hidden;
|
|
44
|
-
padding-right: 15px;
|
|
45
|
-
position: fixed; }
|
|
46
|
-
body.pi-modal-open .pi-modal {
|
|
47
|
-
display: block; }
|
|
48
|
-
|
|
49
|
-
.text-right {
|
|
50
|
-
text-align: right; }
|
|
51
|
-
|
|
52
|
-
.language-picker {
|
|
53
|
-
position: relative;
|
|
54
|
-
margin: 4px 8px 0 0; }
|
|
55
|
-
.language-picker .current {
|
|
56
|
-
cursor: pointer; }
|
|
57
|
-
.language-picker ul {
|
|
58
|
-
display: none;
|
|
59
|
-
background: #f5f5f6;
|
|
60
|
-
border: none;
|
|
61
|
-
margin: 0;
|
|
62
|
-
padding: 0;
|
|
63
|
-
overflow: hidden;
|
|
64
|
-
border-radius: 3px 0 3px 3px;
|
|
65
|
-
background-clip: padding-box;
|
|
66
|
-
margin-bottom: 5px;
|
|
67
|
-
position: absolute;
|
|
68
|
-
top: 100%;
|
|
69
|
-
right: 0; }
|
|
70
|
-
.language-picker ul li {
|
|
71
|
-
cursor: pointer;
|
|
72
|
-
border-bottom: 1px solid #ebebeb;
|
|
73
|
-
padding: 10px 20px;
|
|
74
|
-
margin: 0;
|
|
75
|
-
outline: 0;
|
|
76
|
-
color: #7d8086;
|
|
77
|
-
display: flex;
|
|
78
|
-
flex-direction: row;
|
|
79
|
-
align-items: center; }
|
|
80
|
-
.language-picker ul li span {
|
|
81
|
-
padding-left: 8px; }
|
|
82
|
-
.language-picker ul li:hover {
|
|
83
|
-
background: rgba(235, 235, 235, 0.9);
|
|
84
|
-
color: #737881; }
|
|
85
|
-
.language-picker ul.open {
|
|
86
|
-
display: block; }
|
|
87
|
-
|
|
88
|
-
.language-icon {
|
|
89
|
-
height: 16px;
|
|
90
|
-
width: 16px; }
|
|
91
|
-
|
|
92
|
-
@keyframes fade-in {
|
|
93
|
-
from {
|
|
94
|
-
opacity: 0; }
|
|
95
|
-
to {
|
|
96
|
-
opacity: 1; } }
|
|
97
|
-
|
|
98
|
-
.app-container {
|
|
99
|
-
flex: 1;
|
|
100
|
-
position: relative; }
|
|
101
|
-
|
|
102
|
-
.pi-notifications {
|
|
103
|
-
position: fixed;
|
|
104
|
-
display: flex;
|
|
105
|
-
align-items: flex-end;
|
|
106
|
-
flex-direction: column;
|
|
107
|
-
right: 2em;
|
|
108
|
-
bottom: 2em; }
|
|
109
|
-
.pi-notifications .pi-item {
|
|
110
|
-
box-sizing: border-box;
|
|
111
|
-
display: flex;
|
|
112
|
-
flex-direction: row;
|
|
113
|
-
align-items: center;
|
|
114
|
-
text-align: left;
|
|
115
|
-
padding: 0.8em;
|
|
116
|
-
background-color: white;
|
|
117
|
-
max-width: 500px;
|
|
118
|
-
position: relative;
|
|
119
|
-
box-shadow: 1px 7px 14px -5px rgba(0, 0, 0, 0.2); }
|
|
120
|
-
.pi-notifications .pi-item + .pi-notifications .pi-item {
|
|
121
|
-
margin-top: 1em; }
|
|
122
|
-
.pi-notifications .pi-item.success:before {
|
|
123
|
-
background-color: #2BDE3F; }
|
|
124
|
-
.pi-notifications .pi-item.error:before {
|
|
125
|
-
background-color: #e7431a; }
|
|
126
|
-
.pi-notifications .pi-item.info:before {
|
|
127
|
-
background-color: #1D72F3; }
|
|
128
|
-
.pi-notifications .pi-item.warning:before {
|
|
129
|
-
background-color: #FFC007; }
|
|
130
|
-
.pi-notifications .pi-item:before {
|
|
131
|
-
content: '';
|
|
132
|
-
position: absolute;
|
|
133
|
-
top: 0;
|
|
134
|
-
left: 0;
|
|
135
|
-
width: 100%;
|
|
136
|
-
height: 2px; }
|
|
137
|
-
.pi-notifications .pi-item .pi-details {
|
|
138
|
-
flex: 1; }
|
|
139
|
-
.pi-notifications .pi-item .pi-details .pi-title {
|
|
140
|
-
color: #3e3e3e;
|
|
141
|
-
font-weight: 700;
|
|
142
|
-
margin-top: 0;
|
|
143
|
-
margin-bottom: 8px; }
|
|
144
|
-
.pi-notifications .pi-item .pi-details .pi-description {
|
|
145
|
-
font-size: 14px;
|
|
146
|
-
margin-top: 0;
|
|
147
|
-
margin-bottom: 0;
|
|
148
|
-
color: #878787; }
|
|
149
|
-
.pi-notifications .pi-item .pi-close {
|
|
150
|
-
width: 14px;
|
|
151
|
-
cursor: pointer;
|
|
152
|
-
height: 14px;
|
|
153
|
-
fill: #878787;
|
|
154
|
-
margin-left: 1.2em;
|
|
155
|
-
background: url("/close.bb892b1b.svg") no-repeat center center; }
|
|
156
|
-
@media screen and (max-width: 650px) {
|
|
157
|
-
.pi-notifications {
|
|
158
|
-
right: 0;
|
|
159
|
-
left: 0;
|
|
160
|
-
bottom: 0; }
|
|
161
|
-
.pi-notifications .pi-item {
|
|
162
|
-
max-width: 100%;
|
|
163
|
-
width: 100%; } }
|
|
164
|
-
|
|
165
|
-
.app-container, #app {
|
|
166
|
-
display: flex;
|
|
167
|
-
flex-direction: column; }
|
|
168
|
-
|
|
169
|
-
.app-content {
|
|
170
|
-
display: flex;
|
|
171
|
-
flex-direction: column;
|
|
172
|
-
flex-grow: 1;
|
|
173
|
-
padding: 0 2em; }
|
|
174
|
-
|
|
175
|
-
.app-title {
|
|
176
|
-
display: flex;
|
|
177
|
-
position: relative;
|
|
178
|
-
align-items: center; }
|
|
179
|
-
|
|
180
|
-
.app-header {
|
|
181
|
-
display: flex;
|
|
182
|
-
flex-direction: row;
|
|
183
|
-
padding: 0 2em;
|
|
184
|
-
margin-bottom: 1em;
|
|
185
|
-
align-items: center;
|
|
186
|
-
justify-content: space-between;
|
|
187
|
-
background: #abcdef;
|
|
188
|
-
position: relative;
|
|
189
|
-
z-index: 2; }
|
|
190
|
-
.app-header h1 {
|
|
191
|
-
white-space: nowrap;
|
|
192
|
-
font-size: 2rem; }
|
|
193
|
-
@media screen and (max-width: 650px) {
|
|
194
|
-
.app-header {
|
|
195
|
-
padding: 0 1em; }
|
|
196
|
-
.app-header h1 {
|
|
197
|
-
display: none; } }
|
|
198
|
-
|
|
199
|
-
.pi-center {
|
|
200
|
-
display: flex;
|
|
201
|
-
align-items: center;
|
|
202
|
-
justify-content: center;
|
|
203
|
-
flex-grow: 1; }
|
|
204
|
-
|
|
205
|
-
.app-footer {
|
|
206
|
-
font-size: 0.8em;
|
|
207
|
-
padding: 1em 0;
|
|
208
|
-
background: #d6e7f7;
|
|
209
|
-
display: flex;
|
|
210
|
-
flex-direction: row; }
|
|
211
|
-
.app-footer .pi-menu {
|
|
212
|
-
margin: 0 auto;
|
|
213
|
-
max-width: 1000px;
|
|
214
|
-
column-width: 300px;
|
|
215
|
-
display: block; }
|
|
216
|
-
.app-footer .pi-menu .pi-item {
|
|
217
|
-
display: block;
|
|
218
|
-
padding: 1em 2em; }
|
|
219
|
-
|
|
220
|
-
.app-menu {
|
|
221
|
-
position: fixed;
|
|
222
|
-
top: 0;
|
|
223
|
-
bottom: 0;
|
|
224
|
-
left: 0;
|
|
225
|
-
padding: 0;
|
|
226
|
-
margin: 0;
|
|
227
|
-
width: 300px;
|
|
228
|
-
max-width: 100%;
|
|
229
|
-
background: #ebf3fb;
|
|
230
|
-
transform: translateX(-100%);
|
|
231
|
-
transition: all 0.1s ease;
|
|
232
|
-
padding-top: 85px;
|
|
233
|
-
z-index: 1; }
|
|
234
|
-
.app-menu.is-open {
|
|
235
|
-
transform: none;
|
|
236
|
-
box-shadow: 30px 0px 30px -30px rgba(0, 0, 0, 0.2); }
|
|
237
|
-
.app-menu .app-menu-content {
|
|
238
|
-
overflow-y: auto;
|
|
239
|
-
height: 100%; }
|
|
240
|
-
.app-menu .pi-menu {
|
|
241
|
-
display: flex;
|
|
242
|
-
flex-direction: column;
|
|
243
|
-
list-style: none; }
|
|
244
|
-
.app-menu .pi-menu > .pi-item {
|
|
245
|
-
flex: 1;
|
|
246
|
-
margin: 1px 0; }
|
|
247
|
-
.app-menu .pi-menu > .pi-item > a {
|
|
248
|
-
display: block;
|
|
249
|
-
border-left: 5px solid #abcdef;
|
|
250
|
-
padding: 1em; }
|
|
251
|
-
.app-menu .pi-menu > .pi-item > a:hover {
|
|
252
|
-
border-left-color: #559adf; }
|
|
253
|
-
|
|
254
|
-
.pi-spinner {
|
|
255
|
-
position: relative;
|
|
256
|
-
width: 50px;
|
|
257
|
-
height: 50px;
|
|
258
|
-
font-size: 0; }
|
|
259
|
-
.pi-spinner:before, .pi-spinner:after {
|
|
260
|
-
content: "";
|
|
261
|
-
display: block;
|
|
262
|
-
position: absolute;
|
|
263
|
-
border-width: 4px;
|
|
264
|
-
border-style: solid;
|
|
265
|
-
border-radius: 50%; }
|
|
266
|
-
|
|
267
|
-
@keyframes rotate-animation {
|
|
268
|
-
0% {
|
|
269
|
-
transform: rotate(0deg); }
|
|
270
|
-
100% {
|
|
271
|
-
transform: rotate(360deg); } }
|
|
272
|
-
|
|
273
|
-
@keyframes anti-rotate-animation {
|
|
274
|
-
0% {
|
|
275
|
-
transform: rotate(0deg); }
|
|
276
|
-
100% {
|
|
277
|
-
transform: rotate(-360deg); } }
|
|
278
|
-
.pi-spinner:before {
|
|
279
|
-
width: 42px;
|
|
280
|
-
height: 42px;
|
|
281
|
-
border-bottom-color: #56aa1c;
|
|
282
|
-
border-right-color: #56aa1c;
|
|
283
|
-
border-top-color: rgba(86, 170, 28, 0);
|
|
284
|
-
border-left-color: rgba(86, 170, 28, 0);
|
|
285
|
-
top: 0;
|
|
286
|
-
left: 0;
|
|
287
|
-
animation: rotate-animation 1s linear 0s infinite; }
|
|
288
|
-
.pi-spinner:after {
|
|
289
|
-
width: 29.4px;
|
|
290
|
-
height: 29.4px;
|
|
291
|
-
border-bottom-color: #56aa1c;
|
|
292
|
-
border-right-color: #56aa1c;
|
|
293
|
-
border-top-color: rgba(86, 170, 28, 0);
|
|
294
|
-
border-left-color: rgba(86, 170, 28, 0);
|
|
295
|
-
top: 6.3px;
|
|
296
|
-
left: 6.3px;
|
|
297
|
-
animation: anti-rotate-animation 0.85s linear 0s infinite; }
|
|
298
|
-
|
|
299
|
-
.pi-content {
|
|
300
|
-
flex: 1;
|
|
301
|
-
display: flex;
|
|
302
|
-
flex-direction: column; }
|
|
303
|
-
|
|
304
|
-
.pi-dashboard {
|
|
305
|
-
flex: 1;
|
|
306
|
-
position: relative;
|
|
307
|
-
display: grid;
|
|
308
|
-
grid-template-columns: repeat(auto-fit, 70px);
|
|
309
|
-
grid-template-rows: repeat(auto-fit, 70px);
|
|
310
|
-
grid-gap: 10px;
|
|
311
|
-
overflow: visible; }
|
|
312
|
-
.pi-dashboard .pi-tile {
|
|
313
|
-
display: flex;
|
|
314
|
-
position: relative; }
|
|
315
|
-
.pi-dashboard .pi-tile.small {
|
|
316
|
-
grid-column: span 1;
|
|
317
|
-
grid-row: span 1;
|
|
318
|
-
width: 70px;
|
|
319
|
-
height: 70px; }
|
|
320
|
-
.pi-dashboard .pi-tile.medium {
|
|
321
|
-
grid-column: span 2;
|
|
322
|
-
grid-row: span 2;
|
|
323
|
-
width: 150px;
|
|
324
|
-
height: 150px; }
|
|
325
|
-
.pi-dashboard .pi-tile.wide {
|
|
326
|
-
grid-column: span 4;
|
|
327
|
-
grid-row: span 2;
|
|
328
|
-
width: 310px;
|
|
329
|
-
height: 150px; }
|
|
330
|
-
.pi-dashboard .pi-tile.large {
|
|
331
|
-
grid-column: span 4;
|
|
332
|
-
grid-row: span 4;
|
|
333
|
-
width: 310px;
|
|
334
|
-
height: 310px; }
|
|
335
|
-
.pi-dashboard .pi-tile:hover {
|
|
336
|
-
outline: rgba(29, 29, 29, 0.1) solid 4px; }
|
|
337
|
-
|
|
338
|
-
.pi-search {
|
|
339
|
-
position: relative;
|
|
340
|
-
flex: 1;
|
|
341
|
-
display: flex;
|
|
342
|
-
justify-content: center; }
|
|
343
|
-
.pi-search input[type=search] {
|
|
344
|
-
font-size: 1em;
|
|
345
|
-
border: 1px solid transparent;
|
|
346
|
-
background-color: #f1f1f1;
|
|
347
|
-
padding: 10px;
|
|
348
|
-
font-size: 16px;
|
|
349
|
-
max-width: 80%;
|
|
350
|
-
width: 250px;
|
|
351
|
-
box-sizing: border-box;
|
|
352
|
-
transition: width ease 0.1s; }
|
|
353
|
-
@media screen and (max-width: 450px) {
|
|
354
|
-
.pi-search input[type=search] {
|
|
355
|
-
width: 100px; } }
|
|
356
|
-
.pi-search:focus-within input[type=search] {
|
|
357
|
-
width: 90%;
|
|
358
|
-
max-width: 90%; }
|
|
359
|
-
.pi-search:focus-within input[type=search] + .pi-details:not(:empty) {
|
|
360
|
-
display: block;
|
|
361
|
-
opacity: 1; }
|
|
362
|
-
.pi-search .pi-details {
|
|
363
|
-
display: none;
|
|
364
|
-
opacity: 0;
|
|
365
|
-
position: absolute;
|
|
366
|
-
z-index: 2;
|
|
367
|
-
top: 100%;
|
|
368
|
-
width: 90%;
|
|
369
|
-
box-sizing: border-box;
|
|
370
|
-
background: #f0f0f0;
|
|
371
|
-
padding: 1px;
|
|
372
|
-
transition: all 0.1s 0.1s ease; }
|
|
373
|
-
.pi-search .pi-item {
|
|
374
|
-
display: block;
|
|
375
|
-
padding: 10px;
|
|
376
|
-
cursor: pointer;
|
|
377
|
-
background-color: white;
|
|
378
|
-
border-bottom: 1px solid #d4d4d4; }
|
|
379
|
-
.pi-search .pi-item:hover {
|
|
380
|
-
background-color: #e9e9e9; }
|
|
381
|
-
.pi-search .pi-center {
|
|
382
|
-
padding: 30px;
|
|
383
|
-
background-color: white; }
|
|
384
|
-
|
|
385
|
-
.form-row {
|
|
386
|
-
margin: 1em; }
|
|
387
|
-
.form-row label {
|
|
388
|
-
display: block;
|
|
389
|
-
margin-bottom: 0.2em; }
|
|
390
|
-
.form-row input {
|
|
391
|
-
padding: 0.3rem;
|
|
392
|
-
font-size: 1rem; }
|
|
393
|
-
.form-row button {
|
|
394
|
-
padding: 0.5em 1em;
|
|
395
|
-
border: 1px solid black;
|
|
396
|
-
font-weight: bold;
|
|
397
|
-
border-radius: 4px;
|
|
398
|
-
cursor: pointer; }
|
|
399
|
-
.form-row button:disabled {
|
|
400
|
-
border: 1px solid #ccc;
|
|
401
|
-
color: #ccc;
|
|
402
|
-
cursor: default; }
|
|
403
|
-
|
|
404
|
-
.pi-error > img {
|
|
405
|
-
width: 600px;
|
|
406
|
-
max-width: 100%;
|
|
407
|
-
margin: 1em 0; }
|
|
408
|
-
|
|
409
|
-
.pi-error .pi-title {
|
|
410
|
-
color: #56aa1c;
|
|
411
|
-
display: block;
|
|
412
|
-
font-size: 1.5em; }
|
|
413
|
-
|
|
414
|
-
.pi-error .pi-description {
|
|
415
|
-
display: block;
|
|
416
|
-
margin: 0.5em 0; }
|
|
417
|
-
|
|
418
|
-
.pi-error .pi-details {
|
|
419
|
-
display: block;
|
|
420
|
-
margin: 0.5em 0;
|
|
421
|
-
color: #3e3e3e;
|
|
422
|
-
font-size: 0.8em; }
|
|
423
|
-
|
|
424
|
-
.app-user {
|
|
425
|
-
position: relative; }
|
|
426
|
-
.app-user .app-user-avatar {
|
|
427
|
-
display: flex;
|
|
428
|
-
align-items: center;
|
|
429
|
-
white-space: nowrap;
|
|
430
|
-
cursor: pointer; }
|
|
431
|
-
.app-user .app-user-avatar img {
|
|
432
|
-
position: relative;
|
|
433
|
-
overflow: hidden;
|
|
434
|
-
width: 32px;
|
|
435
|
-
min-width: 32px;
|
|
436
|
-
height: 32px;
|
|
437
|
-
border-radius: 50% !important;
|
|
438
|
-
vertical-align: middle;
|
|
439
|
-
border-style: none;
|
|
440
|
-
box-sizing: border-box;
|
|
441
|
-
line-height: 1;
|
|
442
|
-
margin-right: 0.5em; }
|
|
443
|
-
.app-user .app-user-avatar::after {
|
|
444
|
-
display: inline-block;
|
|
445
|
-
box-sizing: border-box;
|
|
446
|
-
height: 8px;
|
|
447
|
-
width: 8px;
|
|
448
|
-
border-style: solid;
|
|
449
|
-
border-color: black;
|
|
450
|
-
border-width: 0px 2px 2px 0px;
|
|
451
|
-
position: relative;
|
|
452
|
-
transform: rotate(45deg);
|
|
453
|
-
transition: opacity 150ms ease-in-out;
|
|
454
|
-
content: ''; }
|
|
455
|
-
.app-user .app-user-details {
|
|
456
|
-
display: none;
|
|
457
|
-
list-style: none;
|
|
458
|
-
position: absolute;
|
|
459
|
-
background: white;
|
|
460
|
-
padding: 0;
|
|
461
|
-
right: 0;
|
|
462
|
-
border: 1px solid #ececec;
|
|
463
|
-
border-radius: 3px;
|
|
464
|
-
top: 40px;
|
|
465
|
-
cursor: default; }
|
|
466
|
-
.app-user .app-user-details li {
|
|
467
|
-
display: block;
|
|
468
|
-
padding: 10px;
|
|
469
|
-
max-width: 300px;
|
|
470
|
-
text-overflow: ellipsis;
|
|
471
|
-
overflow: hidden;
|
|
472
|
-
white-space: nowrap;
|
|
473
|
-
text-align: right; }
|
|
474
|
-
.app-user .app-user-details li > a {
|
|
475
|
-
display: block; }
|
|
476
|
-
.app-user .app-user-details li.sep {
|
|
477
|
-
border-bottom: 1px solid #ccc;
|
|
478
|
-
padding: 0; }
|
|
479
|
-
.app-user .app-user-details li .user-name {
|
|
480
|
-
font-weight: bold;
|
|
481
|
-
color: #666;
|
|
482
|
-
display: block;
|
|
483
|
-
font-size: 0.6em; }
|
|
484
|
-
.app-user .app-user-details:before, .app-user .app-user-details:after {
|
|
485
|
-
content: '';
|
|
486
|
-
display: block;
|
|
487
|
-
position: absolute;
|
|
488
|
-
bottom: 100%;
|
|
489
|
-
width: 0;
|
|
490
|
-
height: 0; }
|
|
491
|
-
.app-user .app-user-details:before {
|
|
492
|
-
right: 27px;
|
|
493
|
-
border: 6px solid transparent;
|
|
494
|
-
border-bottom-color: #ececec; }
|
|
495
|
-
.app-user .app-user-details:after {
|
|
496
|
-
right: 28px;
|
|
497
|
-
border: 5px solid transparent;
|
|
498
|
-
border-bottom-color: #fff; }
|
|
499
|
-
.app-user.is-open img {
|
|
500
|
-
opacity: 0.8; }
|
|
501
|
-
.app-user.is-open .app-user-details {
|
|
502
|
-
display: block; }
|
|
503
|
-
.app-user.is-open::after {
|
|
504
|
-
opacity: 0.2; }
|
|
505
|
-
|
|
506
|
-
.hamburger {
|
|
507
|
-
padding: 15px 0;
|
|
508
|
-
display: inline-block;
|
|
509
|
-
cursor: pointer;
|
|
510
|
-
transition-property: opacity, filter;
|
|
511
|
-
transition-duration: 0.15s;
|
|
512
|
-
transition-timing-function: linear;
|
|
513
|
-
font: inherit;
|
|
514
|
-
color: inherit;
|
|
515
|
-
text-transform: none;
|
|
516
|
-
background-color: transparent;
|
|
517
|
-
border: 0;
|
|
518
|
-
margin: 0;
|
|
519
|
-
overflow: visible;
|
|
520
|
-
transform: scale(0.6); }
|
|
521
|
-
.hamburger:hover {
|
|
522
|
-
opacity: 0.7; }
|
|
523
|
-
.hamburger.is-active:hover {
|
|
524
|
-
opacity: 0.7; }
|
|
525
|
-
.hamburger.is-active .hamburger-inner,
|
|
526
|
-
.hamburger.is-active .hamburger-inner::before,
|
|
527
|
-
.hamburger.is-active .hamburger-inner::after {
|
|
528
|
-
background-color: #000; }
|
|
529
|
-
|
|
530
|
-
.hamburger-box {
|
|
531
|
-
width: 40px;
|
|
532
|
-
height: 24px;
|
|
533
|
-
display: inline-block;
|
|
534
|
-
position: relative; }
|
|
535
|
-
|
|
536
|
-
.hamburger-inner {
|
|
537
|
-
display: block;
|
|
538
|
-
top: 50%;
|
|
539
|
-
margin-top: -2px; }
|
|
540
|
-
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
|
|
541
|
-
width: 40px;
|
|
542
|
-
height: 4px;
|
|
543
|
-
background-color: #000;
|
|
544
|
-
border-radius: 4px;
|
|
545
|
-
position: absolute;
|
|
546
|
-
transition-property: transform;
|
|
547
|
-
transition-duration: 0.15s;
|
|
548
|
-
transition-timing-function: ease; }
|
|
549
|
-
.hamburger-inner::before, .hamburger-inner::after {
|
|
550
|
-
content: "";
|
|
551
|
-
display: block; }
|
|
552
|
-
.hamburger-inner::before {
|
|
553
|
-
top: -10px; }
|
|
554
|
-
.hamburger-inner::after {
|
|
555
|
-
bottom: -10px; }
|
|
556
|
-
|
|
557
|
-
.hamburger--arrow.is-active .hamburger-inner::before {
|
|
558
|
-
transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1); }
|
|
559
|
-
|
|
560
|
-
.hamburger--arrow.is-active .hamburger-inner::after {
|
|
561
|
-
transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1); }
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
/*# sourceMappingURL=/styles.12ced89d.css.map */
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["styles/_layout.scss","styles/index.scss","styles/_burger.scss"],"names":[],"mappings":"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","file":"styles.12ced89d.css","sourceRoot":"../../../../src/samples/sample-piral/src","sourcesContent":["html, body, #app, .app-container {\n width: 100%;\n min-height: 100%;\n background: $bg-color;\n}\n\nhtml, body {\n height: 100%;\n margin: 0;\n padding: 0;\n font-family: 'Roboto', sans-serif;\n}\n\na {\n text-decoration: none;\n color: $basic-dark-color;\n\n &:hover {\n color: darken($color: $basic-dark-color, $amount: 10%)\n }\n}\n\n.pi-modal {\n display: none;\n position: fixed;\n z-index: 3;\n left: 0;\n top: 0;\n width: 100%;\n height: 100%;\n overflow: auto;\n background: rgba(0, 0, 0, 0.4);\n animation: fade-in 0.4s;\n\n .pi-modal-dialog {\n position: fixed;\n left: 0;\n right: 0;\n bottom: 0;\n top: 0;\n max-width: 90%;\n max-height: 90%;\n margin: auto;\n background: #fefefe;\n animation: fade-in 0.4s;\n }\n}\n\nbody.pi-modal-open {\n height: 100vh;\n overflow-y: hidden;\n padding-right: 15px;\n position: fixed;\n\n .pi-modal {\n display: block;\n }\n}\n\n.text-right {\n text-align: right;\n}\n\n.language-picker {\n position: relative;\n margin: 4px 8px 0 0;\n\n .current {\n cursor: pointer;\n }\n\n ul {\n display: none;\n background: #f5f5f6;\n border: none;\n margin: 0;\n padding: 0;\n overflow: hidden;\n border-radius: 3px 0 3px 3px;\n background-clip: padding-box;\n margin-bottom: 5px;\n position: absolute;\n top: 100%;\n right: 0;\n\n li {\n cursor: pointer;\n border-bottom: 1px solid #ebebeb;\n padding: 10px 20px;\n margin: 0;\n outline: 0;\n color: #7d8086;\n display: flex;\n flex-direction: row;\n align-items: center;\n\n span {\n padding-left: 8px;\n }\n\n &:hover {\n background: rgba(235, 235, 235, 0.9);\n color: #737881;\n }\n }\n\n &.open {\n display: block;\n }\n }\n}\n\n.language-icon {\n height: 16px;\n width: 16px;\n}\n\n@keyframes fade-in {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n\n.app-container {\n flex: 1;\n position: relative;\n}\n\n.pi-notifications {\n position: fixed;\n display: flex;\n align-items: flex-end;\n flex-direction: column;\n right: 2em;\n bottom: 2em;\n\n .pi-item {\n box-sizing: border-box;\n display: flex;\n flex-direction: row;\n align-items: center;\n text-align: left;\n padding: 0.8em;\n background-color: $bg-color;\n max-width: 500px;\n position: relative;\n box-shadow: 1px 7px 14px -5px rgba(0,0,0,0.2);\n\n &+& {\n margin-top: 1em;\n }\n\n &.success:before {\n background-color: #2BDE3F;\n }\n\n &.error:before {\n background-color: #e7431a;\n }\n\n &.info:before {\n background-color: #1D72F3;\n }\n\n &.warning:before {\n background-color: #FFC007;\n }\n\n &:before {\n content: '';\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 2px;\n }\n\n .pi-details {\n flex: 1;\n\n .pi-title {\n color: #3e3e3e;\n font-weight: 700;\n margin-top: 0;\n margin-bottom: 8px;\n }\n\n .pi-description {\n font-size: 14px;\n margin-top: 0;\n margin-bottom: 0;\n color: #878787;\n }\n }\n\n .pi-close {\n width: 14px;\n cursor: pointer;\n height: 14px;\n fill: #878787;\n margin-left: 1.2em;\n background: url('../images/close.svg') no-repeat center center;\n }\n }\n\n @media screen and (max-width: $breakpoint-tablet) {\n right: 0;\n left: 0;\n bottom: 0;\n\n .pi-item {\n max-width: 100%;\n width: 100%;\n }\n }\n}\n\n.app-container, #app {\n display: flex;\n flex-direction: column;\n}\n\n.app-content {\n display: flex;\n flex-direction: column;\n flex-grow: 1;\n padding: 0 2em;\n}\n\n.app-title {\n display: flex;\n position: relative;\n align-items: center;\n}\n\n.app-header {\n display: flex;\n flex-direction: row;\n padding: 0 2em;\n margin-bottom: 1em;\n align-items: center;\n justify-content: space-between;\n background: $header-color;\n position: relative;\n z-index: 2;\n\n h1 {\n white-space: nowrap;\n font-size: 2rem;\n }\n\n @media screen and (max-width: $breakpoint-tablet) {\n padding: 0 1em;\n\n h1 {\n display: none;\n }\n }\n}\n\n.pi-center {\n display: flex;\n align-items: center;\n justify-content: center;\n flex-grow: 1;\n}\n\n.app-footer {\n font-size: 0.8em;\n padding: 1em 0;\n background: $footer-color;\n display: flex;\n flex-direction: row;\n\n .pi-menu {\n margin: 0 auto;\n max-width: 1000px;\n column-width: 300px;\n display: block;\n\n .pi-item {\n display: block;\n padding: 1em 2em;\n }\n }\n}\n\n.app-menu {\n position: fixed;\n top: 0;\n bottom: 0;\n left: 0;\n padding: 0;\n margin: 0;\n width: 300px;\n max-width: 100%;\n background: lighten($header-color, 15%);\n transform: translateX(-100%);\n transition: all 0.1s ease;\n padding-top: 85px;\n z-index: 1;\n\n &.is-open {\n transform: none;\n box-shadow: $menu-shadow-size 0px $menu-shadow-size (-$menu-shadow-size) rgba(0, 0, 0, 0.2);\n }\n\n .app-menu-content {\n overflow-y: auto;\n height: 100%;\n }\n\n .pi-menu {\n display: flex;\n flex-direction: column;\n list-style: none;\n\n > .pi-item {\n flex: 1;\n margin: 1px 0;\n\n > a {\n display: block;\n border-left: 5px solid $header-color;\n padding: 1em;\n\n &:hover {\n border-left-color: $menu-color;\n }\n }\n }\n }\n}\n\n.pi-spinner {\n position: relative;\n width: $basic-spinner-dimensions;\n height: $basic-spinner-dimensions;\n font-size: 0;\n\n &:before,\n &:after {\n content: \"\";\n display: block;\n position: absolute;\n border-width: 4px;\n border-style: solid;\n border-radius: 50%;\n }\n\n @keyframes rotate-animation {\n 0% {\n transform: rotate(0deg);\n }\n\n 100% {\n transform: rotate(360deg);\n }\n }\n\n @keyframes anti-rotate-animation {\n 0% {\n transform: rotate(0deg);\n }\n\n 100% {\n transform: rotate(-360deg);\n }\n }\n\n &:before {\n width: $main-spinner-dimensions;\n height: $main-spinner-dimensions;\n border-bottom-color: $basic-dark-color;\n border-right-color: $basic-dark-color;\n border-top-color: rgba($basic-dark-color, 0);\n border-left-color: rgba($basic-dark-color, 0);\n top: 0;\n left: 0;\n animation: rotate-animation 1s linear 0s infinite;\n }\n\n &:after {\n width: $small-spinner-dimensions;\n height: $small-spinner-dimensions;\n border-bottom-color: $basic-dark-color;\n border-right-color: $basic-dark-color;\n border-top-color: rgba($basic-dark-color, 0);\n border-left-color: rgba($basic-dark-color, 0);\n top: ($main-spinner-dimensions - $small-spinner-dimensions) / 2;\n left: ($main-spinner-dimensions - $small-spinner-dimensions) / 2;\n animation: anti-rotate-animation 0.85s linear 0s infinite;\n }\n}\n\n$tile-height: 70px;\n$tile-width: 70px;\n$tile-gap: 10px;\n\n.pi-content {\n flex: 1;\n display: flex;\n flex-direction: column;\n}\n\n.pi-dashboard {\n flex: 1;\n position: relative;\n display: grid;\n grid-template-columns: repeat(auto-fit, $tile-width);\n grid-template-rows: repeat(auto-fit, $tile-height);\n grid-gap: $tile-gap;\n overflow: visible;\n\n .pi-tile {\n display: flex;\n position: relative;\n\n &.small {\n grid-column: span 1;\n grid-row: span 1;\n width: $tile-width;\n height: $tile-height;\n }\n\n &.medium {\n grid-column: span 2;\n grid-row: span 2;\n width: 2 * $tile-width + 1 * $tile-gap;\n height: 2 * $tile-height + 1 * $tile-gap;\n }\n\n &.wide {\n grid-column: span 4;\n grid-row: span 2;\n width: 4 * $tile-width + 3 * $tile-gap;\n height: 2 * $tile-height + 1 * $tile-gap;\n }\n\n &.large {\n grid-column: span 4;\n grid-row: span 4;\n width: 4 * $tile-width + 3 * $tile-gap;\n height: 4 * $tile-height + 3 * $tile-gap;\n }\n\n &:hover {\n outline: rgba(29, 29, 29, 0.1) solid 4px;\n }\n }\n}\n\n.pi-search {\n position: relative;\n flex: 1;\n display: flex;\n justify-content: center;\n\n input[type=search] {\n font-size: 1em;\n border: 1px solid transparent;\n background-color: #f1f1f1;\n padding: 10px;\n font-size: 16px;\n max-width: 80%;\n width: 250px;\n box-sizing: border-box;\n transition: width ease 0.1s;\n\n @media screen and (max-width: $breakpoint-mobile) {\n width: 100px;\n }\n }\n\n &:focus-within input[type=search] {\n width: 90%;\n max-width: 90%;\n\n & + .pi-details:not(:empty) {\n display: block;\n opacity: 1;\n }\n }\n\n .pi-details {\n display: none;\n opacity: 0;\n position: absolute;\n z-index: 2;\n top: 100%;\n width: 90%;\n box-sizing: border-box;\n background: #f0f0f0;\n padding: 1px;\n transition: all 0.1s 0.1s ease;\n }\n\n .pi-item {\n display: block;\n padding: 10px;\n cursor: pointer;\n background-color: white;\n border-bottom: 1px solid #d4d4d4;\n }\n\n .pi-item:hover {\n background-color: #e9e9e9;\n }\n\n .pi-center {\n padding: 30px;\n background-color: white;\n }\n}\n\n.form-row {\n margin: 1em;\n\n label {\n display: block;\n margin-bottom: 0.2em;\n }\n\n input {\n padding: 0.3rem;\n font-size: 1rem;\n }\n\n button {\n padding: 0.5em 1em;\n border: 1px solid black;\n font-weight: bold;\n border-radius: 4px;\n cursor: pointer;\n }\n\n button:disabled {\n border: 1px solid #ccc;\n color: #ccc;\n cursor: default;\n }\n}\n\n.pi-error {\n > img {\n width: 600px;\n max-width: 100%;\n margin: 1em 0;\n }\n\n .pi-title {\n color: $basic-dark-color;\n display: block;\n font-size: 1.5em;\n }\n\n .pi-description {\n display: block;\n margin: 0.5em 0;\n }\n\n .pi-details {\n display: block;\n margin: 0.5em 0;\n color: #3e3e3e;\n font-size: 0.8em;\n }\n}\n\n.app-user {\n position: relative;\n\n .app-user-avatar {\n display: flex;\n align-items: center;\n white-space: nowrap;\n cursor: pointer;\n\n img {\n position: relative;\n overflow: hidden;\n width: 32px;\n min-width: 32px;\n height: 32px;\n border-radius: 50% !important;\n vertical-align: middle;\n border-style: none;\n box-sizing: border-box;\n line-height: 1;\n margin-right: 0.5em;\n }\n\n &::after {\n display: inline-block;\n box-sizing: border-box;\n height: 8px;\n width: 8px;\n border-style: solid;\n border-color: black;\n border-width: 0px 2px 2px 0px;\n position: relative;\n transform: rotate(45deg);\n transition: opacity 150ms ease-in-out;\n content: '';\n }\n }\n\n .app-user-details {\n display: none;\n list-style: none;\n position: absolute;\n background: white;\n padding: 0;\n right: 0;\n border: 1px solid #ececec;\n border-radius: 3px;\n top: 40px;\n cursor: default;\n\n li {\n display: block;\n padding: 10px;\n max-width: 300px;\n text-overflow: ellipsis;\n overflow: hidden;\n white-space: nowrap;\n text-align: right;\n\n & > a {\n display: block;\n }\n\n &.sep {\n border-bottom: 1px solid #ccc;\n padding: 0;\n }\n\n .user-name {\n font-weight: bold;\n color: #666;\n display: block;\n font-size: 0.6em;\n }\n }\n\n &:before, &:after {\n content: '';\n display: block;\n position: absolute;\n bottom: 100%;\n width: 0;\n height: 0;\n }\n\n &:before {\n right: 27px;\n border: 6px solid transparent;\n border-bottom-color: #ececec;\n }\n\n &:after {\n right: 28px;\n border: 5px solid transparent;\n border-bottom-color: #fff;\n }\n }\n\n &.is-open {\n img {\n opacity: 0.8;\n }\n\n .app-user-details {\n display: block;\n }\n\n &::after {\n opacity: 0.2;\n }\n }\n}\n","$bg-color: white;\n$basic-dark-color: #56aa1c;\n$header-color: #abcdef;\n$footer-color: lighten($header-color, 10%);\n$menu-color: darken($header-color, 20%);\n$border-width: 4px;\n$basic-spinner-dimensions: 50px;\n$main-spinner-dimensions: $basic-spinner-dimensions - $border-width * 2;\n$small-spinner-dimensions: $main-spinner-dimensions * 0.7;\n$menu-shadow-size: 30px;\n\n$hamburger-padding: 15px 0 !default;\n$hamburger-layer-width: 40px !default;\n$hamburger-layer-height: 4px !default;\n$hamburger-layer-spacing: 6px !default;\n$hamburger-layer-color: #000 !default;\n$hamburger-layer-border-radius: 4px !default;\n$hamburger-hover-opacity: 0.7 !default;\n$hamburger-active-layer-color: $hamburger-layer-color !default;\n$hamburger-active-hover-opacity: $hamburger-hover-opacity !default;\n$hamburger-hover-use-filter: false !default;\n$hamburger-hover-filter: opacity(50%) !default;\n$hamburger-active-hover-filter: $hamburger-hover-filter !default;\n\n$breakpoint-mobile: 450px;\n$breakpoint-tablet: 650px;\n\n@import './layout';\n@import './burger';\n",".hamburger {\n padding: $hamburger-padding;\n display: inline-block;\n cursor: pointer;\n\n transition-property: opacity, filter;\n transition-duration: 0.15s;\n transition-timing-function: linear;\n\n // Normalize (<button>)\n font: inherit;\n color: inherit;\n text-transform: none;\n background-color: transparent;\n border: 0;\n margin: 0;\n overflow: visible;\n transform: scale(0.6);\n\n &:hover {\n @if $hamburger-hover-use-filter == true {\n filter: $hamburger-hover-filter;\n }\n @else {\n opacity: $hamburger-hover-opacity;\n }\n }\n\n &.is-active {\n &:hover {\n @if $hamburger-hover-use-filter == true {\n filter: $hamburger-active-hover-filter;\n }\n @else {\n opacity: $hamburger-active-hover-opacity;\n }\n }\n\n .hamburger-inner,\n .hamburger-inner::before,\n .hamburger-inner::after {\n background-color: $hamburger-active-layer-color;\n }\n }\n}\n\n.hamburger-box {\n width: $hamburger-layer-width;\n height: $hamburger-layer-height * 3 + $hamburger-layer-spacing * 2;\n display: inline-block;\n position: relative;\n}\n\n.hamburger-inner {\n display: block;\n top: 50%;\n margin-top: $hamburger-layer-height / -2;\n\n &,\n &::before,\n &::after {\n width: $hamburger-layer-width;\n height: $hamburger-layer-height;\n background-color: $hamburger-layer-color;\n border-radius: $hamburger-layer-border-radius;\n position: absolute;\n transition-property: transform;\n transition-duration: 0.15s;\n transition-timing-function: ease;\n }\n\n &::before,\n &::after {\n content: \"\";\n display: block;\n }\n\n &::before {\n top: ($hamburger-layer-spacing + $hamburger-layer-height) * -1;\n }\n\n &::after {\n bottom: ($hamburger-layer-spacing + $hamburger-layer-height) * -1;\n }\n}\n\n.hamburger--arrow.is-active {\n .hamburger-inner {\n &::before {\n transform: translate3d($hamburger-layer-width * -0.2, 0, 0) rotate(-45deg) scale(0.7, 1);\n }\n\n &::after {\n transform: translate3d($hamburger-layer-width * -0.2, 0, 0) rotate(45deg) scale(0.7, 1);\n }\n }\n}\n"]}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|