@clayui/css 3.137.0 → 3.139.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/lib/css/atlas.css +403 -48
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +364 -15
- package/lib/css/base.css.map +1 -1
- package/lib/css/cadmin.css +375 -20
- package/lib/css/cadmin.css.map +1 -1
- package/lib/images/icons/comments.svg +3 -5
- package/lib/images/icons/icons.svg +1 -1
- package/lib/images/icons/megaphone-full.svg +1 -0
- package/lib/images/icons/minus-circle.svg +2 -2
- package/lib/images/icons/paste-plaintext.svg +1 -1
- package/lib/images/icons/pin-full.svg +1 -0
- package/lib/images/icons/reset.svg +3 -3
- package/lib/images/icons/slash.svg +1 -1
- package/lib/images/icons/social-twitter.svg +1 -0
- package/package.json +2 -2
- package/src/images/icons/comments.svg +3 -5
- package/src/images/icons/megaphone-full.svg +1 -0
- package/src/images/icons/minus-circle.svg +2 -2
- package/src/images/icons/paste-plaintext.svg +1 -1
- package/src/images/icons/pin-full.svg +1 -0
- package/src/images/icons/reset.svg +3 -3
- package/src/images/icons/slash.svg +1 -1
- package/src/images/icons/social-twitter.svg +1 -0
- package/src/scss/_license-text.scss +1 -1
- package/src/scss/atlas/variables/_forms.scss +6 -9
- package/src/scss/atlas/variables/_sidebar.scss +12 -7
- package/src/scss/cadmin/components/_form-validation.scss +16 -0
- package/src/scss/cadmin/components/_sidebar.scss +32 -0
- package/src/scss/cadmin/components/_slideout.scss +12 -0
- package/src/scss/cadmin/components/_utilities-functional-important.scss +8 -0
- package/src/scss/cadmin/variables/_forms.scss +39 -3
- package/src/scss/cadmin/variables/_modals.scss +1 -1
- package/src/scss/cadmin/variables/_sidebar.scss +36 -7
- package/src/scss/cadmin/variables/_slideout.scss +29 -4
- package/src/scss/cadmin/variables/_stickers.scss +6 -0
- package/src/scss/components/_form-validation.scss +16 -0
- package/src/scss/components/_sidebar.scss +32 -0
- package/src/scss/components/_slideout.scss +4 -0
- package/src/scss/components/_utilities-functional-important.scss +8 -0
- package/src/scss/functions/_lx-icons-generated.scss +4 -4
- package/src/scss/mixins/_globals.scss +7 -0
- package/src/scss/mixins/_grid.scss +6 -0
- package/src/scss/mixins/_sidebar.scss +2 -0
- package/src/scss/mixins/_slideout.scss +11 -9
- package/src/scss/mixins/_stickers.scss +447 -0
- package/src/scss/variables/_forms.scss +36 -0
- package/src/scss/variables/_modals.scss +1 -1
- package/src/scss/variables/_sidebar.scss +26 -9
- package/src/scss/variables/_slideout.scss +29 -4
- package/src/scss/variables/_stickers.scss +6 -0
|
@@ -221,6 +221,453 @@
|
|
|
221
221
|
@include clay-css($base);
|
|
222
222
|
}
|
|
223
223
|
|
|
224
|
+
$_hover: map-get($map, hover);
|
|
225
|
+
|
|
226
|
+
@if ($_hover) {
|
|
227
|
+
&:hover {
|
|
228
|
+
@include clay-css($_hover);
|
|
229
|
+
|
|
230
|
+
$_before: map-get($_hover, before);
|
|
231
|
+
|
|
232
|
+
@if ($_before) {
|
|
233
|
+
&::before {
|
|
234
|
+
@include clay-css($_before);
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
$_after: map-get($_hover, after);
|
|
239
|
+
|
|
240
|
+
@if ($_after) {
|
|
241
|
+
&::after {
|
|
242
|
+
@include clay-css($_after);
|
|
243
|
+
}
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
$_inline-item: map-get($_hover, inline-item);
|
|
247
|
+
|
|
248
|
+
@if ($_inline-item) {
|
|
249
|
+
.inline-item {
|
|
250
|
+
@include clay-css($_inline-item);
|
|
251
|
+
}
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
$_inline-item-before: map-get($_hover, inline-item-before);
|
|
255
|
+
|
|
256
|
+
@if ($_inline-item-before) {
|
|
257
|
+
.inline-item-before {
|
|
258
|
+
@include clay-css($_inline-item-before);
|
|
259
|
+
}
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
$_inline-item-middle: map-get($_hover, inline-item-middle);
|
|
263
|
+
|
|
264
|
+
@if ($_inline-item-middle) {
|
|
265
|
+
.inline-item-middle {
|
|
266
|
+
@include clay-css($_inline-item-middle);
|
|
267
|
+
}
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
$_inline-item-after: map-get($_hover, inline-item-after);
|
|
271
|
+
|
|
272
|
+
@if ($_inline-item-after) {
|
|
273
|
+
.inline-item-after {
|
|
274
|
+
@include clay-css($_inline-item-after);
|
|
275
|
+
}
|
|
276
|
+
}
|
|
277
|
+
}
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
$_focus: map-get($map, focus);
|
|
281
|
+
|
|
282
|
+
@if ($_focus) {
|
|
283
|
+
@at-root {
|
|
284
|
+
&.focus,
|
|
285
|
+
#{$focus-visible-selector},
|
|
286
|
+
#{if($c-prefers-focus-selector,$c-prefers-focus-selector,clay-insert-before('.cadmin', '.c-prefers-focus ', '&:focus'))} {
|
|
287
|
+
@include clay-css($_focus);
|
|
288
|
+
|
|
289
|
+
$_before: map-get($_focus, before);
|
|
290
|
+
|
|
291
|
+
@if ($_before) {
|
|
292
|
+
&::before {
|
|
293
|
+
@include clay-css($_before);
|
|
294
|
+
}
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
$_after: map-get($_focus, after);
|
|
298
|
+
|
|
299
|
+
@if ($_after) {
|
|
300
|
+
&::after {
|
|
301
|
+
@include clay-css($_after);
|
|
302
|
+
}
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
$_hover: map-get($_focus, hover);
|
|
306
|
+
|
|
307
|
+
@if ($_hover) {
|
|
308
|
+
&:hover {
|
|
309
|
+
@include clay-css($_hover);
|
|
310
|
+
|
|
311
|
+
$_before: map-get($_hover, before);
|
|
312
|
+
|
|
313
|
+
@if ($_before) {
|
|
314
|
+
&::before {
|
|
315
|
+
@include clay-css($_before);
|
|
316
|
+
}
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
$_after: map-get($_hover, after);
|
|
320
|
+
|
|
321
|
+
@if ($_after) {
|
|
322
|
+
&::after {
|
|
323
|
+
@include clay-css($_after);
|
|
324
|
+
}
|
|
325
|
+
}
|
|
326
|
+
}
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
$_inline-item: map-get($_focus, inline-item);
|
|
330
|
+
|
|
331
|
+
@if ($_inline-item) {
|
|
332
|
+
.inline-item {
|
|
333
|
+
@include clay-css($_inline-item);
|
|
334
|
+
}
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
$_inline-item-before: map-get(
|
|
338
|
+
$_focus,
|
|
339
|
+
inline-item-before
|
|
340
|
+
);
|
|
341
|
+
|
|
342
|
+
@if ($_inline-item-before) {
|
|
343
|
+
.inline-item-before {
|
|
344
|
+
@include clay-css($_inline-item-before);
|
|
345
|
+
}
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
$_inline-item-middle: map-get(
|
|
349
|
+
$_focus,
|
|
350
|
+
inline-item-middle
|
|
351
|
+
);
|
|
352
|
+
|
|
353
|
+
@if ($_inline-item-middle) {
|
|
354
|
+
.inline-item-middle {
|
|
355
|
+
@include clay-css($_inline-item-middle);
|
|
356
|
+
}
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
$_inline-item-after: map-get(
|
|
360
|
+
$_focus,
|
|
361
|
+
inline-item-after
|
|
362
|
+
);
|
|
363
|
+
|
|
364
|
+
@if ($_inline-item-after) {
|
|
365
|
+
.inline-item-after {
|
|
366
|
+
@include clay-css($_inline-item-after);
|
|
367
|
+
}
|
|
368
|
+
}
|
|
369
|
+
}
|
|
370
|
+
}
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
$_active: map-get($map, active);
|
|
374
|
+
|
|
375
|
+
@if ($_active) {
|
|
376
|
+
&:active {
|
|
377
|
+
@include clay-css($_active);
|
|
378
|
+
|
|
379
|
+
$_before: map-get($_active, before);
|
|
380
|
+
|
|
381
|
+
@if ($_before) {
|
|
382
|
+
&::before {
|
|
383
|
+
@include clay-css($_before);
|
|
384
|
+
}
|
|
385
|
+
}
|
|
386
|
+
|
|
387
|
+
$_after: map-get($_active, after);
|
|
388
|
+
|
|
389
|
+
@if ($_after) {
|
|
390
|
+
&::after {
|
|
391
|
+
@include clay-css($_after);
|
|
392
|
+
}
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
$_focus: map-get($_active, focus);
|
|
396
|
+
|
|
397
|
+
@if ($_focus) {
|
|
398
|
+
@at-root {
|
|
399
|
+
#{$focus-visible-selector},
|
|
400
|
+
#{if($c-prefers-focus-selector,$c-prefers-focus-selector,clay-insert-before('.cadmin', '.c-prefers-focus ', '&:focus'))} {
|
|
401
|
+
@include clay-css($_focus);
|
|
402
|
+
|
|
403
|
+
$_before: map-get($_focus, before);
|
|
404
|
+
|
|
405
|
+
@if ($_before) {
|
|
406
|
+
&::before {
|
|
407
|
+
@include clay-css($_before);
|
|
408
|
+
}
|
|
409
|
+
}
|
|
410
|
+
|
|
411
|
+
$_after: map-get($_focus, after);
|
|
412
|
+
|
|
413
|
+
@if ($_after) {
|
|
414
|
+
&::after {
|
|
415
|
+
@include clay-css($_after);
|
|
416
|
+
}
|
|
417
|
+
}
|
|
418
|
+
}
|
|
419
|
+
}
|
|
420
|
+
}
|
|
421
|
+
|
|
422
|
+
$_inline-item: map-get($_active, inline-item);
|
|
423
|
+
|
|
424
|
+
@if ($_inline-item) {
|
|
425
|
+
.inline-item {
|
|
426
|
+
@include clay-css($_inline-item);
|
|
427
|
+
}
|
|
428
|
+
}
|
|
429
|
+
|
|
430
|
+
$_inline-item-before: map-get($_active, inline-item-before);
|
|
431
|
+
|
|
432
|
+
@if ($_inline-item-before) {
|
|
433
|
+
.inline-item-before {
|
|
434
|
+
@include clay-css($_inline-item-before);
|
|
435
|
+
}
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
$_inline-item-middle: map-get($_active, inline-item-middle);
|
|
439
|
+
|
|
440
|
+
@if ($_inline-item-middle) {
|
|
441
|
+
.inline-item-middle {
|
|
442
|
+
@include clay-css($_inline-item-middle);
|
|
443
|
+
}
|
|
444
|
+
}
|
|
445
|
+
|
|
446
|
+
$_inline-item-after: map-get($_active, inline-item-after);
|
|
447
|
+
|
|
448
|
+
@if ($_inline-item-after) {
|
|
449
|
+
.inline-item-after {
|
|
450
|
+
@include clay-css($_inline-item-after);
|
|
451
|
+
}
|
|
452
|
+
}
|
|
453
|
+
}
|
|
454
|
+
}
|
|
455
|
+
|
|
456
|
+
$_active-class: map-get($map, active-class);
|
|
457
|
+
|
|
458
|
+
@if ($_active-class) {
|
|
459
|
+
&.active {
|
|
460
|
+
@include clay-css($_active-class);
|
|
461
|
+
|
|
462
|
+
$_before: map-get($_active-class, before);
|
|
463
|
+
|
|
464
|
+
@if ($_before) {
|
|
465
|
+
&::before {
|
|
466
|
+
@include clay-css($_before);
|
|
467
|
+
}
|
|
468
|
+
}
|
|
469
|
+
|
|
470
|
+
$_after: map-get($_active-class, after);
|
|
471
|
+
|
|
472
|
+
@if ($_after) {
|
|
473
|
+
&::after {
|
|
474
|
+
@include clay-css($_after);
|
|
475
|
+
}
|
|
476
|
+
}
|
|
477
|
+
|
|
478
|
+
$_focus: map-get($_active-class, focus);
|
|
479
|
+
|
|
480
|
+
@if ($_focus) {
|
|
481
|
+
@at-root {
|
|
482
|
+
#{$focus-visible-selector},
|
|
483
|
+
#{if($c-prefers-focus-selector,$c-prefers-focus-selector,clay-insert-before('.cadmin', '.c-prefers-focus ', '&:focus'))} {
|
|
484
|
+
@include clay-css($_focus);
|
|
485
|
+
}
|
|
486
|
+
}
|
|
487
|
+
}
|
|
488
|
+
|
|
489
|
+
$_inline-item: map-get($_active-class, inline-item);
|
|
490
|
+
|
|
491
|
+
@if ($_inline-item) {
|
|
492
|
+
.inline-item {
|
|
493
|
+
@include clay-css($_inline-item);
|
|
494
|
+
}
|
|
495
|
+
}
|
|
496
|
+
|
|
497
|
+
$_inline-item-before: map-get(
|
|
498
|
+
$_active-class,
|
|
499
|
+
inline-item-before
|
|
500
|
+
);
|
|
501
|
+
|
|
502
|
+
@if ($_inline-item-before) {
|
|
503
|
+
.inline-item-before {
|
|
504
|
+
@include clay-css($_inline-item-before);
|
|
505
|
+
}
|
|
506
|
+
}
|
|
507
|
+
|
|
508
|
+
$_inline-item-middle: map-get(
|
|
509
|
+
$_active-class,
|
|
510
|
+
inline-item-middle
|
|
511
|
+
);
|
|
512
|
+
|
|
513
|
+
@if ($_inline-item-middle) {
|
|
514
|
+
.inline-item-middle {
|
|
515
|
+
@include clay-css($_inline-item-middle);
|
|
516
|
+
}
|
|
517
|
+
}
|
|
518
|
+
|
|
519
|
+
$_inline-item-after: map-get(
|
|
520
|
+
$_active-class,
|
|
521
|
+
inline-item-after
|
|
522
|
+
);
|
|
523
|
+
|
|
524
|
+
@if ($_inline-item-after) {
|
|
525
|
+
.inline-item-after {
|
|
526
|
+
@include clay-css($_inline-item-after);
|
|
527
|
+
}
|
|
528
|
+
}
|
|
529
|
+
}
|
|
530
|
+
}
|
|
531
|
+
|
|
532
|
+
$_disabled: map-get($map, disabled);
|
|
533
|
+
|
|
534
|
+
@if ($_disabled) {
|
|
535
|
+
&:disabled,
|
|
536
|
+
&.disabled {
|
|
537
|
+
@include clay-css($_disabled);
|
|
538
|
+
|
|
539
|
+
$_before: map-get($_disabled, before);
|
|
540
|
+
|
|
541
|
+
@if ($_before) {
|
|
542
|
+
&::before {
|
|
543
|
+
@include clay-css($_before);
|
|
544
|
+
}
|
|
545
|
+
}
|
|
546
|
+
|
|
547
|
+
$_after: map-get($_disabled, after);
|
|
548
|
+
|
|
549
|
+
@if ($_after) {
|
|
550
|
+
&::after {
|
|
551
|
+
@include clay-css($_after);
|
|
552
|
+
}
|
|
553
|
+
}
|
|
554
|
+
|
|
555
|
+
$_focus: map-get($_disabled, focus);
|
|
556
|
+
|
|
557
|
+
@if ($_focus) {
|
|
558
|
+
@at-root {
|
|
559
|
+
#{$focus-visible-selector},
|
|
560
|
+
#{if($c-prefers-focus-selector,$c-prefers-focus-selector,clay-insert-before('.cadmin', '.c-prefers-focus ', '&:focus'))} {
|
|
561
|
+
@include clay-css($_focus);
|
|
562
|
+
|
|
563
|
+
$_before: map-get($_focus, before);
|
|
564
|
+
|
|
565
|
+
@if ($_before) {
|
|
566
|
+
&::before {
|
|
567
|
+
@include clay-css($_before);
|
|
568
|
+
}
|
|
569
|
+
}
|
|
570
|
+
|
|
571
|
+
$_after: map-get($_focus, after);
|
|
572
|
+
|
|
573
|
+
@if ($_after) {
|
|
574
|
+
&::after {
|
|
575
|
+
@include clay-css($_after);
|
|
576
|
+
}
|
|
577
|
+
}
|
|
578
|
+
}
|
|
579
|
+
}
|
|
580
|
+
}
|
|
581
|
+
|
|
582
|
+
$_active: map-get($_disabled, active);
|
|
583
|
+
|
|
584
|
+
@if ($_active) {
|
|
585
|
+
&:active {
|
|
586
|
+
@include clay-css($_active);
|
|
587
|
+
|
|
588
|
+
$_before: map-get($_active, before);
|
|
589
|
+
|
|
590
|
+
@if ($_before) {
|
|
591
|
+
&::before {
|
|
592
|
+
@include clay-css($_before);
|
|
593
|
+
}
|
|
594
|
+
}
|
|
595
|
+
|
|
596
|
+
$_after: map-get($_active, after);
|
|
597
|
+
|
|
598
|
+
@if ($_after) {
|
|
599
|
+
&::after {
|
|
600
|
+
@include clay-css($_after);
|
|
601
|
+
}
|
|
602
|
+
}
|
|
603
|
+
}
|
|
604
|
+
}
|
|
605
|
+
|
|
606
|
+
$_inline-item: map-get($_disabled, inline-item);
|
|
607
|
+
|
|
608
|
+
@if ($_inline-item) {
|
|
609
|
+
.inline-item {
|
|
610
|
+
@include clay-css($_inline-item);
|
|
611
|
+
}
|
|
612
|
+
}
|
|
613
|
+
|
|
614
|
+
$_inline-item-before: map-get(
|
|
615
|
+
$_disabled,
|
|
616
|
+
inline-item-before
|
|
617
|
+
);
|
|
618
|
+
|
|
619
|
+
@if ($_inline-item-before) {
|
|
620
|
+
.inline-item-before {
|
|
621
|
+
@include clay-css($_inline-item-before);
|
|
622
|
+
}
|
|
623
|
+
}
|
|
624
|
+
|
|
625
|
+
$_inline-item-middle: map-get(
|
|
626
|
+
$_disabled,
|
|
627
|
+
inline-item-middle
|
|
628
|
+
);
|
|
629
|
+
|
|
630
|
+
@if ($_inline-item-middle) {
|
|
631
|
+
.inline-item-middle {
|
|
632
|
+
@include clay-css($_inline-item-middle);
|
|
633
|
+
}
|
|
634
|
+
}
|
|
635
|
+
|
|
636
|
+
$_inline-item-after: map-get($_disabled, inline-item-after);
|
|
637
|
+
|
|
638
|
+
@if ($_inline-item-after) {
|
|
639
|
+
.inline-item-after {
|
|
640
|
+
@include clay-css($_inline-item-after);
|
|
641
|
+
}
|
|
642
|
+
}
|
|
643
|
+
}
|
|
644
|
+
}
|
|
645
|
+
|
|
646
|
+
$_show: map-get($map, show);
|
|
647
|
+
|
|
648
|
+
@if ($_show) {
|
|
649
|
+
&[aria-expanded='true'],
|
|
650
|
+
&.show {
|
|
651
|
+
@include clay-css($_show);
|
|
652
|
+
|
|
653
|
+
$_before: map-get($_show, before);
|
|
654
|
+
|
|
655
|
+
@if ($_before) {
|
|
656
|
+
&::before {
|
|
657
|
+
@include clay-css($_before);
|
|
658
|
+
}
|
|
659
|
+
}
|
|
660
|
+
|
|
661
|
+
$_after: map-get($_show, after);
|
|
662
|
+
|
|
663
|
+
@if ($_after) {
|
|
664
|
+
&::after {
|
|
665
|
+
@include clay-css($_after);
|
|
666
|
+
}
|
|
667
|
+
}
|
|
668
|
+
}
|
|
669
|
+
}
|
|
670
|
+
|
|
224
671
|
@if (length($inline-item) != 0) {
|
|
225
672
|
> .inline-item {
|
|
226
673
|
@include clay-css($inline-item);
|
|
@@ -695,6 +695,24 @@ $form-text: map-merge(
|
|
|
695
695
|
font-weight: $form-text-font-weight,
|
|
696
696
|
margin-top: $form-text-margin-top,
|
|
697
697
|
word-wrap: break-word,
|
|
698
|
+
blockquote: (
|
|
699
|
+
font-style: italic,
|
|
700
|
+
font-weight: $font-weight-normal,
|
|
701
|
+
margin-bottom: 0,
|
|
702
|
+
margin-top: 0.75rem,
|
|
703
|
+
padding-left: 0.75rem,
|
|
704
|
+
position: relative,
|
|
705
|
+
before: (
|
|
706
|
+
background-color: $secondary-l1,
|
|
707
|
+
bottom: 0,
|
|
708
|
+
content: '',
|
|
709
|
+
display: block,
|
|
710
|
+
left: 0,
|
|
711
|
+
position: absolute,
|
|
712
|
+
top: 0,
|
|
713
|
+
width: 0.125rem,
|
|
714
|
+
),
|
|
715
|
+
),
|
|
698
716
|
),
|
|
699
717
|
$form-text
|
|
700
718
|
);
|
|
@@ -799,6 +817,12 @@ $input-danger: map-deep-merge(
|
|
|
799
817
|
box-shadow: $input-danger-focus-box-shadow,
|
|
800
818
|
color: $input-danger-focus-color,
|
|
801
819
|
),
|
|
820
|
+
focus-within: (
|
|
821
|
+
background-color: $input-danger-bg,
|
|
822
|
+
border-color: $input-danger-border-color,
|
|
823
|
+
box-shadow: $input-danger-box-shadow,
|
|
824
|
+
color: $input-danger-color,
|
|
825
|
+
),
|
|
802
826
|
),
|
|
803
827
|
$input-danger
|
|
804
828
|
);
|
|
@@ -952,6 +976,12 @@ $input-warning: map-deep-merge(
|
|
|
952
976
|
box-shadow: $input-warning-focus-box-shadow,
|
|
953
977
|
color: $input-warning-focus-color,
|
|
954
978
|
),
|
|
979
|
+
focus-within: (
|
|
980
|
+
background-color: $input-warning-bg,
|
|
981
|
+
border-color: $input-warning-border-color,
|
|
982
|
+
box-shadow: $input-warning-box-shadow,
|
|
983
|
+
color: $input-warning-color,
|
|
984
|
+
),
|
|
955
985
|
),
|
|
956
986
|
$input-warning
|
|
957
987
|
);
|
|
@@ -1105,6 +1135,12 @@ $input-success: map-deep-merge(
|
|
|
1105
1135
|
box-shadow: $input-success-focus-box-shadow,
|
|
1106
1136
|
color: $input-success-focus-color,
|
|
1107
1137
|
),
|
|
1138
|
+
focus-within: (
|
|
1139
|
+
background-color: $input-success-bg,
|
|
1140
|
+
border-color: $input-success-border-color,
|
|
1141
|
+
box-shadow: $input-success-box-shadow,
|
|
1142
|
+
color: $input-success-color,
|
|
1143
|
+
),
|
|
1108
1144
|
),
|
|
1109
1145
|
$input-success
|
|
1110
1146
|
);
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
$sidebar-padding-bottom: 1rem !default;
|
|
2
|
-
$sidebar-padding-left:
|
|
3
|
-
$sidebar-padding-right:
|
|
4
|
-
$sidebar-padding-top: 1rem !default;
|
|
1
|
+
$sidebar-padding-bottom: 1rem !default;
|
|
2
|
+
$sidebar-padding-left: 1.5rem !default;
|
|
3
|
+
$sidebar-padding-right: 1.5rem !default;
|
|
4
|
+
$sidebar-padding-top: 1rem !default;
|
|
5
5
|
|
|
6
6
|
// .sidebar-header .component-title
|
|
7
7
|
|
|
@@ -82,17 +82,22 @@ $sidebar: map-deep-merge(
|
|
|
82
82
|
height: 100%,
|
|
83
83
|
overflow: auto,
|
|
84
84
|
-webkit-overflow-scrolling: touch,
|
|
85
|
-
focus: (
|
|
86
|
-
box-shadow: $component-focus-inset-box-shadow,
|
|
87
|
-
outline: 0,
|
|
88
|
-
),
|
|
89
85
|
sidebar-header: (
|
|
90
86
|
padding-bottom: $sidebar-padding-bottom,
|
|
91
87
|
padding-left: $sidebar-padding-left,
|
|
92
|
-
padding-right:
|
|
88
|
+
padding-right: 1rem,
|
|
93
89
|
padding-top: $sidebar-padding-top,
|
|
94
90
|
component-title: $sidebar-header-component-title,
|
|
95
91
|
component-subtitle: $sidebar-header-component-subtitle,
|
|
92
|
+
autofit-row: (
|
|
93
|
+
margin-left: -0.25rem,
|
|
94
|
+
margin-right: -0.25rem,
|
|
95
|
+
width: auto,
|
|
96
|
+
autofit-col: (
|
|
97
|
+
padding-left: 0.25rem,
|
|
98
|
+
padding-right: 0.25rem,
|
|
99
|
+
),
|
|
100
|
+
),
|
|
96
101
|
),
|
|
97
102
|
sidebar-footer: (
|
|
98
103
|
padding-bottom: $sidebar-padding-bottom,
|
|
@@ -220,6 +225,14 @@ $sidebar-light: map-deep-merge(
|
|
|
220
225
|
border-color: $gray-300,
|
|
221
226
|
border-left-width: 1px,
|
|
222
227
|
color: $gray-900,
|
|
228
|
+
sidebar-header: (
|
|
229
|
+
background-color: inherit,
|
|
230
|
+
border: 0px solid $gray-300,
|
|
231
|
+
),
|
|
232
|
+
sidebar-footer: (
|
|
233
|
+
background-color: inherit,
|
|
234
|
+
border: 0px solid $gray-300,
|
|
235
|
+
),
|
|
223
236
|
sidebar-dd: (
|
|
224
237
|
href: (
|
|
225
238
|
color: $gray-900,
|
|
@@ -297,6 +310,10 @@ $sidebar-dark: map-deep-merge(
|
|
|
297
310
|
$sidebar-dark
|
|
298
311
|
);
|
|
299
312
|
|
|
313
|
+
$sidebar-c-slideout-start: () !default;
|
|
314
|
+
|
|
315
|
+
$sidebar-c-slideout-end: () !default;
|
|
316
|
+
|
|
300
317
|
$sidebar-palette: () !default;
|
|
301
318
|
$sidebar-palette: map-deep-merge(
|
|
302
319
|
(
|
|
@@ -44,10 +44,24 @@ $c-slideout-fixed: map-merge(
|
|
|
44
44
|
$c-slideout-fixed
|
|
45
45
|
);
|
|
46
46
|
|
|
47
|
+
$c-slideout-container: () !default;
|
|
48
|
+
$c-slideout-container: map-deep-merge(
|
|
49
|
+
(
|
|
50
|
+
min-height: 480px,
|
|
51
|
+
position: relative,
|
|
52
|
+
),
|
|
53
|
+
$c-slideout-container
|
|
54
|
+
);
|
|
55
|
+
|
|
47
56
|
$c-slideout-push-start: () !default;
|
|
48
57
|
$c-slideout-push-start: map-deep-merge(
|
|
49
58
|
(
|
|
50
59
|
padding-left: $c-slideout-sidebar-width,
|
|
60
|
+
media-breakpoint-down: (
|
|
61
|
+
md: (
|
|
62
|
+
padding-left: 0,
|
|
63
|
+
),
|
|
64
|
+
),
|
|
51
65
|
),
|
|
52
66
|
$c-slideout-push-start
|
|
53
67
|
);
|
|
@@ -56,6 +70,11 @@ $c-slideout-push-end: () !default;
|
|
|
56
70
|
$c-slideout-push-end: map-deep-merge(
|
|
57
71
|
(
|
|
58
72
|
padding-right: $c-slideout-sidebar-width,
|
|
73
|
+
media-breakpoint-down: (
|
|
74
|
+
md: (
|
|
75
|
+
padding-right: 0,
|
|
76
|
+
),
|
|
77
|
+
),
|
|
59
78
|
),
|
|
60
79
|
$c-slideout-push-end
|
|
61
80
|
);
|
|
@@ -74,12 +93,18 @@ $c-slideout: map-deep-merge(
|
|
|
74
93
|
sidebar: (
|
|
75
94
|
display: none,
|
|
76
95
|
flex-shrink: 0,
|
|
77
|
-
overflow: visible,
|
|
78
96
|
position: relative,
|
|
79
97
|
width: $c-slideout-sidebar-width,
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
98
|
+
sidebar-header: (
|
|
99
|
+
border-bottom-width: 1px,
|
|
100
|
+
),
|
|
101
|
+
sidebar-body: (
|
|
102
|
+
flex-grow: 1,
|
|
103
|
+
overflow: visible,
|
|
104
|
+
),
|
|
105
|
+
sidebar-footer: (
|
|
106
|
+
border-top-width: 1px,
|
|
107
|
+
),
|
|
83
108
|
),
|
|
84
109
|
sidebar-c-slideout-show: (
|
|
85
110
|
display: flex,
|
|
@@ -159,6 +159,12 @@ $sticker-xl: map-deep-merge(
|
|
|
159
159
|
$sticker-sizes: () !default;
|
|
160
160
|
$sticker-sizes: map-deep-merge(
|
|
161
161
|
(
|
|
162
|
+
sticker-xs: (
|
|
163
|
+
font-size: 0.5rem,
|
|
164
|
+
height: 1rem,
|
|
165
|
+
line-height: 1rem,
|
|
166
|
+
width: 1rem,
|
|
167
|
+
),
|
|
162
168
|
sticker-sm: $sticker-sm,
|
|
163
169
|
sticker-lg: $sticker-lg,
|
|
164
170
|
sticker-xl: $sticker-xl,
|