@clayui/css 3.138.0 → 3.139.1
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 +5 -5
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +2 -2
- package/lib/css/base.css.map +1 -1
- package/lib/css/cadmin.css +6 -6
- package/lib/css/cadmin.css.map +1 -1
- package/lib/images/icons/icons.svg +1 -1
- package/lib/images/icons/minus-circle.svg +2 -2
- package/lib/images/icons/paste-plaintext.svg +1 -1
- package/lib/images/icons/slash.svg +1 -1
- package/package.json +2 -2
- package/src/images/icons/minus-circle.svg +2 -2
- package/src/images/icons/paste-plaintext.svg +1 -1
- package/src/images/icons/slash.svg +1 -1
- package/src/scss/_license-text.scss +1 -1
- package/src/scss/atlas/variables/_date-picker.scss +1 -0
- package/src/scss/cadmin/variables/_date-picker.scss +1 -1
- package/src/scss/cadmin/variables/_modals.scss +1 -1
- package/src/scss/functions/_lx-icons-generated.scss +2 -2
- package/src/scss/mixins/_stickers.scss +447 -0
- package/src/scss/variables/_modals.scss +1 -1
|
@@ -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);
|