spiderly 19.3.0 → 19.4.0-preview.0
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/README.md +17 -17
- package/fesm2022/spiderly.mjs +122 -85
- package/fesm2022/spiderly.mjs.map +1 -1
- package/lib/components/layout/layout.component.d.ts +5 -1
- package/lib/components/spiderly-data-table/spiderly-data-table.component.d.ts +14 -1
- package/package.json +1 -1
- package/styles/components/info-card/info-card.component.scss +60 -60
- package/styles/components/layout/profile-avatar/profile-avatar.component.scss +8 -8
- package/styles/components/layout/topbar/topbar.component.scss +38 -38
- package/styles/components/spiderly-data-table/spiderly-data-table.component.scss +48 -48
- package/styles/components/spiderly-data-view/spiderly-data-view.component.scss +55 -55
- package/styles/components/spiderly-panels/panel-body/panel-body.component.scss +8 -8
- package/styles/components/spiderly-panels/panel-footer/panel-footer.component.scss +16 -16
- package/styles/components/spiderly-panels/spiderly-panel/spiderly-panel.component.scss +87 -87
- package/styles/controls/base-controls.scss +16 -16
- package/styles/controls/spiderly-checkbox/spiderly-checkbox.component.scss +22 -22
- package/styles/styles/layout/_content.scss +14 -14
- package/styles/styles/layout/_footer.scss +11 -11
- package/styles/styles/layout/_main.scss +34 -34
- package/styles/styles/layout/_menu.scss +137 -137
- package/styles/styles/layout/_mixins.scss +13 -13
- package/styles/styles/layout/_preloading.scss +47 -47
- package/styles/styles/layout/_responsive.scss +102 -102
- package/styles/styles/layout/_spiderly-controls.scss +14 -14
- package/styles/styles/layout/_topbar.scss +235 -235
- package/styles/styles/layout/_typography.scss +63 -63
- package/styles/styles/layout/_utils.scss +19 -19
- package/styles/styles/layout/_variables.scss +908 -908
- package/styles/styles/layout/layout.scss +11 -11
- package/styles/styles/shared.scss +483 -483
- package/styles/styles/styles.scss +2 -2
|
@@ -1,484 +1,484 @@
|
|
|
1
|
-
@use './layout/variables' as *;
|
|
2
|
-
|
|
3
|
-
@media (max-width: 600px) {
|
|
4
|
-
.panel-add-button{
|
|
5
|
-
margin-bottom: 14px;
|
|
6
|
-
}
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
.spiderly-dashboard-item {
|
|
10
|
-
position: relative;
|
|
11
|
-
display: flex;
|
|
12
|
-
flex-direction: column;
|
|
13
|
-
justify-content: flex-start;
|
|
14
|
-
align-items: center;
|
|
15
|
-
border: solid 1px #e0e0e0;
|
|
16
|
-
border-radius: 5px;
|
|
17
|
-
padding: 20px 30px;
|
|
18
|
-
flex-grow:1;
|
|
19
|
-
|
|
20
|
-
&__icon {
|
|
21
|
-
margin-bottom: 10px;
|
|
22
|
-
font-size: 3.2em;
|
|
23
|
-
}
|
|
24
|
-
&__title {
|
|
25
|
-
font-size: 1.1em;
|
|
26
|
-
text-align: center;
|
|
27
|
-
text-decoration: none !important;
|
|
28
|
-
}
|
|
29
|
-
&__bullets {
|
|
30
|
-
|
|
31
|
-
}
|
|
32
|
-
&__bullet {
|
|
33
|
-
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
&__bg {
|
|
37
|
-
position: absolute;
|
|
38
|
-
top: 0px;
|
|
39
|
-
bottom: 0px;
|
|
40
|
-
left: 0px;
|
|
41
|
-
right: 0px;
|
|
42
|
-
background-color: #fff;
|
|
43
|
-
z-index: -5;
|
|
44
|
-
|
|
45
|
-
&-icon {
|
|
46
|
-
position: absolute;
|
|
47
|
-
bottom: 0px;
|
|
48
|
-
right: 30px;
|
|
49
|
-
font-size: 15em;
|
|
50
|
-
//transform: rotate(-45deg);
|
|
51
|
-
opacity: 0.04;
|
|
52
|
-
text-decoration: none !important;
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
&--eo {
|
|
57
|
-
min-height: 200px;
|
|
58
|
-
}
|
|
59
|
-
&--codebooks {
|
|
60
|
-
min-height: 100px;
|
|
61
|
-
cursor: pointer;
|
|
62
|
-
}
|
|
63
|
-
&--home {
|
|
64
|
-
min-height: 160px;
|
|
65
|
-
cursor: pointer;
|
|
66
|
-
z-index: 1;
|
|
67
|
-
&:hover {
|
|
68
|
-
text-decoration: none;
|
|
69
|
-
|
|
70
|
-
.c-dashboard-item__bg {
|
|
71
|
-
background-color: #f8f8f8;
|
|
72
|
-
}
|
|
73
|
-
.c-dashboard-item__bg-icon {
|
|
74
|
-
opacity: 0.2;
|
|
75
|
-
transform: rotate(0deg);
|
|
76
|
-
}
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
.c-dashboard-item__icon {
|
|
80
|
-
font-size: 4em;
|
|
81
|
-
}
|
|
82
|
-
.c-dashboard-item__title {
|
|
83
|
-
font-size: 1.3em;
|
|
84
|
-
}
|
|
85
|
-
.c-dashboard-item__bg-icon {
|
|
86
|
-
font-size: 9em;
|
|
87
|
-
right: 40px;
|
|
88
|
-
bottom: 20px;
|
|
89
|
-
transform: rotate(-20deg);
|
|
90
|
-
opacity: 0.1;
|
|
91
|
-
transition: all 1s;
|
|
92
|
-
}
|
|
93
|
-
}
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
.dashboard-card-wrapper {
|
|
97
|
-
display: flex;
|
|
98
|
-
flex-direction: column;
|
|
99
|
-
gap: 14px;
|
|
100
|
-
padding: 30px;
|
|
101
|
-
position: relative;
|
|
102
|
-
overflow: hidden;
|
|
103
|
-
}
|
|
104
|
-
|
|
105
|
-
@media (max-width: 600px) {
|
|
106
|
-
.dashboard-card-wrapper{
|
|
107
|
-
padding: 20px;
|
|
108
|
-
}
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
.dashboard-card-wrapper-with-grid {
|
|
112
|
-
display: flex;
|
|
113
|
-
flex-direction: column;
|
|
114
|
-
gap: 14px;
|
|
115
|
-
padding: 30px;
|
|
116
|
-
padding-bottom: 16px; // -14px
|
|
117
|
-
position: relative;
|
|
118
|
-
overflow: hidden;
|
|
119
|
-
}
|
|
120
|
-
|
|
121
|
-
@media (max-width: 600px) {
|
|
122
|
-
.dashboard-card-wrapper-with-grid{
|
|
123
|
-
padding: 20px;
|
|
124
|
-
padding-bottom: 6px; // -14px
|
|
125
|
-
}
|
|
126
|
-
}
|
|
127
|
-
|
|
128
|
-
.control-error-border{
|
|
129
|
-
outline: 1px solid $errorColor;
|
|
130
|
-
border-radius: var(--p-content-border-radius);
|
|
131
|
-
}
|
|
132
|
-
|
|
133
|
-
.error-color{
|
|
134
|
-
background-color: $errorColor;
|
|
135
|
-
}
|
|
136
|
-
|
|
137
|
-
.error-color-font{
|
|
138
|
-
color: $errorColor;
|
|
139
|
-
}
|
|
140
|
-
|
|
141
|
-
.success-color-font{
|
|
142
|
-
color: green;
|
|
143
|
-
}
|
|
144
|
-
|
|
145
|
-
.error-color-light{
|
|
146
|
-
background-color: $errorColorLight;
|
|
147
|
-
}
|
|
148
|
-
|
|
149
|
-
.disabled{
|
|
150
|
-
background-color: $disabled;
|
|
151
|
-
}
|
|
152
|
-
|
|
153
|
-
.white-color{
|
|
154
|
-
color: #fff;
|
|
155
|
-
}
|
|
156
|
-
|
|
157
|
-
.primary-color{
|
|
158
|
-
color: var(--p-primary-color);
|
|
159
|
-
}
|
|
160
|
-
|
|
161
|
-
.primary-color-background{
|
|
162
|
-
background-color: var(--p-primary-color);
|
|
163
|
-
}
|
|
164
|
-
|
|
165
|
-
.primary-lighter-color-background{
|
|
166
|
-
background-color: var(--p-primary-200);
|
|
167
|
-
}
|
|
168
|
-
|
|
169
|
-
.secondary-color-background{
|
|
170
|
-
background-color: var(--secondary-color);
|
|
171
|
-
}
|
|
172
|
-
|
|
173
|
-
.bold {
|
|
174
|
-
font-weight: 500;
|
|
175
|
-
}
|
|
176
|
-
|
|
177
|
-
.separator{
|
|
178
|
-
border-top: 1px solid var(--p-primary-color);
|
|
179
|
-
width: 100%;
|
|
180
|
-
}
|
|
181
|
-
|
|
182
|
-
.gray-separator{
|
|
183
|
-
border-top: 1px solid var(--p-content-border-color);
|
|
184
|
-
width: 100%;
|
|
185
|
-
}
|
|
186
|
-
|
|
187
|
-
// You need to manually adjust the height
|
|
188
|
-
.vertical-gray-separator{
|
|
189
|
-
border-left: 1px solid var(--p-content-border-color);
|
|
190
|
-
}
|
|
191
|
-
|
|
192
|
-
.hover-card {
|
|
193
|
-
padding: 10px;
|
|
194
|
-
border-radius: var(--p-content-border-radius);
|
|
195
|
-
cursor: pointer;
|
|
196
|
-
}
|
|
197
|
-
|
|
198
|
-
.hover-card:hover {
|
|
199
|
-
background-color: var(--p-content-hover-background);
|
|
200
|
-
}
|
|
201
|
-
|
|
202
|
-
.dialog{
|
|
203
|
-
width: 600px;
|
|
204
|
-
}
|
|
205
|
-
|
|
206
|
-
@media (max-width: 600px) {
|
|
207
|
-
.dialog{
|
|
208
|
-
width: 100%;
|
|
209
|
-
}
|
|
210
|
-
}
|
|
211
|
-
|
|
212
|
-
.header-separator{
|
|
213
|
-
margin-top: 7px;
|
|
214
|
-
border-top: 3px solid var(--p-primary-color);
|
|
215
|
-
width: 60px;
|
|
216
|
-
}
|
|
217
|
-
|
|
218
|
-
.big-header{
|
|
219
|
-
font-size: 34px;
|
|
220
|
-
font-weight: 400;
|
|
221
|
-
i{
|
|
222
|
-
font-size: 32px;
|
|
223
|
-
font-weight: 400;
|
|
224
|
-
}
|
|
225
|
-
}
|
|
226
|
-
|
|
227
|
-
.bold-header-separator{
|
|
228
|
-
margin-top: 7px;
|
|
229
|
-
border-top: 6px solid var(--p-primary-color);
|
|
230
|
-
width: 100px;
|
|
231
|
-
}
|
|
232
|
-
|
|
233
|
-
@media (max-width: 600px) {
|
|
234
|
-
.big-header{
|
|
235
|
-
font-size: 28px;
|
|
236
|
-
i{
|
|
237
|
-
font-size: 26px;
|
|
238
|
-
font-weight: 400;
|
|
239
|
-
}
|
|
240
|
-
}
|
|
241
|
-
}
|
|
242
|
-
|
|
243
|
-
.link{
|
|
244
|
-
color: var(--p-primary-color);
|
|
245
|
-
cursor: pointer;
|
|
246
|
-
}
|
|
247
|
-
|
|
248
|
-
.link:hover {
|
|
249
|
-
color: var(--primary-dark-color);
|
|
250
|
-
}
|
|
251
|
-
|
|
252
|
-
.blockHead {
|
|
253
|
-
background-color: var(--p-primary-color);
|
|
254
|
-
/*width: 150px; */
|
|
255
|
-
height: 60px;
|
|
256
|
-
line-height: 60px;
|
|
257
|
-
display: inline-block;
|
|
258
|
-
position: relative;
|
|
259
|
-
}
|
|
260
|
-
|
|
261
|
-
.blockHead:after {
|
|
262
|
-
color: var(--p-primary-color);
|
|
263
|
-
border-left: 30px solid;
|
|
264
|
-
border-top: 30px solid transparent;
|
|
265
|
-
border-bottom: 30px solid transparent;
|
|
266
|
-
display: inline-block;
|
|
267
|
-
content: '';
|
|
268
|
-
position: absolute;
|
|
269
|
-
right: -30px;
|
|
270
|
-
top:0
|
|
271
|
-
}
|
|
272
|
-
|
|
273
|
-
.blocktext{
|
|
274
|
-
color:white;
|
|
275
|
-
font-weight:bold;
|
|
276
|
-
padding-left:10px;
|
|
277
|
-
font-family:Arial;
|
|
278
|
-
font-size:11;
|
|
279
|
-
}
|
|
280
|
-
|
|
281
|
-
@media (max-width: 600px) {
|
|
282
|
-
.responsive-hidden{
|
|
283
|
-
display: none;
|
|
284
|
-
}
|
|
285
|
-
}
|
|
286
|
-
|
|
287
|
-
.transparent-card{
|
|
288
|
-
border-top: 1px solid var(--p-primary-400);
|
|
289
|
-
border-left: 1px solid var(--p-primary-400);
|
|
290
|
-
border-right: 1px solid var(--p-primary-400);
|
|
291
|
-
padding: 18px;
|
|
292
|
-
}
|
|
293
|
-
|
|
294
|
-
.transparent-card:last-child {
|
|
295
|
-
border-bottom: 1px solid var(--p-primary-400);
|
|
296
|
-
}
|
|
297
|
-
|
|
298
|
-
.card-overflow-icon{
|
|
299
|
-
text-align: center;
|
|
300
|
-
transform: rotate(30deg);
|
|
301
|
-
color: var(--p-primary-400);
|
|
302
|
-
opacity: 0.2;
|
|
303
|
-
position: absolute;
|
|
304
|
-
overflow: hidden;
|
|
305
|
-
right: -30px;
|
|
306
|
-
top: -25px;
|
|
307
|
-
z-index: 1;
|
|
308
|
-
i {
|
|
309
|
-
font-size: 270px;
|
|
310
|
-
}
|
|
311
|
-
}
|
|
312
|
-
|
|
313
|
-
.badge {
|
|
314
|
-
position: absolute;
|
|
315
|
-
width: 10px;
|
|
316
|
-
height: 10px;
|
|
317
|
-
top: -5px;
|
|
318
|
-
right: -1px;
|
|
319
|
-
border-radius: 100%;
|
|
320
|
-
background: $dangerButtonBg;
|
|
321
|
-
}
|
|
322
|
-
|
|
323
|
-
.icon-hover {
|
|
324
|
-
cursor: pointer;
|
|
325
|
-
padding: 7px;
|
|
326
|
-
border-radius: 50%;
|
|
327
|
-
transition: background-color 0.3s ease;
|
|
328
|
-
}
|
|
329
|
-
|
|
330
|
-
.icon-hover:hover {
|
|
331
|
-
background-color: var(--p-content-hover-background);
|
|
332
|
-
}
|
|
333
|
-
|
|
334
|
-
.gray-color {
|
|
335
|
-
color: $shade600;
|
|
336
|
-
}
|
|
337
|
-
|
|
338
|
-
.number-circle {
|
|
339
|
-
border-radius: 50%;
|
|
340
|
-
width: 30px;
|
|
341
|
-
height: 30px;
|
|
342
|
-
padding: 5px;
|
|
343
|
-
|
|
344
|
-
background: var(--p-primary-color);
|
|
345
|
-
border: 1px solid var(--p-primary-color);
|
|
346
|
-
color: white;
|
|
347
|
-
text-align: center;
|
|
348
|
-
margin-right: 16px;
|
|
349
|
-
display: inline-block;
|
|
350
|
-
}
|
|
351
|
-
|
|
352
|
-
.last-child-zero-margin{
|
|
353
|
-
margin-bottom: 0px !important;
|
|
354
|
-
}
|
|
355
|
-
|
|
356
|
-
.card-margin-bottom{
|
|
357
|
-
margin-bottom: 28px;
|
|
358
|
-
}
|
|
359
|
-
|
|
360
|
-
@media (max-width: 600px) {
|
|
361
|
-
.card-margin-bottom{
|
|
362
|
-
margin-bottom: 14px;
|
|
363
|
-
}
|
|
364
|
-
}
|
|
365
|
-
|
|
366
|
-
.card-with-grid-padding-bottom{
|
|
367
|
-
padding-bottom: 14px !important;
|
|
368
|
-
}
|
|
369
|
-
|
|
370
|
-
@media (max-width: 600px) {
|
|
371
|
-
.card-with-grid-padding-bottom{
|
|
372
|
-
padding-bottom: 6px !important;
|
|
373
|
-
}
|
|
374
|
-
}
|
|
375
|
-
|
|
376
|
-
.responsive-card-padding{
|
|
377
|
-
padding: 28px;
|
|
378
|
-
}
|
|
379
|
-
|
|
380
|
-
@media (max-width: 600px) {
|
|
381
|
-
.responsive-card-padding{
|
|
382
|
-
padding: 20px;
|
|
383
|
-
}
|
|
384
|
-
}
|
|
385
|
-
|
|
386
|
-
.image-container {
|
|
387
|
-
width: 300px;
|
|
388
|
-
}
|
|
389
|
-
|
|
390
|
-
.image-container img {
|
|
391
|
-
max-width: 100%;
|
|
392
|
-
max-height: 100%;
|
|
393
|
-
object-fit: contain;
|
|
394
|
-
}
|
|
395
|
-
|
|
396
|
-
.p-dataview .p-dataview-header {
|
|
397
|
-
background: transparent;
|
|
398
|
-
color: transparent;
|
|
399
|
-
border: none;
|
|
400
|
-
border-width: 0;
|
|
401
|
-
padding: 0;
|
|
402
|
-
font-weight: 0;
|
|
403
|
-
}
|
|
404
|
-
|
|
405
|
-
.remove-h-css{
|
|
406
|
-
margin: 0;
|
|
407
|
-
font-weight: normal;
|
|
408
|
-
font-size: 14px;
|
|
409
|
-
}
|
|
410
|
-
|
|
411
|
-
.grid {
|
|
412
|
-
margin: 0;
|
|
413
|
-
}
|
|
414
|
-
|
|
415
|
-
.grid [class^="col-"] {
|
|
416
|
-
padding: 14px 9px;
|
|
417
|
-
}
|
|
418
|
-
|
|
419
|
-
.p-colorpicker-preview {
|
|
420
|
-
border: 1px solid var(--p-form-field-border-color) !important; // Doing this only because of white color preview
|
|
421
|
-
}
|
|
422
|
-
|
|
423
|
-
.p-overlay-badge > .p-badge {
|
|
424
|
-
inset-inline-end: -9px !important;
|
|
425
|
-
}
|
|
426
|
-
|
|
427
|
-
.spiderly-gradient-title {
|
|
428
|
-
font-weight: bold;
|
|
429
|
-
display: inline-block;
|
|
430
|
-
white-space: normal;
|
|
431
|
-
|
|
432
|
-
background-image: linear-gradient(
|
|
433
|
-
to right,
|
|
434
|
-
var(--p-primary-700),
|
|
435
|
-
var(--p-primary-color),
|
|
436
|
-
);
|
|
437
|
-
color: transparent;
|
|
438
|
-
-webkit-background-clip: text;
|
|
439
|
-
background-clip: text;
|
|
440
|
-
|
|
441
|
-
@media (min-width: 600px) {
|
|
442
|
-
font-size: 4.5rem;
|
|
443
|
-
}
|
|
444
|
-
}
|
|
445
|
-
|
|
446
|
-
ul, ol {
|
|
447
|
-
padding-left: 25px;
|
|
448
|
-
margin-top: 10px;
|
|
449
|
-
margin-bottom: 10px;
|
|
450
|
-
}
|
|
451
|
-
|
|
452
|
-
$grid-columns: 8;
|
|
453
|
-
$grid-gap: 2rem;
|
|
454
|
-
$breakpoints: (
|
|
455
|
-
sm: 640px,
|
|
456
|
-
md: 768px,
|
|
457
|
-
lg: 1024px
|
|
458
|
-
);
|
|
459
|
-
|
|
460
|
-
.spiderly-grid {
|
|
461
|
-
display: grid;
|
|
462
|
-
grid-template-columns: repeat($grid-columns, 1fr);
|
|
463
|
-
gap: $grid-gap;
|
|
464
|
-
padding: 1rem 0;
|
|
465
|
-
}
|
|
466
|
-
|
|
467
|
-
@for $i from 1 through $grid-columns {
|
|
468
|
-
.col-#{$i} {
|
|
469
|
-
grid-column: span #{$i};
|
|
470
|
-
flex: unset;
|
|
471
|
-
padding: unset;
|
|
472
|
-
width: unset;
|
|
473
|
-
}
|
|
474
|
-
}
|
|
475
|
-
|
|
476
|
-
@each $breakpoint, $size in $breakpoints {
|
|
477
|
-
@media (min-width: #{$size}) {
|
|
478
|
-
@for $i from 1 through $grid-columns {
|
|
479
|
-
.#{$breakpoint}\:col-#{$i} {
|
|
480
|
-
grid-column: span #{$i};
|
|
481
|
-
}
|
|
482
|
-
}
|
|
483
|
-
}
|
|
1
|
+
@use './layout/variables' as *;
|
|
2
|
+
|
|
3
|
+
@media (max-width: 600px) {
|
|
4
|
+
.panel-add-button{
|
|
5
|
+
margin-bottom: 14px;
|
|
6
|
+
}
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.spiderly-dashboard-item {
|
|
10
|
+
position: relative;
|
|
11
|
+
display: flex;
|
|
12
|
+
flex-direction: column;
|
|
13
|
+
justify-content: flex-start;
|
|
14
|
+
align-items: center;
|
|
15
|
+
border: solid 1px #e0e0e0;
|
|
16
|
+
border-radius: 5px;
|
|
17
|
+
padding: 20px 30px;
|
|
18
|
+
flex-grow:1;
|
|
19
|
+
|
|
20
|
+
&__icon {
|
|
21
|
+
margin-bottom: 10px;
|
|
22
|
+
font-size: 3.2em;
|
|
23
|
+
}
|
|
24
|
+
&__title {
|
|
25
|
+
font-size: 1.1em;
|
|
26
|
+
text-align: center;
|
|
27
|
+
text-decoration: none !important;
|
|
28
|
+
}
|
|
29
|
+
&__bullets {
|
|
30
|
+
|
|
31
|
+
}
|
|
32
|
+
&__bullet {
|
|
33
|
+
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
&__bg {
|
|
37
|
+
position: absolute;
|
|
38
|
+
top: 0px;
|
|
39
|
+
bottom: 0px;
|
|
40
|
+
left: 0px;
|
|
41
|
+
right: 0px;
|
|
42
|
+
background-color: #fff;
|
|
43
|
+
z-index: -5;
|
|
44
|
+
|
|
45
|
+
&-icon {
|
|
46
|
+
position: absolute;
|
|
47
|
+
bottom: 0px;
|
|
48
|
+
right: 30px;
|
|
49
|
+
font-size: 15em;
|
|
50
|
+
//transform: rotate(-45deg);
|
|
51
|
+
opacity: 0.04;
|
|
52
|
+
text-decoration: none !important;
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
&--eo {
|
|
57
|
+
min-height: 200px;
|
|
58
|
+
}
|
|
59
|
+
&--codebooks {
|
|
60
|
+
min-height: 100px;
|
|
61
|
+
cursor: pointer;
|
|
62
|
+
}
|
|
63
|
+
&--home {
|
|
64
|
+
min-height: 160px;
|
|
65
|
+
cursor: pointer;
|
|
66
|
+
z-index: 1;
|
|
67
|
+
&:hover {
|
|
68
|
+
text-decoration: none;
|
|
69
|
+
|
|
70
|
+
.c-dashboard-item__bg {
|
|
71
|
+
background-color: #f8f8f8;
|
|
72
|
+
}
|
|
73
|
+
.c-dashboard-item__bg-icon {
|
|
74
|
+
opacity: 0.2;
|
|
75
|
+
transform: rotate(0deg);
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.c-dashboard-item__icon {
|
|
80
|
+
font-size: 4em;
|
|
81
|
+
}
|
|
82
|
+
.c-dashboard-item__title {
|
|
83
|
+
font-size: 1.3em;
|
|
84
|
+
}
|
|
85
|
+
.c-dashboard-item__bg-icon {
|
|
86
|
+
font-size: 9em;
|
|
87
|
+
right: 40px;
|
|
88
|
+
bottom: 20px;
|
|
89
|
+
transform: rotate(-20deg);
|
|
90
|
+
opacity: 0.1;
|
|
91
|
+
transition: all 1s;
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.dashboard-card-wrapper {
|
|
97
|
+
display: flex;
|
|
98
|
+
flex-direction: column;
|
|
99
|
+
gap: 14px;
|
|
100
|
+
padding: 30px;
|
|
101
|
+
position: relative;
|
|
102
|
+
overflow: hidden;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
@media (max-width: 600px) {
|
|
106
|
+
.dashboard-card-wrapper{
|
|
107
|
+
padding: 20px;
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.dashboard-card-wrapper-with-grid {
|
|
112
|
+
display: flex;
|
|
113
|
+
flex-direction: column;
|
|
114
|
+
gap: 14px;
|
|
115
|
+
padding: 30px;
|
|
116
|
+
padding-bottom: 16px; // -14px
|
|
117
|
+
position: relative;
|
|
118
|
+
overflow: hidden;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
@media (max-width: 600px) {
|
|
122
|
+
.dashboard-card-wrapper-with-grid{
|
|
123
|
+
padding: 20px;
|
|
124
|
+
padding-bottom: 6px; // -14px
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.control-error-border{
|
|
129
|
+
outline: 1px solid $errorColor;
|
|
130
|
+
border-radius: var(--p-content-border-radius);
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.error-color{
|
|
134
|
+
background-color: $errorColor;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
.error-color-font{
|
|
138
|
+
color: $errorColor;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.success-color-font{
|
|
142
|
+
color: green;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
.error-color-light{
|
|
146
|
+
background-color: $errorColorLight;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
.disabled{
|
|
150
|
+
background-color: $disabled;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
.white-color{
|
|
154
|
+
color: #fff;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
.primary-color{
|
|
158
|
+
color: var(--p-primary-color);
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
.primary-color-background{
|
|
162
|
+
background-color: var(--p-primary-color);
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
.primary-lighter-color-background{
|
|
166
|
+
background-color: var(--p-primary-200);
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
.secondary-color-background{
|
|
170
|
+
background-color: var(--secondary-color);
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
.bold {
|
|
174
|
+
font-weight: 500;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
.separator{
|
|
178
|
+
border-top: 1px solid var(--p-primary-color);
|
|
179
|
+
width: 100%;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
.gray-separator{
|
|
183
|
+
border-top: 1px solid var(--p-content-border-color);
|
|
184
|
+
width: 100%;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
// You need to manually adjust the height
|
|
188
|
+
.vertical-gray-separator{
|
|
189
|
+
border-left: 1px solid var(--p-content-border-color);
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
.hover-card {
|
|
193
|
+
padding: 10px;
|
|
194
|
+
border-radius: var(--p-content-border-radius);
|
|
195
|
+
cursor: pointer;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
.hover-card:hover {
|
|
199
|
+
background-color: var(--p-content-hover-background);
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
.dialog{
|
|
203
|
+
width: 600px;
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
@media (max-width: 600px) {
|
|
207
|
+
.dialog{
|
|
208
|
+
width: 100%;
|
|
209
|
+
}
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
.header-separator{
|
|
213
|
+
margin-top: 7px;
|
|
214
|
+
border-top: 3px solid var(--p-primary-color);
|
|
215
|
+
width: 60px;
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
.big-header{
|
|
219
|
+
font-size: 34px;
|
|
220
|
+
font-weight: 400;
|
|
221
|
+
i{
|
|
222
|
+
font-size: 32px;
|
|
223
|
+
font-weight: 400;
|
|
224
|
+
}
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
.bold-header-separator{
|
|
228
|
+
margin-top: 7px;
|
|
229
|
+
border-top: 6px solid var(--p-primary-color);
|
|
230
|
+
width: 100px;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
@media (max-width: 600px) {
|
|
234
|
+
.big-header{
|
|
235
|
+
font-size: 28px;
|
|
236
|
+
i{
|
|
237
|
+
font-size: 26px;
|
|
238
|
+
font-weight: 400;
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
.link{
|
|
244
|
+
color: var(--p-primary-color);
|
|
245
|
+
cursor: pointer;
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
.link:hover {
|
|
249
|
+
color: var(--primary-dark-color);
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
.blockHead {
|
|
253
|
+
background-color: var(--p-primary-color);
|
|
254
|
+
/*width: 150px; */
|
|
255
|
+
height: 60px;
|
|
256
|
+
line-height: 60px;
|
|
257
|
+
display: inline-block;
|
|
258
|
+
position: relative;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
.blockHead:after {
|
|
262
|
+
color: var(--p-primary-color);
|
|
263
|
+
border-left: 30px solid;
|
|
264
|
+
border-top: 30px solid transparent;
|
|
265
|
+
border-bottom: 30px solid transparent;
|
|
266
|
+
display: inline-block;
|
|
267
|
+
content: '';
|
|
268
|
+
position: absolute;
|
|
269
|
+
right: -30px;
|
|
270
|
+
top:0
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
.blocktext{
|
|
274
|
+
color:white;
|
|
275
|
+
font-weight:bold;
|
|
276
|
+
padding-left:10px;
|
|
277
|
+
font-family:Arial;
|
|
278
|
+
font-size:11;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
@media (max-width: 600px) {
|
|
282
|
+
.responsive-hidden{
|
|
283
|
+
display: none;
|
|
284
|
+
}
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
.transparent-card{
|
|
288
|
+
border-top: 1px solid var(--p-primary-400);
|
|
289
|
+
border-left: 1px solid var(--p-primary-400);
|
|
290
|
+
border-right: 1px solid var(--p-primary-400);
|
|
291
|
+
padding: 18px;
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
.transparent-card:last-child {
|
|
295
|
+
border-bottom: 1px solid var(--p-primary-400);
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
.card-overflow-icon{
|
|
299
|
+
text-align: center;
|
|
300
|
+
transform: rotate(30deg);
|
|
301
|
+
color: var(--p-primary-400);
|
|
302
|
+
opacity: 0.2;
|
|
303
|
+
position: absolute;
|
|
304
|
+
overflow: hidden;
|
|
305
|
+
right: -30px;
|
|
306
|
+
top: -25px;
|
|
307
|
+
z-index: 1;
|
|
308
|
+
i {
|
|
309
|
+
font-size: 270px;
|
|
310
|
+
}
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
.badge {
|
|
314
|
+
position: absolute;
|
|
315
|
+
width: 10px;
|
|
316
|
+
height: 10px;
|
|
317
|
+
top: -5px;
|
|
318
|
+
right: -1px;
|
|
319
|
+
border-radius: 100%;
|
|
320
|
+
background: $dangerButtonBg;
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
.icon-hover {
|
|
324
|
+
cursor: pointer;
|
|
325
|
+
padding: 7px;
|
|
326
|
+
border-radius: 50%;
|
|
327
|
+
transition: background-color 0.3s ease;
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
.icon-hover:hover {
|
|
331
|
+
background-color: var(--p-content-hover-background);
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
.gray-color {
|
|
335
|
+
color: $shade600;
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
.number-circle {
|
|
339
|
+
border-radius: 50%;
|
|
340
|
+
width: 30px;
|
|
341
|
+
height: 30px;
|
|
342
|
+
padding: 5px;
|
|
343
|
+
|
|
344
|
+
background: var(--p-primary-color);
|
|
345
|
+
border: 1px solid var(--p-primary-color);
|
|
346
|
+
color: white;
|
|
347
|
+
text-align: center;
|
|
348
|
+
margin-right: 16px;
|
|
349
|
+
display: inline-block;
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
.last-child-zero-margin{
|
|
353
|
+
margin-bottom: 0px !important;
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
.card-margin-bottom{
|
|
357
|
+
margin-bottom: 28px;
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
@media (max-width: 600px) {
|
|
361
|
+
.card-margin-bottom{
|
|
362
|
+
margin-bottom: 14px;
|
|
363
|
+
}
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
.card-with-grid-padding-bottom{
|
|
367
|
+
padding-bottom: 14px !important;
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
@media (max-width: 600px) {
|
|
371
|
+
.card-with-grid-padding-bottom{
|
|
372
|
+
padding-bottom: 6px !important;
|
|
373
|
+
}
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
.responsive-card-padding{
|
|
377
|
+
padding: 28px;
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
@media (max-width: 600px) {
|
|
381
|
+
.responsive-card-padding{
|
|
382
|
+
padding: 20px;
|
|
383
|
+
}
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
.image-container {
|
|
387
|
+
width: 300px;
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
.image-container img {
|
|
391
|
+
max-width: 100%;
|
|
392
|
+
max-height: 100%;
|
|
393
|
+
object-fit: contain;
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
.p-dataview .p-dataview-header {
|
|
397
|
+
background: transparent;
|
|
398
|
+
color: transparent;
|
|
399
|
+
border: none;
|
|
400
|
+
border-width: 0;
|
|
401
|
+
padding: 0;
|
|
402
|
+
font-weight: 0;
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
.remove-h-css{
|
|
406
|
+
margin: 0;
|
|
407
|
+
font-weight: normal;
|
|
408
|
+
font-size: 14px;
|
|
409
|
+
}
|
|
410
|
+
|
|
411
|
+
.grid {
|
|
412
|
+
margin: 0;
|
|
413
|
+
}
|
|
414
|
+
|
|
415
|
+
.grid [class^="col-"] {
|
|
416
|
+
padding: 14px 9px;
|
|
417
|
+
}
|
|
418
|
+
|
|
419
|
+
.p-colorpicker-preview {
|
|
420
|
+
border: 1px solid var(--p-form-field-border-color) !important; // Doing this only because of white color preview
|
|
421
|
+
}
|
|
422
|
+
|
|
423
|
+
.p-overlay-badge > .p-badge {
|
|
424
|
+
inset-inline-end: -9px !important;
|
|
425
|
+
}
|
|
426
|
+
|
|
427
|
+
.spiderly-gradient-title {
|
|
428
|
+
font-weight: bold;
|
|
429
|
+
display: inline-block;
|
|
430
|
+
white-space: normal;
|
|
431
|
+
|
|
432
|
+
background-image: linear-gradient(
|
|
433
|
+
to right,
|
|
434
|
+
var(--p-primary-700),
|
|
435
|
+
var(--p-primary-color),
|
|
436
|
+
);
|
|
437
|
+
color: transparent;
|
|
438
|
+
-webkit-background-clip: text;
|
|
439
|
+
background-clip: text;
|
|
440
|
+
|
|
441
|
+
@media (min-width: 600px) {
|
|
442
|
+
font-size: 4.5rem;
|
|
443
|
+
}
|
|
444
|
+
}
|
|
445
|
+
|
|
446
|
+
ul, ol {
|
|
447
|
+
padding-left: 25px;
|
|
448
|
+
margin-top: 10px;
|
|
449
|
+
margin-bottom: 10px;
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
$grid-columns: 8;
|
|
453
|
+
$grid-gap: 2rem;
|
|
454
|
+
$breakpoints: (
|
|
455
|
+
sm: 640px,
|
|
456
|
+
md: 768px,
|
|
457
|
+
lg: 1024px
|
|
458
|
+
);
|
|
459
|
+
|
|
460
|
+
.spiderly-grid {
|
|
461
|
+
display: grid;
|
|
462
|
+
grid-template-columns: repeat($grid-columns, 1fr);
|
|
463
|
+
gap: $grid-gap;
|
|
464
|
+
padding: 1rem 0;
|
|
465
|
+
}
|
|
466
|
+
|
|
467
|
+
@for $i from 1 through $grid-columns {
|
|
468
|
+
.col-#{$i} {
|
|
469
|
+
grid-column: span #{$i};
|
|
470
|
+
flex: unset;
|
|
471
|
+
padding: unset;
|
|
472
|
+
width: unset;
|
|
473
|
+
}
|
|
474
|
+
}
|
|
475
|
+
|
|
476
|
+
@each $breakpoint, $size in $breakpoints {
|
|
477
|
+
@media (min-width: #{$size}) {
|
|
478
|
+
@for $i from 1 through $grid-columns {
|
|
479
|
+
.#{$breakpoint}\:col-#{$i} {
|
|
480
|
+
grid-column: span #{$i};
|
|
481
|
+
}
|
|
482
|
+
}
|
|
483
|
+
}
|
|
484
484
|
}
|