stargazer-ui 1.0.2 → 1.0.4
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/BaseTypes.d.ts +19 -0
- package/dist/BaseTypes.js +1 -0
- package/dist/Button/index.d.ts +9 -0
- package/dist/Button/index.js +1 -1
- package/dist/Card/index.d.ts +92 -0
- package/dist/Card/index.js +15 -29
- package/dist/CloseButton/index.d.ts +8 -0
- package/dist/Dropdown/index.d.ts +124 -0
- package/dist/Dropdown/index.js +140 -117
- package/dist/FloatingLabel/index.d.ts +11 -0
- package/dist/FloatingLabel/index.js +9 -9
- package/dist/Form/index.d.ts +65 -0
- package/dist/Form/index.js +56 -51
- package/dist/Grid/Col.js +19 -0
- package/dist/Grid/Container.js +9 -0
- package/dist/Grid/Row.js +17 -0
- package/dist/InputGroup/index.d.ts +14 -0
- package/dist/InputGroup/index.js +6 -5
- package/dist/Modal/index.d.ts +70 -0
- package/dist/Modal/index.js +78 -64
- package/dist/Nav/index.d.ts +46 -0
- package/dist/Nav/index.js +11 -12
- package/dist/NavBar/index.d.ts +46 -0
- package/dist/NavBar/index.js +15 -14
- package/dist/NavDropdown/index.d.ts +39 -0
- package/dist/NavDropdown/index.js +226 -218
- package/dist/OffCanvas/OffCanvas.js +2266 -0
- package/dist/Overlay/index.js +36 -36
- package/dist/Popout/index.d.ts +56 -0
- package/dist/Popout/index.js +55 -68
- package/dist/Spinner/index.d.ts +10 -0
- package/dist/Spinner/index.js +9 -0
- package/dist/Table/index.d.ts +9 -0
- package/dist/Table/index.js +9 -0
- package/dist/Tabs/index.d.ts +42 -0
- package/dist/Tabs/index.js +60 -52
- package/dist/stylesheets/stargazerui.css +1160 -17
- package/dist/stylesheets/stargazerui.css.map +1 -1
- package/dist/vite-env.d.js +1 -0
- package/package.json +14 -2
|
@@ -3177,6 +3177,819 @@ textarea.sg-form-control {
|
|
|
3177
3177
|
margin-top: 0.25em;
|
|
3178
3178
|
}
|
|
3179
3179
|
|
|
3180
|
+
.sg-row {
|
|
3181
|
+
--sg-gutter-x: 1.5rem;
|
|
3182
|
+
--sg-gutter-y: 0;
|
|
3183
|
+
display: flex;
|
|
3184
|
+
flex-wrap: wrap;
|
|
3185
|
+
margin-top: calc(-1 * var(--sg-gutter-y));
|
|
3186
|
+
margin-right: calc(-0.5 * var(--sg-gutter-x));
|
|
3187
|
+
margin-left: calc(-0.5 * var(--sg-gutter-x));
|
|
3188
|
+
}
|
|
3189
|
+
.sg-row > * {
|
|
3190
|
+
flex-shrink: 0;
|
|
3191
|
+
width: 100%;
|
|
3192
|
+
max-width: 100%;
|
|
3193
|
+
padding-right: calc(var(--sg-gutter-x) * 0.5);
|
|
3194
|
+
padding-left: calc(var(--sg-gutter-x) * 0.5);
|
|
3195
|
+
margin-top: var(--sg-gutter-y);
|
|
3196
|
+
}
|
|
3197
|
+
|
|
3198
|
+
.sg-col {
|
|
3199
|
+
flex: 1 0 0%;
|
|
3200
|
+
}
|
|
3201
|
+
|
|
3202
|
+
.sg-row-cols-auto > * {
|
|
3203
|
+
flex: 0 0 auto;
|
|
3204
|
+
width: auto;
|
|
3205
|
+
}
|
|
3206
|
+
|
|
3207
|
+
.sg-row-cols-1 > * {
|
|
3208
|
+
flex: 0 0 auto;
|
|
3209
|
+
width: 100%;
|
|
3210
|
+
}
|
|
3211
|
+
|
|
3212
|
+
.sg-row-cols-2 > * {
|
|
3213
|
+
flex: 0 0 auto;
|
|
3214
|
+
width: 50%;
|
|
3215
|
+
}
|
|
3216
|
+
|
|
3217
|
+
.sg-row-cols-3 > * {
|
|
3218
|
+
flex: 0 0 auto;
|
|
3219
|
+
width: 33.3333333333%;
|
|
3220
|
+
}
|
|
3221
|
+
|
|
3222
|
+
.sg-row-cols-4 > * {
|
|
3223
|
+
flex: 0 0 auto;
|
|
3224
|
+
width: 25%;
|
|
3225
|
+
}
|
|
3226
|
+
|
|
3227
|
+
.sg-row-cols-5 > * {
|
|
3228
|
+
flex: 0 0 auto;
|
|
3229
|
+
width: 20%;
|
|
3230
|
+
}
|
|
3231
|
+
|
|
3232
|
+
.sg-row-cols-6 > * {
|
|
3233
|
+
flex: 0 0 auto;
|
|
3234
|
+
width: 16.6666666667%;
|
|
3235
|
+
}
|
|
3236
|
+
|
|
3237
|
+
.sg-col-auto {
|
|
3238
|
+
flex: 0 0 auto;
|
|
3239
|
+
width: auto;
|
|
3240
|
+
}
|
|
3241
|
+
|
|
3242
|
+
.sg-col-1 {
|
|
3243
|
+
flex: 0 0 auto;
|
|
3244
|
+
width: 8.3333333333%;
|
|
3245
|
+
}
|
|
3246
|
+
|
|
3247
|
+
.sg-col-2 {
|
|
3248
|
+
flex: 0 0 auto;
|
|
3249
|
+
width: 16.6666666667%;
|
|
3250
|
+
}
|
|
3251
|
+
|
|
3252
|
+
.sg-col-3 {
|
|
3253
|
+
flex: 0 0 auto;
|
|
3254
|
+
width: 25%;
|
|
3255
|
+
}
|
|
3256
|
+
|
|
3257
|
+
.sg-col-4 {
|
|
3258
|
+
flex: 0 0 auto;
|
|
3259
|
+
width: 33.3333333333%;
|
|
3260
|
+
}
|
|
3261
|
+
|
|
3262
|
+
.sg-col-5 {
|
|
3263
|
+
flex: 0 0 auto;
|
|
3264
|
+
width: 41.6666666667%;
|
|
3265
|
+
}
|
|
3266
|
+
|
|
3267
|
+
.sg-col-6 {
|
|
3268
|
+
flex: 0 0 auto;
|
|
3269
|
+
width: 50%;
|
|
3270
|
+
}
|
|
3271
|
+
|
|
3272
|
+
.sg-col-7 {
|
|
3273
|
+
flex: 0 0 auto;
|
|
3274
|
+
width: 58.3333333333%;
|
|
3275
|
+
}
|
|
3276
|
+
|
|
3277
|
+
.sg-col-8 {
|
|
3278
|
+
flex: 0 0 auto;
|
|
3279
|
+
width: 66.6666666667%;
|
|
3280
|
+
}
|
|
3281
|
+
|
|
3282
|
+
.sg-col-9 {
|
|
3283
|
+
flex: 0 0 auto;
|
|
3284
|
+
width: 75%;
|
|
3285
|
+
}
|
|
3286
|
+
|
|
3287
|
+
.sg-col-10 {
|
|
3288
|
+
flex: 0 0 auto;
|
|
3289
|
+
width: 83.3333333333%;
|
|
3290
|
+
}
|
|
3291
|
+
|
|
3292
|
+
.sg-col-11 {
|
|
3293
|
+
flex: 0 0 auto;
|
|
3294
|
+
width: 91.6666666667%;
|
|
3295
|
+
}
|
|
3296
|
+
|
|
3297
|
+
.sg-col-12 {
|
|
3298
|
+
flex: 0 0 auto;
|
|
3299
|
+
width: 100%;
|
|
3300
|
+
}
|
|
3301
|
+
|
|
3302
|
+
.sg-offset-1 {
|
|
3303
|
+
margin-left: 8.3333333333%;
|
|
3304
|
+
}
|
|
3305
|
+
|
|
3306
|
+
.sg-offset-2 {
|
|
3307
|
+
margin-left: 16.6666666667%;
|
|
3308
|
+
}
|
|
3309
|
+
|
|
3310
|
+
.sg-offset-3 {
|
|
3311
|
+
margin-left: 25%;
|
|
3312
|
+
}
|
|
3313
|
+
|
|
3314
|
+
.sg-offset-4 {
|
|
3315
|
+
margin-left: 33.3333333333%;
|
|
3316
|
+
}
|
|
3317
|
+
|
|
3318
|
+
.sg-offset-5 {
|
|
3319
|
+
margin-left: 41.6666666667%;
|
|
3320
|
+
}
|
|
3321
|
+
|
|
3322
|
+
.sg-offset-6 {
|
|
3323
|
+
margin-left: 50%;
|
|
3324
|
+
}
|
|
3325
|
+
|
|
3326
|
+
.sg-offset-7 {
|
|
3327
|
+
margin-left: 58.3333333333%;
|
|
3328
|
+
}
|
|
3329
|
+
|
|
3330
|
+
.sg-offset-8 {
|
|
3331
|
+
margin-left: 66.6666666667%;
|
|
3332
|
+
}
|
|
3333
|
+
|
|
3334
|
+
.sg-offset-9 {
|
|
3335
|
+
margin-left: 75%;
|
|
3336
|
+
}
|
|
3337
|
+
|
|
3338
|
+
.sg-offset-10 {
|
|
3339
|
+
margin-left: 83.3333333333%;
|
|
3340
|
+
}
|
|
3341
|
+
|
|
3342
|
+
.sg-offset-11 {
|
|
3343
|
+
margin-left: 91.6666666667%;
|
|
3344
|
+
}
|
|
3345
|
+
|
|
3346
|
+
@media (min-width: 576px) {
|
|
3347
|
+
.sg-col-sm {
|
|
3348
|
+
flex: 1 0 0%;
|
|
3349
|
+
}
|
|
3350
|
+
.sg-row-cols-sm-auto > * {
|
|
3351
|
+
flex: 0 0 auto;
|
|
3352
|
+
width: auto;
|
|
3353
|
+
}
|
|
3354
|
+
.sg-row-cols-sm-1 > * {
|
|
3355
|
+
flex: 0 0 auto;
|
|
3356
|
+
width: 100%;
|
|
3357
|
+
}
|
|
3358
|
+
.sg-row-cols-sm-2 > * {
|
|
3359
|
+
flex: 0 0 auto;
|
|
3360
|
+
width: 50%;
|
|
3361
|
+
}
|
|
3362
|
+
.sg-row-cols-sm-3 > * {
|
|
3363
|
+
flex: 0 0 auto;
|
|
3364
|
+
width: 33.3333333333%;
|
|
3365
|
+
}
|
|
3366
|
+
.sg-row-cols-sm-4 > * {
|
|
3367
|
+
flex: 0 0 auto;
|
|
3368
|
+
width: 25%;
|
|
3369
|
+
}
|
|
3370
|
+
.sg-row-cols-sm-5 > * {
|
|
3371
|
+
flex: 0 0 auto;
|
|
3372
|
+
width: 20%;
|
|
3373
|
+
}
|
|
3374
|
+
.sg-row-cols-sm-6 > * {
|
|
3375
|
+
flex: 0 0 auto;
|
|
3376
|
+
width: 16.6666666667%;
|
|
3377
|
+
}
|
|
3378
|
+
.sg-col-sm-auto {
|
|
3379
|
+
flex: 0 0 auto;
|
|
3380
|
+
width: auto;
|
|
3381
|
+
}
|
|
3382
|
+
.sg-col-sm-1 {
|
|
3383
|
+
flex: 0 0 auto;
|
|
3384
|
+
width: 8.3333333333%;
|
|
3385
|
+
}
|
|
3386
|
+
.sg-col-sm-2 {
|
|
3387
|
+
flex: 0 0 auto;
|
|
3388
|
+
width: 16.6666666667%;
|
|
3389
|
+
}
|
|
3390
|
+
.sg-col-sm-3 {
|
|
3391
|
+
flex: 0 0 auto;
|
|
3392
|
+
width: 25%;
|
|
3393
|
+
}
|
|
3394
|
+
.sg-col-sm-4 {
|
|
3395
|
+
flex: 0 0 auto;
|
|
3396
|
+
width: 33.3333333333%;
|
|
3397
|
+
}
|
|
3398
|
+
.sg-col-sm-5 {
|
|
3399
|
+
flex: 0 0 auto;
|
|
3400
|
+
width: 41.6666666667%;
|
|
3401
|
+
}
|
|
3402
|
+
.sg-col-sm-6 {
|
|
3403
|
+
flex: 0 0 auto;
|
|
3404
|
+
width: 50%;
|
|
3405
|
+
}
|
|
3406
|
+
.sg-col-sm-7 {
|
|
3407
|
+
flex: 0 0 auto;
|
|
3408
|
+
width: 58.3333333333%;
|
|
3409
|
+
}
|
|
3410
|
+
.sg-col-sm-8 {
|
|
3411
|
+
flex: 0 0 auto;
|
|
3412
|
+
width: 66.6666666667%;
|
|
3413
|
+
}
|
|
3414
|
+
.sg-col-sm-9 {
|
|
3415
|
+
flex: 0 0 auto;
|
|
3416
|
+
width: 75%;
|
|
3417
|
+
}
|
|
3418
|
+
.sg-col-sm-10 {
|
|
3419
|
+
flex: 0 0 auto;
|
|
3420
|
+
width: 83.3333333333%;
|
|
3421
|
+
}
|
|
3422
|
+
.sg-col-sm-11 {
|
|
3423
|
+
flex: 0 0 auto;
|
|
3424
|
+
width: 91.6666666667%;
|
|
3425
|
+
}
|
|
3426
|
+
.sg-col-sm-12 {
|
|
3427
|
+
flex: 0 0 auto;
|
|
3428
|
+
width: 100%;
|
|
3429
|
+
}
|
|
3430
|
+
.sg-offset-sm-0 {
|
|
3431
|
+
margin-left: 0;
|
|
3432
|
+
}
|
|
3433
|
+
.sg-offset-sm-1 {
|
|
3434
|
+
margin-left: 8.3333333333%;
|
|
3435
|
+
}
|
|
3436
|
+
.sg-offset-sm-2 {
|
|
3437
|
+
margin-left: 16.6666666667%;
|
|
3438
|
+
}
|
|
3439
|
+
.sg-offset-sm-3 {
|
|
3440
|
+
margin-left: 25%;
|
|
3441
|
+
}
|
|
3442
|
+
.sg-offset-sm-4 {
|
|
3443
|
+
margin-left: 33.3333333333%;
|
|
3444
|
+
}
|
|
3445
|
+
.sg-offset-sm-5 {
|
|
3446
|
+
margin-left: 41.6666666667%;
|
|
3447
|
+
}
|
|
3448
|
+
.sg-offset-sm-6 {
|
|
3449
|
+
margin-left: 50%;
|
|
3450
|
+
}
|
|
3451
|
+
.sg-offset-sm-7 {
|
|
3452
|
+
margin-left: 58.3333333333%;
|
|
3453
|
+
}
|
|
3454
|
+
.sg-offset-sm-8 {
|
|
3455
|
+
margin-left: 66.6666666667%;
|
|
3456
|
+
}
|
|
3457
|
+
.sg-offset-sm-9 {
|
|
3458
|
+
margin-left: 75%;
|
|
3459
|
+
}
|
|
3460
|
+
.sg-offset-sm-10 {
|
|
3461
|
+
margin-left: 83.3333333333%;
|
|
3462
|
+
}
|
|
3463
|
+
.sg-offset-sm-11 {
|
|
3464
|
+
margin-left: 91.6666666667%;
|
|
3465
|
+
}
|
|
3466
|
+
}
|
|
3467
|
+
@media (min-width: 768px) {
|
|
3468
|
+
.sg-col-md {
|
|
3469
|
+
flex: 1 0 0%;
|
|
3470
|
+
}
|
|
3471
|
+
.sg-row-cols-md-auto > * {
|
|
3472
|
+
flex: 0 0 auto;
|
|
3473
|
+
width: auto;
|
|
3474
|
+
}
|
|
3475
|
+
.sg-row-cols-md-1 > * {
|
|
3476
|
+
flex: 0 0 auto;
|
|
3477
|
+
width: 100%;
|
|
3478
|
+
}
|
|
3479
|
+
.sg-row-cols-md-2 > * {
|
|
3480
|
+
flex: 0 0 auto;
|
|
3481
|
+
width: 50%;
|
|
3482
|
+
}
|
|
3483
|
+
.sg-row-cols-md-3 > * {
|
|
3484
|
+
flex: 0 0 auto;
|
|
3485
|
+
width: 33.3333333333%;
|
|
3486
|
+
}
|
|
3487
|
+
.sg-row-cols-md-4 > * {
|
|
3488
|
+
flex: 0 0 auto;
|
|
3489
|
+
width: 25%;
|
|
3490
|
+
}
|
|
3491
|
+
.sg-row-cols-md-5 > * {
|
|
3492
|
+
flex: 0 0 auto;
|
|
3493
|
+
width: 20%;
|
|
3494
|
+
}
|
|
3495
|
+
.sg-row-cols-md-6 > * {
|
|
3496
|
+
flex: 0 0 auto;
|
|
3497
|
+
width: 16.6666666667%;
|
|
3498
|
+
}
|
|
3499
|
+
.sg-col-md-auto {
|
|
3500
|
+
flex: 0 0 auto;
|
|
3501
|
+
width: auto;
|
|
3502
|
+
}
|
|
3503
|
+
.sg-col-md-1 {
|
|
3504
|
+
flex: 0 0 auto;
|
|
3505
|
+
width: 8.3333333333%;
|
|
3506
|
+
}
|
|
3507
|
+
.sg-col-md-2 {
|
|
3508
|
+
flex: 0 0 auto;
|
|
3509
|
+
width: 16.6666666667%;
|
|
3510
|
+
}
|
|
3511
|
+
.sg-col-md-3 {
|
|
3512
|
+
flex: 0 0 auto;
|
|
3513
|
+
width: 25%;
|
|
3514
|
+
}
|
|
3515
|
+
.sg-col-md-4 {
|
|
3516
|
+
flex: 0 0 auto;
|
|
3517
|
+
width: 33.3333333333%;
|
|
3518
|
+
}
|
|
3519
|
+
.sg-col-md-5 {
|
|
3520
|
+
flex: 0 0 auto;
|
|
3521
|
+
width: 41.6666666667%;
|
|
3522
|
+
}
|
|
3523
|
+
.sg-col-md-6 {
|
|
3524
|
+
flex: 0 0 auto;
|
|
3525
|
+
width: 50%;
|
|
3526
|
+
}
|
|
3527
|
+
.sg-col-md-7 {
|
|
3528
|
+
flex: 0 0 auto;
|
|
3529
|
+
width: 58.3333333333%;
|
|
3530
|
+
}
|
|
3531
|
+
.sg-col-md-8 {
|
|
3532
|
+
flex: 0 0 auto;
|
|
3533
|
+
width: 66.6666666667%;
|
|
3534
|
+
}
|
|
3535
|
+
.sg-col-md-9 {
|
|
3536
|
+
flex: 0 0 auto;
|
|
3537
|
+
width: 75%;
|
|
3538
|
+
}
|
|
3539
|
+
.sg-col-md-10 {
|
|
3540
|
+
flex: 0 0 auto;
|
|
3541
|
+
width: 83.3333333333%;
|
|
3542
|
+
}
|
|
3543
|
+
.sg-col-md-11 {
|
|
3544
|
+
flex: 0 0 auto;
|
|
3545
|
+
width: 91.6666666667%;
|
|
3546
|
+
}
|
|
3547
|
+
.sg-col-md-12 {
|
|
3548
|
+
flex: 0 0 auto;
|
|
3549
|
+
width: 100%;
|
|
3550
|
+
}
|
|
3551
|
+
.sg-offset-md-0 {
|
|
3552
|
+
margin-left: 0;
|
|
3553
|
+
}
|
|
3554
|
+
.sg-offset-md-1 {
|
|
3555
|
+
margin-left: 8.3333333333%;
|
|
3556
|
+
}
|
|
3557
|
+
.sg-offset-md-2 {
|
|
3558
|
+
margin-left: 16.6666666667%;
|
|
3559
|
+
}
|
|
3560
|
+
.sg-offset-md-3 {
|
|
3561
|
+
margin-left: 25%;
|
|
3562
|
+
}
|
|
3563
|
+
.sg-offset-md-4 {
|
|
3564
|
+
margin-left: 33.3333333333%;
|
|
3565
|
+
}
|
|
3566
|
+
.sg-offset-md-5 {
|
|
3567
|
+
margin-left: 41.6666666667%;
|
|
3568
|
+
}
|
|
3569
|
+
.sg-offset-md-6 {
|
|
3570
|
+
margin-left: 50%;
|
|
3571
|
+
}
|
|
3572
|
+
.sg-offset-md-7 {
|
|
3573
|
+
margin-left: 58.3333333333%;
|
|
3574
|
+
}
|
|
3575
|
+
.sg-offset-md-8 {
|
|
3576
|
+
margin-left: 66.6666666667%;
|
|
3577
|
+
}
|
|
3578
|
+
.sg-offset-md-9 {
|
|
3579
|
+
margin-left: 75%;
|
|
3580
|
+
}
|
|
3581
|
+
.sg-offset-md-10 {
|
|
3582
|
+
margin-left: 83.3333333333%;
|
|
3583
|
+
}
|
|
3584
|
+
.sg-offset-md-11 {
|
|
3585
|
+
margin-left: 91.6666666667%;
|
|
3586
|
+
}
|
|
3587
|
+
}
|
|
3588
|
+
@media (min-width: 992px) {
|
|
3589
|
+
.sg-col-lg {
|
|
3590
|
+
flex: 1 0 0%;
|
|
3591
|
+
}
|
|
3592
|
+
.sg-row-cols-lg-auto > * {
|
|
3593
|
+
flex: 0 0 auto;
|
|
3594
|
+
width: auto;
|
|
3595
|
+
}
|
|
3596
|
+
.sg-row-cols-lg-1 > * {
|
|
3597
|
+
flex: 0 0 auto;
|
|
3598
|
+
width: 100%;
|
|
3599
|
+
}
|
|
3600
|
+
.sg-row-cols-lg-2 > * {
|
|
3601
|
+
flex: 0 0 auto;
|
|
3602
|
+
width: 50%;
|
|
3603
|
+
}
|
|
3604
|
+
.sg-row-cols-lg-3 > * {
|
|
3605
|
+
flex: 0 0 auto;
|
|
3606
|
+
width: 33.3333333333%;
|
|
3607
|
+
}
|
|
3608
|
+
.sg-row-cols-lg-4 > * {
|
|
3609
|
+
flex: 0 0 auto;
|
|
3610
|
+
width: 25%;
|
|
3611
|
+
}
|
|
3612
|
+
.sg-row-cols-lg-5 > * {
|
|
3613
|
+
flex: 0 0 auto;
|
|
3614
|
+
width: 20%;
|
|
3615
|
+
}
|
|
3616
|
+
.sg-row-cols-lg-6 > * {
|
|
3617
|
+
flex: 0 0 auto;
|
|
3618
|
+
width: 16.6666666667%;
|
|
3619
|
+
}
|
|
3620
|
+
.sg-col-lg-auto {
|
|
3621
|
+
flex: 0 0 auto;
|
|
3622
|
+
width: auto;
|
|
3623
|
+
}
|
|
3624
|
+
.sg-col-lg-1 {
|
|
3625
|
+
flex: 0 0 auto;
|
|
3626
|
+
width: 8.3333333333%;
|
|
3627
|
+
}
|
|
3628
|
+
.sg-col-lg-2 {
|
|
3629
|
+
flex: 0 0 auto;
|
|
3630
|
+
width: 16.6666666667%;
|
|
3631
|
+
}
|
|
3632
|
+
.sg-col-lg-3 {
|
|
3633
|
+
flex: 0 0 auto;
|
|
3634
|
+
width: 25%;
|
|
3635
|
+
}
|
|
3636
|
+
.sg-col-lg-4 {
|
|
3637
|
+
flex: 0 0 auto;
|
|
3638
|
+
width: 33.3333333333%;
|
|
3639
|
+
}
|
|
3640
|
+
.sg-col-lg-5 {
|
|
3641
|
+
flex: 0 0 auto;
|
|
3642
|
+
width: 41.6666666667%;
|
|
3643
|
+
}
|
|
3644
|
+
.sg-col-lg-6 {
|
|
3645
|
+
flex: 0 0 auto;
|
|
3646
|
+
width: 50%;
|
|
3647
|
+
}
|
|
3648
|
+
.sg-col-lg-7 {
|
|
3649
|
+
flex: 0 0 auto;
|
|
3650
|
+
width: 58.3333333333%;
|
|
3651
|
+
}
|
|
3652
|
+
.sg-col-lg-8 {
|
|
3653
|
+
flex: 0 0 auto;
|
|
3654
|
+
width: 66.6666666667%;
|
|
3655
|
+
}
|
|
3656
|
+
.sg-col-lg-9 {
|
|
3657
|
+
flex: 0 0 auto;
|
|
3658
|
+
width: 75%;
|
|
3659
|
+
}
|
|
3660
|
+
.sg-col-lg-10 {
|
|
3661
|
+
flex: 0 0 auto;
|
|
3662
|
+
width: 83.3333333333%;
|
|
3663
|
+
}
|
|
3664
|
+
.sg-col-lg-11 {
|
|
3665
|
+
flex: 0 0 auto;
|
|
3666
|
+
width: 91.6666666667%;
|
|
3667
|
+
}
|
|
3668
|
+
.sg-col-lg-12 {
|
|
3669
|
+
flex: 0 0 auto;
|
|
3670
|
+
width: 100%;
|
|
3671
|
+
}
|
|
3672
|
+
.sg-offset-lg-0 {
|
|
3673
|
+
margin-left: 0;
|
|
3674
|
+
}
|
|
3675
|
+
.sg-offset-lg-1 {
|
|
3676
|
+
margin-left: 8.3333333333%;
|
|
3677
|
+
}
|
|
3678
|
+
.sg-offset-lg-2 {
|
|
3679
|
+
margin-left: 16.6666666667%;
|
|
3680
|
+
}
|
|
3681
|
+
.sg-offset-lg-3 {
|
|
3682
|
+
margin-left: 25%;
|
|
3683
|
+
}
|
|
3684
|
+
.sg-offset-lg-4 {
|
|
3685
|
+
margin-left: 33.3333333333%;
|
|
3686
|
+
}
|
|
3687
|
+
.sg-offset-lg-5 {
|
|
3688
|
+
margin-left: 41.6666666667%;
|
|
3689
|
+
}
|
|
3690
|
+
.sg-offset-lg-6 {
|
|
3691
|
+
margin-left: 50%;
|
|
3692
|
+
}
|
|
3693
|
+
.sg-offset-lg-7 {
|
|
3694
|
+
margin-left: 58.3333333333%;
|
|
3695
|
+
}
|
|
3696
|
+
.sg-offset-lg-8 {
|
|
3697
|
+
margin-left: 66.6666666667%;
|
|
3698
|
+
}
|
|
3699
|
+
.sg-offset-lg-9 {
|
|
3700
|
+
margin-left: 75%;
|
|
3701
|
+
}
|
|
3702
|
+
.sg-offset-lg-10 {
|
|
3703
|
+
margin-left: 83.3333333333%;
|
|
3704
|
+
}
|
|
3705
|
+
.sg-offset-lg-11 {
|
|
3706
|
+
margin-left: 91.6666666667%;
|
|
3707
|
+
}
|
|
3708
|
+
}
|
|
3709
|
+
@media (min-width: 1200px) {
|
|
3710
|
+
.sg-col-xl {
|
|
3711
|
+
flex: 1 0 0%;
|
|
3712
|
+
}
|
|
3713
|
+
.sg-row-cols-xl-auto > * {
|
|
3714
|
+
flex: 0 0 auto;
|
|
3715
|
+
width: auto;
|
|
3716
|
+
}
|
|
3717
|
+
.sg-row-cols-xl-1 > * {
|
|
3718
|
+
flex: 0 0 auto;
|
|
3719
|
+
width: 100%;
|
|
3720
|
+
}
|
|
3721
|
+
.sg-row-cols-xl-2 > * {
|
|
3722
|
+
flex: 0 0 auto;
|
|
3723
|
+
width: 50%;
|
|
3724
|
+
}
|
|
3725
|
+
.sg-row-cols-xl-3 > * {
|
|
3726
|
+
flex: 0 0 auto;
|
|
3727
|
+
width: 33.3333333333%;
|
|
3728
|
+
}
|
|
3729
|
+
.sg-row-cols-xl-4 > * {
|
|
3730
|
+
flex: 0 0 auto;
|
|
3731
|
+
width: 25%;
|
|
3732
|
+
}
|
|
3733
|
+
.sg-row-cols-xl-5 > * {
|
|
3734
|
+
flex: 0 0 auto;
|
|
3735
|
+
width: 20%;
|
|
3736
|
+
}
|
|
3737
|
+
.sg-row-cols-xl-6 > * {
|
|
3738
|
+
flex: 0 0 auto;
|
|
3739
|
+
width: 16.6666666667%;
|
|
3740
|
+
}
|
|
3741
|
+
.sg-col-xl-auto {
|
|
3742
|
+
flex: 0 0 auto;
|
|
3743
|
+
width: auto;
|
|
3744
|
+
}
|
|
3745
|
+
.sg-col-xl-1 {
|
|
3746
|
+
flex: 0 0 auto;
|
|
3747
|
+
width: 8.3333333333%;
|
|
3748
|
+
}
|
|
3749
|
+
.sg-col-xl-2 {
|
|
3750
|
+
flex: 0 0 auto;
|
|
3751
|
+
width: 16.6666666667%;
|
|
3752
|
+
}
|
|
3753
|
+
.sg-col-xl-3 {
|
|
3754
|
+
flex: 0 0 auto;
|
|
3755
|
+
width: 25%;
|
|
3756
|
+
}
|
|
3757
|
+
.sg-col-xl-4 {
|
|
3758
|
+
flex: 0 0 auto;
|
|
3759
|
+
width: 33.3333333333%;
|
|
3760
|
+
}
|
|
3761
|
+
.sg-col-xl-5 {
|
|
3762
|
+
flex: 0 0 auto;
|
|
3763
|
+
width: 41.6666666667%;
|
|
3764
|
+
}
|
|
3765
|
+
.sg-col-xl-6 {
|
|
3766
|
+
flex: 0 0 auto;
|
|
3767
|
+
width: 50%;
|
|
3768
|
+
}
|
|
3769
|
+
.sg-col-xl-7 {
|
|
3770
|
+
flex: 0 0 auto;
|
|
3771
|
+
width: 58.3333333333%;
|
|
3772
|
+
}
|
|
3773
|
+
.sg-col-xl-8 {
|
|
3774
|
+
flex: 0 0 auto;
|
|
3775
|
+
width: 66.6666666667%;
|
|
3776
|
+
}
|
|
3777
|
+
.sg-col-xl-9 {
|
|
3778
|
+
flex: 0 0 auto;
|
|
3779
|
+
width: 75%;
|
|
3780
|
+
}
|
|
3781
|
+
.sg-col-xl-10 {
|
|
3782
|
+
flex: 0 0 auto;
|
|
3783
|
+
width: 83.3333333333%;
|
|
3784
|
+
}
|
|
3785
|
+
.sg-col-xl-11 {
|
|
3786
|
+
flex: 0 0 auto;
|
|
3787
|
+
width: 91.6666666667%;
|
|
3788
|
+
}
|
|
3789
|
+
.sg-col-xl-12 {
|
|
3790
|
+
flex: 0 0 auto;
|
|
3791
|
+
width: 100%;
|
|
3792
|
+
}
|
|
3793
|
+
.sg-offset-xl-0 {
|
|
3794
|
+
margin-left: 0;
|
|
3795
|
+
}
|
|
3796
|
+
.sg-offset-xl-1 {
|
|
3797
|
+
margin-left: 8.3333333333%;
|
|
3798
|
+
}
|
|
3799
|
+
.sg-offset-xl-2 {
|
|
3800
|
+
margin-left: 16.6666666667%;
|
|
3801
|
+
}
|
|
3802
|
+
.sg-offset-xl-3 {
|
|
3803
|
+
margin-left: 25%;
|
|
3804
|
+
}
|
|
3805
|
+
.sg-offset-xl-4 {
|
|
3806
|
+
margin-left: 33.3333333333%;
|
|
3807
|
+
}
|
|
3808
|
+
.sg-offset-xl-5 {
|
|
3809
|
+
margin-left: 41.6666666667%;
|
|
3810
|
+
}
|
|
3811
|
+
.sg-offset-xl-6 {
|
|
3812
|
+
margin-left: 50%;
|
|
3813
|
+
}
|
|
3814
|
+
.sg-offset-xl-7 {
|
|
3815
|
+
margin-left: 58.3333333333%;
|
|
3816
|
+
}
|
|
3817
|
+
.sg-offset-xl-8 {
|
|
3818
|
+
margin-left: 66.6666666667%;
|
|
3819
|
+
}
|
|
3820
|
+
.sg-offset-xl-9 {
|
|
3821
|
+
margin-left: 75%;
|
|
3822
|
+
}
|
|
3823
|
+
.sg-offset-xl-10 {
|
|
3824
|
+
margin-left: 83.3333333333%;
|
|
3825
|
+
}
|
|
3826
|
+
.sg-offset-xl-11 {
|
|
3827
|
+
margin-left: 91.6666666667%;
|
|
3828
|
+
}
|
|
3829
|
+
}
|
|
3830
|
+
@media (min-width: 1400px) {
|
|
3831
|
+
.sg-col-xxl {
|
|
3832
|
+
flex: 1 0 0%;
|
|
3833
|
+
}
|
|
3834
|
+
.sg-row-cols-xxl-auto > * {
|
|
3835
|
+
flex: 0 0 auto;
|
|
3836
|
+
width: auto;
|
|
3837
|
+
}
|
|
3838
|
+
.sg-row-cols-xxl-1 > * {
|
|
3839
|
+
flex: 0 0 auto;
|
|
3840
|
+
width: 100%;
|
|
3841
|
+
}
|
|
3842
|
+
.sg-row-cols-xxl-2 > * {
|
|
3843
|
+
flex: 0 0 auto;
|
|
3844
|
+
width: 50%;
|
|
3845
|
+
}
|
|
3846
|
+
.sg-row-cols-xxl-3 > * {
|
|
3847
|
+
flex: 0 0 auto;
|
|
3848
|
+
width: 33.3333333333%;
|
|
3849
|
+
}
|
|
3850
|
+
.sg-row-cols-xxl-4 > * {
|
|
3851
|
+
flex: 0 0 auto;
|
|
3852
|
+
width: 25%;
|
|
3853
|
+
}
|
|
3854
|
+
.sg-row-cols-xxl-5 > * {
|
|
3855
|
+
flex: 0 0 auto;
|
|
3856
|
+
width: 20%;
|
|
3857
|
+
}
|
|
3858
|
+
.sg-row-cols-xxl-6 > * {
|
|
3859
|
+
flex: 0 0 auto;
|
|
3860
|
+
width: 16.6666666667%;
|
|
3861
|
+
}
|
|
3862
|
+
.sg-col-xxl-auto {
|
|
3863
|
+
flex: 0 0 auto;
|
|
3864
|
+
width: auto;
|
|
3865
|
+
}
|
|
3866
|
+
.sg-col-xxl-1 {
|
|
3867
|
+
flex: 0 0 auto;
|
|
3868
|
+
width: 8.3333333333%;
|
|
3869
|
+
}
|
|
3870
|
+
.sg-col-xxl-2 {
|
|
3871
|
+
flex: 0 0 auto;
|
|
3872
|
+
width: 16.6666666667%;
|
|
3873
|
+
}
|
|
3874
|
+
.sg-col-xxl-3 {
|
|
3875
|
+
flex: 0 0 auto;
|
|
3876
|
+
width: 25%;
|
|
3877
|
+
}
|
|
3878
|
+
.sg-col-xxl-4 {
|
|
3879
|
+
flex: 0 0 auto;
|
|
3880
|
+
width: 33.3333333333%;
|
|
3881
|
+
}
|
|
3882
|
+
.sg-col-xxl-5 {
|
|
3883
|
+
flex: 0 0 auto;
|
|
3884
|
+
width: 41.6666666667%;
|
|
3885
|
+
}
|
|
3886
|
+
.sg-col-xxl-6 {
|
|
3887
|
+
flex: 0 0 auto;
|
|
3888
|
+
width: 50%;
|
|
3889
|
+
}
|
|
3890
|
+
.sg-col-xxl-7 {
|
|
3891
|
+
flex: 0 0 auto;
|
|
3892
|
+
width: 58.3333333333%;
|
|
3893
|
+
}
|
|
3894
|
+
.sg-col-xxl-8 {
|
|
3895
|
+
flex: 0 0 auto;
|
|
3896
|
+
width: 66.6666666667%;
|
|
3897
|
+
}
|
|
3898
|
+
.sg-col-xxl-9 {
|
|
3899
|
+
flex: 0 0 auto;
|
|
3900
|
+
width: 75%;
|
|
3901
|
+
}
|
|
3902
|
+
.sg-col-xxl-10 {
|
|
3903
|
+
flex: 0 0 auto;
|
|
3904
|
+
width: 83.3333333333%;
|
|
3905
|
+
}
|
|
3906
|
+
.sg-col-xxl-11 {
|
|
3907
|
+
flex: 0 0 auto;
|
|
3908
|
+
width: 91.6666666667%;
|
|
3909
|
+
}
|
|
3910
|
+
.sg-col-xxl-12 {
|
|
3911
|
+
flex: 0 0 auto;
|
|
3912
|
+
width: 100%;
|
|
3913
|
+
}
|
|
3914
|
+
.sg-offset-xxl-0 {
|
|
3915
|
+
margin-left: 0;
|
|
3916
|
+
}
|
|
3917
|
+
.sg-offset-xxl-1 {
|
|
3918
|
+
margin-left: 8.3333333333%;
|
|
3919
|
+
}
|
|
3920
|
+
.sg-offset-xxl-2 {
|
|
3921
|
+
margin-left: 16.6666666667%;
|
|
3922
|
+
}
|
|
3923
|
+
.sg-offset-xxl-3 {
|
|
3924
|
+
margin-left: 25%;
|
|
3925
|
+
}
|
|
3926
|
+
.sg-offset-xxl-4 {
|
|
3927
|
+
margin-left: 33.3333333333%;
|
|
3928
|
+
}
|
|
3929
|
+
.sg-offset-xxl-5 {
|
|
3930
|
+
margin-left: 41.6666666667%;
|
|
3931
|
+
}
|
|
3932
|
+
.sg-offset-xxl-6 {
|
|
3933
|
+
margin-left: 50%;
|
|
3934
|
+
}
|
|
3935
|
+
.sg-offset-xxl-7 {
|
|
3936
|
+
margin-left: 58.3333333333%;
|
|
3937
|
+
}
|
|
3938
|
+
.sg-offset-xxl-8 {
|
|
3939
|
+
margin-left: 66.6666666667%;
|
|
3940
|
+
}
|
|
3941
|
+
.sg-offset-xxl-9 {
|
|
3942
|
+
margin-left: 75%;
|
|
3943
|
+
}
|
|
3944
|
+
.sg-offset-xxl-10 {
|
|
3945
|
+
margin-left: 83.3333333333%;
|
|
3946
|
+
}
|
|
3947
|
+
.sg-offset-xxl-11 {
|
|
3948
|
+
margin-left: 91.6666666667%;
|
|
3949
|
+
}
|
|
3950
|
+
}
|
|
3951
|
+
/* Containers */
|
|
3952
|
+
.sg-container,
|
|
3953
|
+
.sg-container-fluid,
|
|
3954
|
+
.sg-container-xxl,
|
|
3955
|
+
.sg-container-xl,
|
|
3956
|
+
.sg-container-lg,
|
|
3957
|
+
.sg-container-md,
|
|
3958
|
+
.sg-container-sm {
|
|
3959
|
+
--sg-gutter-x: 1.5rem;
|
|
3960
|
+
--sg-gutter-y: 0;
|
|
3961
|
+
width: 100%;
|
|
3962
|
+
padding-right: calc(var(--sg-gutter-x) * 0.5);
|
|
3963
|
+
padding-left: calc(var(--sg-gutter-x) * 0.5);
|
|
3964
|
+
margin-right: auto;
|
|
3965
|
+
margin-left: auto;
|
|
3966
|
+
}
|
|
3967
|
+
|
|
3968
|
+
@media (min-width: 576px) {
|
|
3969
|
+
.sg-container-sm, .sg-container {
|
|
3970
|
+
max-width: 540px;
|
|
3971
|
+
}
|
|
3972
|
+
}
|
|
3973
|
+
@media (min-width: 768px) {
|
|
3974
|
+
.sg-container-md, .sg-container-sm, .sg-container {
|
|
3975
|
+
max-width: 720px;
|
|
3976
|
+
}
|
|
3977
|
+
}
|
|
3978
|
+
@media (min-width: 992px) {
|
|
3979
|
+
.sg-container-lg, .sg-container-md, .sg-container-sm, .sg-container {
|
|
3980
|
+
max-width: 960px;
|
|
3981
|
+
}
|
|
3982
|
+
}
|
|
3983
|
+
@media (min-width: 1200px) {
|
|
3984
|
+
.sg-container-xl, .sg-container-lg, .sg-container-md, .sg-container-sm, .sg-container {
|
|
3985
|
+
max-width: 1140px;
|
|
3986
|
+
}
|
|
3987
|
+
}
|
|
3988
|
+
@media (min-width: 1400px) {
|
|
3989
|
+
.sg-container-xxl, .sg-container-xl, .sg-container-lg, .sg-container-md, .sg-container-sm, .sg-container {
|
|
3990
|
+
max-width: 1320px;
|
|
3991
|
+
}
|
|
3992
|
+
}
|
|
3180
3993
|
.sg-input-group {
|
|
3181
3994
|
display: flex;
|
|
3182
3995
|
flex-wrap: wrap;
|
|
@@ -3234,9 +4047,38 @@ textarea.sg-form-control {
|
|
|
3234
4047
|
|
|
3235
4048
|
.sg-modal-tag::backdrop {
|
|
3236
4049
|
z-index: 1060;
|
|
3237
|
-
background:
|
|
4050
|
+
background: hsl(0, 0%, 0%);
|
|
4051
|
+
opacity: 0.5;
|
|
4052
|
+
animation-name: fadeInBackdrop;
|
|
4053
|
+
animation-duration: 0.3s;
|
|
4054
|
+
animation-timing-function: ease-in-out;
|
|
4055
|
+
animation-fill-mode: forwards;
|
|
4056
|
+
}
|
|
4057
|
+
.sg-modal-tag::backdrop.close {
|
|
4058
|
+
background: transparent;
|
|
4059
|
+
opacity: 0;
|
|
4060
|
+
animation-name: fadeInBackdrop;
|
|
4061
|
+
animation-duration: 0.3s;
|
|
4062
|
+
animation-timing-function: ease-in-out;
|
|
4063
|
+
animation-fill-mode: backwards;
|
|
3238
4064
|
}
|
|
3239
4065
|
|
|
4066
|
+
@keyframes fadeInBackdrop {
|
|
4067
|
+
from {
|
|
4068
|
+
opacity: 0;
|
|
4069
|
+
}
|
|
4070
|
+
to {
|
|
4071
|
+
opacity: 0.5;
|
|
4072
|
+
}
|
|
4073
|
+
}
|
|
4074
|
+
@keyframes fadeOutBackdrop {
|
|
4075
|
+
from {
|
|
4076
|
+
opacity: 0.5;
|
|
4077
|
+
}
|
|
4078
|
+
to {
|
|
4079
|
+
opacity: 0;
|
|
4080
|
+
}
|
|
4081
|
+
}
|
|
3240
4082
|
.sg-modal-tag {
|
|
3241
4083
|
z-index: 1061;
|
|
3242
4084
|
padding: 0;
|
|
@@ -3250,11 +4092,28 @@ textarea.sg-form-control {
|
|
|
3250
4092
|
border-radius: 0.5rem;
|
|
3251
4093
|
outline: 0;
|
|
3252
4094
|
}
|
|
3253
|
-
.sg-modal
|
|
3254
|
-
|
|
3255
|
-
|
|
4095
|
+
.sg-modal-tag[open=""] {
|
|
4096
|
+
animation-name: slide-in-up;
|
|
4097
|
+
animation-duration: 0.3s;
|
|
4098
|
+
animation-timing-function: ease-in-out;
|
|
4099
|
+
animation-fill-mode: forwards;
|
|
4100
|
+
}
|
|
4101
|
+
.sg-modal-tag.close {
|
|
4102
|
+
animation: scale-down 0.3s ease-in-out;
|
|
3256
4103
|
}
|
|
3257
4104
|
|
|
4105
|
+
@keyframes scale-down {
|
|
4106
|
+
to {
|
|
4107
|
+
transform: translateY(10%);
|
|
4108
|
+
opacity: 0;
|
|
4109
|
+
}
|
|
4110
|
+
}
|
|
4111
|
+
@keyframes slide-in-up {
|
|
4112
|
+
from {
|
|
4113
|
+
transform: translateY(-10%);
|
|
4114
|
+
opacity: 0.5;
|
|
4115
|
+
}
|
|
4116
|
+
}
|
|
3258
4117
|
.sg-modal-dialog-centered {
|
|
3259
4118
|
display: flex;
|
|
3260
4119
|
justify-content: center;
|
|
@@ -3273,6 +4132,7 @@ textarea.sg-form-control {
|
|
|
3273
4132
|
border-bottom: 1px solid white;
|
|
3274
4133
|
border-top-left-radius: 0.5rem;
|
|
3275
4134
|
border-top-right-radius: 0.5rem;
|
|
4135
|
+
margin: 0;
|
|
3276
4136
|
}
|
|
3277
4137
|
.sg-modal-header .sg-button-close {
|
|
3278
4138
|
padding: 0.5rem 0.5rem;
|
|
@@ -3280,7 +4140,7 @@ textarea.sg-form-control {
|
|
|
3280
4140
|
}
|
|
3281
4141
|
|
|
3282
4142
|
.sg-modal-title {
|
|
3283
|
-
margin
|
|
4143
|
+
margin: 0;
|
|
3284
4144
|
}
|
|
3285
4145
|
|
|
3286
4146
|
.sg-modal-body {
|
|
@@ -3565,7 +4425,12 @@ textarea.sg-form-control {
|
|
|
3565
4425
|
padding: 0.5rem 0rem;
|
|
3566
4426
|
}
|
|
3567
4427
|
.sg-navbar > .container-xxl, .sg-navbar > .container-xl, .sg-navbar > .container-lg, .sg-navbar > .container-md, .sg-navbar > .container-sm, .sg-navbar > .sg-container,
|
|
3568
|
-
.sg-navbar > .sg-container-fluid
|
|
4428
|
+
.sg-navbar > .sg-container-fluid,
|
|
4429
|
+
.sg-navbar > .sg-container-sm,
|
|
4430
|
+
.sg-navbar > .sg-container-md,
|
|
4431
|
+
.sg-navbar > .sg-container-lg,
|
|
4432
|
+
.sg-navbar > .sg-container-xl,
|
|
4433
|
+
.sg-navbar > .sg-container-xxl {
|
|
3569
4434
|
display: flex;
|
|
3570
4435
|
flex-wrap: inherit;
|
|
3571
4436
|
align-items: center;
|
|
@@ -3643,6 +4508,230 @@ textarea.sg-form-control {
|
|
|
3643
4508
|
cursor: default;
|
|
3644
4509
|
}
|
|
3645
4510
|
|
|
4511
|
+
.sg-offCanvas-open {
|
|
4512
|
+
overflow: hidden;
|
|
4513
|
+
}
|
|
4514
|
+
|
|
4515
|
+
.sg-offCanvas-backdrop {
|
|
4516
|
+
position: fixed;
|
|
4517
|
+
top: 0;
|
|
4518
|
+
left: 0;
|
|
4519
|
+
z-index: 1050;
|
|
4520
|
+
width: 100vw;
|
|
4521
|
+
height: 100vh;
|
|
4522
|
+
background-color: black;
|
|
4523
|
+
}
|
|
4524
|
+
.sg-offCanvas-backdrop.fadeIn {
|
|
4525
|
+
animation-name: fadeInBackdrop;
|
|
4526
|
+
animation-duration: 0.3s;
|
|
4527
|
+
animation-timing-function: ease-out;
|
|
4528
|
+
animation-fill-mode: forwards;
|
|
4529
|
+
}
|
|
4530
|
+
.sg-offCanvas-backdrop.fadeOut {
|
|
4531
|
+
animation-name: fadeOutBackdrop;
|
|
4532
|
+
animation-duration: 0.3s;
|
|
4533
|
+
animation-timing-function: ease-out;
|
|
4534
|
+
animation-fill-mode: forwards;
|
|
4535
|
+
}
|
|
4536
|
+
|
|
4537
|
+
@keyframes fadeInBackdrop {
|
|
4538
|
+
0% {
|
|
4539
|
+
opacity: 0;
|
|
4540
|
+
}
|
|
4541
|
+
100% {
|
|
4542
|
+
opacity: 0.5;
|
|
4543
|
+
}
|
|
4544
|
+
}
|
|
4545
|
+
@keyframes fadeOutBackdrop {
|
|
4546
|
+
0% {
|
|
4547
|
+
opacity: 0.5;
|
|
4548
|
+
}
|
|
4549
|
+
100% {
|
|
4550
|
+
opacity: 0;
|
|
4551
|
+
}
|
|
4552
|
+
}
|
|
4553
|
+
.sg-offCanvas {
|
|
4554
|
+
position: fixed;
|
|
4555
|
+
top: 0;
|
|
4556
|
+
left: 0;
|
|
4557
|
+
z-index: 1060;
|
|
4558
|
+
display: block;
|
|
4559
|
+
width: 100%;
|
|
4560
|
+
height: 100%;
|
|
4561
|
+
overflow-x: hidden;
|
|
4562
|
+
overflow-y: auto;
|
|
4563
|
+
outline: 0;
|
|
4564
|
+
}
|
|
4565
|
+
|
|
4566
|
+
.sg-offCanvas-dialog {
|
|
4567
|
+
z-index: 1061;
|
|
4568
|
+
position: relative;
|
|
4569
|
+
width: auto;
|
|
4570
|
+
max-height: 100vh;
|
|
4571
|
+
pointer-events: none;
|
|
4572
|
+
}
|
|
4573
|
+
.sg-offCanvas.fadeIn .sg-offCanvas-dialog {
|
|
4574
|
+
animation-name: fadeIn;
|
|
4575
|
+
animation-duration: 0.6s;
|
|
4576
|
+
animation-timing-function: ease-out;
|
|
4577
|
+
animation-fill-mode: forwards;
|
|
4578
|
+
}
|
|
4579
|
+
.sg-offCanvas.fadeOut .sg-offCanvas-dialog {
|
|
4580
|
+
animation-name: fadeOut;
|
|
4581
|
+
animation-duration: 0.3s;
|
|
4582
|
+
animation-timing-function: ease-out;
|
|
4583
|
+
animation-fill-mode: forwards;
|
|
4584
|
+
}
|
|
4585
|
+
@keyframes fadeIn {
|
|
4586
|
+
0% {
|
|
4587
|
+
opacity: 0;
|
|
4588
|
+
}
|
|
4589
|
+
100% {
|
|
4590
|
+
opacity: 1;
|
|
4591
|
+
}
|
|
4592
|
+
}
|
|
4593
|
+
@keyframes fadeOut {
|
|
4594
|
+
0% {
|
|
4595
|
+
opacity: 1;
|
|
4596
|
+
}
|
|
4597
|
+
100% {
|
|
4598
|
+
opacity: 0;
|
|
4599
|
+
}
|
|
4600
|
+
}
|
|
4601
|
+
|
|
4602
|
+
.sg-offCanvas-content {
|
|
4603
|
+
--sg-offcanvas-size: 478px;
|
|
4604
|
+
position: fixed;
|
|
4605
|
+
bottom: 0;
|
|
4606
|
+
display: flex;
|
|
4607
|
+
flex-direction: column;
|
|
4608
|
+
max-width: 100%;
|
|
4609
|
+
max-height: 100%;
|
|
4610
|
+
color: white;
|
|
4611
|
+
pointer-events: auto;
|
|
4612
|
+
background-color: #2e3236;
|
|
4613
|
+
background-clip: padding-box;
|
|
4614
|
+
outline: 0;
|
|
4615
|
+
transition: transform 0.3s ease-in-out;
|
|
4616
|
+
/*
|
|
4617
|
+
&.sg-offCanvas-footer {
|
|
4618
|
+
display: flex;
|
|
4619
|
+
flex-shrink: 0;
|
|
4620
|
+
flex-wrap: wrap;
|
|
4621
|
+
align-items: center;
|
|
4622
|
+
justify-content: flex-end;
|
|
4623
|
+
padding: 0.75em;
|
|
4624
|
+
background-color: $sg-offCanvas-background-color;
|
|
4625
|
+
border-top: 1px solid $sg-offCanvas-text-color;
|
|
4626
|
+
@include border-bottom-radius($sg-offCanvas-radius);
|
|
4627
|
+
|
|
4628
|
+
gap: 0.5em;
|
|
4629
|
+
}
|
|
4630
|
+
*/
|
|
4631
|
+
}
|
|
4632
|
+
.sg-offCanvas-content.sg-offcanvas-start {
|
|
4633
|
+
top: 0;
|
|
4634
|
+
left: 0;
|
|
4635
|
+
width: var(--sg-offcanvas-size);
|
|
4636
|
+
border-right: 1px solid #2e3236;
|
|
4637
|
+
transform: translateX(-100%);
|
|
4638
|
+
}
|
|
4639
|
+
.sg-offCanvas-content.sg-offcanvas-end {
|
|
4640
|
+
top: 0;
|
|
4641
|
+
right: 0;
|
|
4642
|
+
width: var(--sg-offcanvas-size);
|
|
4643
|
+
border-left: 1px solid #2e3236;
|
|
4644
|
+
transform: translateX(100%);
|
|
4645
|
+
}
|
|
4646
|
+
.sg-offCanvas-content.sg-offcanvas-top {
|
|
4647
|
+
top: 0;
|
|
4648
|
+
right: 0;
|
|
4649
|
+
left: 0;
|
|
4650
|
+
height: var(--sg-offcanvas-size);
|
|
4651
|
+
max-height: 100%;
|
|
4652
|
+
border-bottom: 1px solid #2e3236;
|
|
4653
|
+
transform: translateY(-100%);
|
|
4654
|
+
}
|
|
4655
|
+
.sg-offCanvas-content.sg-offcanvas-bottom {
|
|
4656
|
+
right: 0;
|
|
4657
|
+
left: 0;
|
|
4658
|
+
height: var(--sg-offcanvas-size);
|
|
4659
|
+
max-height: 100%;
|
|
4660
|
+
border-top: 1px solid #2e3236;
|
|
4661
|
+
transform: translateY(100%);
|
|
4662
|
+
}
|
|
4663
|
+
.sg-offCanvas-content.sg-slide-in {
|
|
4664
|
+
transform: none;
|
|
4665
|
+
}
|
|
4666
|
+
.sg-offCanvas-content.sg-offCanvas-static {
|
|
4667
|
+
transition: transform 0.3s ease-out;
|
|
4668
|
+
transform: scaleX(1.02);
|
|
4669
|
+
}
|
|
4670
|
+
.sg-offCanvas-content .sg-offCanvas-header {
|
|
4671
|
+
display: flex;
|
|
4672
|
+
flex-shrink: 0;
|
|
4673
|
+
align-items: center;
|
|
4674
|
+
justify-content: space-between;
|
|
4675
|
+
padding: 1em;
|
|
4676
|
+
}
|
|
4677
|
+
.sg-offCanvas-content .sg-offCanvas-header .sg-button-close {
|
|
4678
|
+
padding: 0.5em 0.5em;
|
|
4679
|
+
margin: -0.25em -0.25em -0.25em auto;
|
|
4680
|
+
}
|
|
4681
|
+
.sg-offCanvas-content .sg-offCanvas-title {
|
|
4682
|
+
margin-bottom: 0;
|
|
4683
|
+
}
|
|
4684
|
+
.sg-offCanvas-content .sg-offCanvas-body {
|
|
4685
|
+
position: relative;
|
|
4686
|
+
flex: 1 1 auto;
|
|
4687
|
+
padding: 1em;
|
|
4688
|
+
background-color: #43474a;
|
|
4689
|
+
overflow: auto;
|
|
4690
|
+
}
|
|
4691
|
+
|
|
4692
|
+
/*
|
|
4693
|
+
$offCanvas-lg: 800px !default;
|
|
4694
|
+
$offCanvas-xl: 1140px !default;
|
|
4695
|
+
|
|
4696
|
+
$container-max-widths: ( sm: 540px, md: 720px, lg: 960px, xl: 1140px, xxl: 1320px ) !default;
|
|
4697
|
+
$grid-breakpoints: (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px ) !default;
|
|
4698
|
+
|
|
4699
|
+
@each $breakpoint, $value in $grid-breakpoints {
|
|
4700
|
+
@if $breakpoint == "xs" {
|
|
4701
|
+
@media (max-width: 575px) {
|
|
4702
|
+
.sg-offCanvas-dialog {
|
|
4703
|
+
margin: 0.5em;
|
|
4704
|
+
}
|
|
4705
|
+
}
|
|
4706
|
+
}
|
|
4707
|
+
@if $breakpoint == "sm" {
|
|
4708
|
+
@media (min-width: 576px) {
|
|
4709
|
+
.sg-offCanvas-dialog {
|
|
4710
|
+
max-width: 500px;
|
|
4711
|
+
margin-right: auto;
|
|
4712
|
+
margin-left: auto;
|
|
4713
|
+
}
|
|
4714
|
+
.sg-offCanvas-sm {
|
|
4715
|
+
max-width: 300px
|
|
4716
|
+
}
|
|
4717
|
+
}
|
|
4718
|
+
}
|
|
4719
|
+
@else if $breakpoint == "lg" {
|
|
4720
|
+
@media (min-width: 992px) {
|
|
4721
|
+
.offCanvas-lg, .offCanvas-xl {
|
|
4722
|
+
max-width: 800px;
|
|
4723
|
+
}
|
|
4724
|
+
}
|
|
4725
|
+
}
|
|
4726
|
+
@else if $breakpoint == "xl" {
|
|
4727
|
+
@media (min-width: 1200px) {
|
|
4728
|
+
.offCanvas-xl {
|
|
4729
|
+
max-width: 1140px;
|
|
4730
|
+
}
|
|
4731
|
+
}
|
|
4732
|
+
}
|
|
4733
|
+
}
|
|
4734
|
+
*/
|
|
3646
4735
|
.sg-overlay-arrow {
|
|
3647
4736
|
background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 20 20"> <polygon points="1,1 1,19, 14,10" fill="black" stroke-width="1.5" stroke="black" /> </svg>');
|
|
3648
4737
|
background-repeat: no-repeat no-repeat;
|
|
@@ -3665,58 +4754,64 @@ textarea.sg-form-control {
|
|
|
3665
4754
|
transform: rotate(270deg);
|
|
3666
4755
|
}
|
|
3667
4756
|
|
|
3668
|
-
.moveable-popout {
|
|
4757
|
+
.sg-moveable-popout {
|
|
3669
4758
|
--popout-index: 1010;
|
|
3670
4759
|
position: absolute;
|
|
3671
4760
|
display: flex;
|
|
3672
4761
|
flex-direction: column;
|
|
3673
4762
|
border-radius: 0.375em;
|
|
4763
|
+
padding: 0;
|
|
4764
|
+
margin: 0;
|
|
3674
4765
|
border: 1px solid white;
|
|
3675
4766
|
width: 15rem;
|
|
3676
4767
|
min-width: min(18rem, 100%);
|
|
3677
4768
|
min-height: min(9rem, 100%);
|
|
3678
4769
|
box-shadow: 0 0 0.5rem rgba(255, 255, 255, 0.3764705882);
|
|
4770
|
+
color: white;
|
|
3679
4771
|
overflow: hidden;
|
|
3680
4772
|
z-index: var(--popout-index);
|
|
3681
4773
|
}
|
|
3682
|
-
.moveable-popout .sg-popout-header {
|
|
4774
|
+
.sg-moveable-popout .sg-popout-header {
|
|
3683
4775
|
user-select: inherit;
|
|
3684
4776
|
margin-bottom: 0;
|
|
3685
4777
|
padding: 0.25em 0.5em;
|
|
3686
4778
|
background-color: #212529;
|
|
3687
4779
|
border-bottom: 1px solid white;
|
|
3688
4780
|
}
|
|
3689
|
-
.moveable-popout .sg-popout-header > * {
|
|
4781
|
+
.sg-moveable-popout .sg-popout-header > * {
|
|
3690
4782
|
margin: 0;
|
|
3691
4783
|
}
|
|
3692
|
-
.moveable-popout .sg-popout-header:first-child {
|
|
4784
|
+
.sg-moveable-popout .sg-popout-header:first-child {
|
|
3693
4785
|
border-radius: 0.375em 0.375em 0 0;
|
|
3694
4786
|
}
|
|
3695
|
-
.moveable-popout[data-move=true]
|
|
4787
|
+
.sg-moveable-popout[data-move=true] {
|
|
4788
|
+
touch-action: none;
|
|
4789
|
+
}
|
|
4790
|
+
.sg-moveable-popout[data-move=true] .sg-popout-header {
|
|
3696
4791
|
cursor: move;
|
|
3697
4792
|
}
|
|
3698
|
-
.moveable-popout .sg-popout-body {
|
|
4793
|
+
.sg-moveable-popout .sg-popout-body {
|
|
3699
4794
|
flex: 1 1 auto;
|
|
3700
4795
|
padding: 0.5em;
|
|
3701
4796
|
user-select: inherit;
|
|
3702
4797
|
background-color: color-mix(in srgb, white 4%, #212529);
|
|
3703
4798
|
}
|
|
3704
|
-
.moveable-popout .sg-popout-footer {
|
|
4799
|
+
.sg-moveable-popout .sg-popout-footer {
|
|
3705
4800
|
user-select: inherit;
|
|
3706
4801
|
padding: 0.25em 0.5em;
|
|
3707
4802
|
background-color: #212529;
|
|
3708
4803
|
border-top: 1px solid white;
|
|
3709
4804
|
}
|
|
3710
|
-
.moveable-popout .sg-popout-footer:last-child {
|
|
4805
|
+
.sg-moveable-popout .sg-popout-footer:last-child {
|
|
3711
4806
|
border-radius: 0 0 0.375em 0.375em;
|
|
3712
4807
|
}
|
|
3713
|
-
.moveable-popout .sg-popout-text:last-child {
|
|
4808
|
+
.sg-moveable-popout .sg-popout-text:last-child {
|
|
3714
4809
|
margin-bottom: 0;
|
|
3715
4810
|
}
|
|
3716
|
-
.moveable-popout[data-resize=true] {
|
|
4811
|
+
.sg-moveable-popout[data-resize=true] {
|
|
3717
4812
|
resize: both;
|
|
3718
4813
|
}
|
|
3719
|
-
.moveable-popout[data-resize=true]::before {
|
|
4814
|
+
.sg-moveable-popout[data-resize=true]::before {
|
|
3720
4815
|
content: "";
|
|
3721
4816
|
position: absolute;
|
|
3722
4817
|
bottom: 0;
|
|
@@ -3727,6 +4822,54 @@ textarea.sg-form-control {
|
|
|
3727
4822
|
background-image: url('data:image/svg+xml, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256"><rect width="256" height="256" fill="none"/><line x1="208" y1="128" x2="128" y2="208" fill="none" stroke="white" stroke-linecap="round" stroke-linejoin="round" stroke-width="16"/><line x1="192" y1="40" x2="40" y2="192" fill="none" stroke="white" stroke-linecap="round" stroke-linejoin="round" stroke-width="16"/></svg>');
|
|
3728
4823
|
}
|
|
3729
4824
|
|
|
4825
|
+
.sg-spinner {
|
|
4826
|
+
display: inline-block;
|
|
4827
|
+
border-radius: 50%;
|
|
4828
|
+
width: 1em;
|
|
4829
|
+
height: 1em;
|
|
4830
|
+
border: 0.2em solid white;
|
|
4831
|
+
border-right-color: transparent;
|
|
4832
|
+
margin: auto;
|
|
4833
|
+
animation-name: spinny;
|
|
4834
|
+
animation-duration: 0.5s;
|
|
4835
|
+
animation-timing-function: linear;
|
|
4836
|
+
animation-iteration-count: infinite;
|
|
4837
|
+
}
|
|
4838
|
+
|
|
4839
|
+
@keyframes spinny {
|
|
4840
|
+
100% {
|
|
4841
|
+
transform: rotate(360deg);
|
|
4842
|
+
}
|
|
4843
|
+
}
|
|
4844
|
+
.sg-table {
|
|
4845
|
+
--sg-table-padding: $sg-table-padding;
|
|
4846
|
+
width: 100%;
|
|
4847
|
+
margin-bottom: 1rem;
|
|
4848
|
+
color: black;
|
|
4849
|
+
vertical-align: top;
|
|
4850
|
+
border-color: black;
|
|
4851
|
+
}
|
|
4852
|
+
.sg-table > :not(caption) > * > * {
|
|
4853
|
+
padding: 0.5rem 0.5rem;
|
|
4854
|
+
background-color: transparent;
|
|
4855
|
+
border-bottom-width: 1px;
|
|
4856
|
+
box-shadow: inset 0 0 0 9999px transparent;
|
|
4857
|
+
}
|
|
4858
|
+
.sg-table > tbody {
|
|
4859
|
+
vertical-align: inherit;
|
|
4860
|
+
}
|
|
4861
|
+
.sg-table > thead {
|
|
4862
|
+
vertical-align: bottom;
|
|
4863
|
+
}
|
|
4864
|
+
|
|
4865
|
+
.sg-caption-top {
|
|
4866
|
+
caption-side: top;
|
|
4867
|
+
}
|
|
4868
|
+
|
|
4869
|
+
.sg-table-sm > :not(caption) > * > * {
|
|
4870
|
+
padding: 0.25rem 0.25rem;
|
|
4871
|
+
}
|
|
4872
|
+
|
|
3730
4873
|
.sg-tabs {
|
|
3731
4874
|
width: 100%;
|
|
3732
4875
|
}
|