@acorex/styles 7.11.5 → 7.12.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/index.css +156 -933
- package/index.min.css +1 -1
- package/index.scss +0 -1
- package/package.json +2 -2
- package/src/base/index.scss +0 -2
- package/src/mixins/_look.scss +15 -61
- package/src/mixins/_util.scss +0 -15
- package/src/shared/_actionsheet.scss +1 -38
- package/src/shared/_check-box.scss +7 -21
- package/src/shared/_decoration.scss +14 -31
- package/src/shared/_drop-down.scss +10 -37
- package/src/shared/_editor-container.scss +29 -76
- package/src/shared/_general-button.scss +43 -41
- package/src/shared/_inputs.scss +8 -10
- package/src/shared/_list.scss +29 -80
- package/src/shared/_radio.scss +8 -37
- package/src/shared/_table.scss +20 -47
- package/src/shared/_utils.scss +9 -49
- package/src/themes/default.css +1 -1
- package/src/themes/default.scss +107 -86
- package/src/utility/index.scss +0 -36
- package/tailwind-base.js +76 -154
- package/src/animations/index.scss +0 -88
- package/src/base/_normalize.scss +0 -438
- package/src/base/_theme.scss +0 -0
package/index.css
CHANGED
@@ -321,473 +321,6 @@
|
|
321
321
|
content: "\e93c";
|
322
322
|
}
|
323
323
|
|
324
|
-
.ax-animate-fadeIn {
|
325
|
-
animation-name: ax-fadeIn;
|
326
|
-
animation-duration: 1s;
|
327
|
-
animation-duration: 1000ms;
|
328
|
-
}
|
329
|
-
|
330
|
-
.ax-animate-bounceIn {
|
331
|
-
animation: 0.75s cubic-bezier(0.215, 0.61, 0.355, 1) both ax-bounceIn;
|
332
|
-
}
|
333
|
-
|
334
|
-
.ax-animate-faster {
|
335
|
-
animation-duration: 0.5s;
|
336
|
-
animation-duration: 500ms;
|
337
|
-
}
|
338
|
-
|
339
|
-
.ax-animate-zoomIn {
|
340
|
-
animation-name: ax-zoomIn;
|
341
|
-
}
|
342
|
-
|
343
|
-
.ax-animate-slideInUp {
|
344
|
-
animation-name: ax-slideInUp;
|
345
|
-
}
|
346
|
-
|
347
|
-
@keyframes ax-slideInUp {
|
348
|
-
from {
|
349
|
-
transform: translate3d(0, 100%, 0);
|
350
|
-
visibility: visible;
|
351
|
-
}
|
352
|
-
to {
|
353
|
-
transform: translate3d(0, 0, 0);
|
354
|
-
}
|
355
|
-
}
|
356
|
-
@keyframes ax-zoomIn {
|
357
|
-
from {
|
358
|
-
opacity: 0;
|
359
|
-
transform: scale3d(0.3, 0.3, 0.3);
|
360
|
-
}
|
361
|
-
50% {
|
362
|
-
opacity: 1;
|
363
|
-
}
|
364
|
-
}
|
365
|
-
@keyframes ax-fadeIn {
|
366
|
-
from {
|
367
|
-
opacity: 0;
|
368
|
-
}
|
369
|
-
to {
|
370
|
-
opacity: 1;
|
371
|
-
}
|
372
|
-
}
|
373
|
-
@keyframes ax-bounceIn {
|
374
|
-
from, 20%, 40%, 60%, 80%, to {
|
375
|
-
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
|
376
|
-
}
|
377
|
-
0% {
|
378
|
-
opacity: 0;
|
379
|
-
transform: scale3d(0.3, 0.3, 0.3);
|
380
|
-
}
|
381
|
-
20% {
|
382
|
-
transform: scale3d(1.1, 1.1, 1.1);
|
383
|
-
}
|
384
|
-
40% {
|
385
|
-
transform: scale3d(0.9, 0.9, 0.9);
|
386
|
-
}
|
387
|
-
60% {
|
388
|
-
opacity: 1;
|
389
|
-
transform: scale3d(1.03, 1.03, 1.03);
|
390
|
-
}
|
391
|
-
80% {
|
392
|
-
transform: scale3d(0.97, 0.97, 0.97);
|
393
|
-
}
|
394
|
-
to {
|
395
|
-
opacity: 1;
|
396
|
-
transform: scale3d(1, 1, 1);
|
397
|
-
}
|
398
|
-
}
|
399
|
-
/*
|
400
|
-
! tailwindcss v3.2.4 | MIT License | https://tailwindcss.com
|
401
|
-
*/
|
402
|
-
/*
|
403
|
-
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
|
404
|
-
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
|
405
|
-
*/
|
406
|
-
*,
|
407
|
-
::before,
|
408
|
-
::after {
|
409
|
-
box-sizing: border-box;
|
410
|
-
/* 1 */
|
411
|
-
border-width: 0;
|
412
|
-
/* 2 */
|
413
|
-
border-style: solid;
|
414
|
-
/* 2 */
|
415
|
-
border-color: rgba(var(--ax-color-border-default));
|
416
|
-
/* 2 */
|
417
|
-
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
418
|
-
-moz-tap-highlight-color: rgba(0, 0, 0, 0);
|
419
|
-
}
|
420
|
-
|
421
|
-
::before,
|
422
|
-
::after {
|
423
|
-
--tw-content: "";
|
424
|
-
}
|
425
|
-
|
426
|
-
/*
|
427
|
-
1. Use a consistent sensible line-height in all browsers.
|
428
|
-
2. Prevent adjustments of font size after orientation changes in iOS.
|
429
|
-
3. Use a more readable tab size.
|
430
|
-
4. Use the user's configured `sans` font-family by default.
|
431
|
-
5. Use the user's configured `sans` font-feature-settings by default.
|
432
|
-
*/
|
433
|
-
html,
|
434
|
-
:host {
|
435
|
-
line-height: 1.5;
|
436
|
-
/* 1 */
|
437
|
-
-webkit-text-size-adjust: 100%;
|
438
|
-
/* 2 */
|
439
|
-
-moz-tab-size: 4;
|
440
|
-
/* 3 */
|
441
|
-
-o-tab-size: 4;
|
442
|
-
tab-size: 4;
|
443
|
-
/* 3 */
|
444
|
-
font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
445
|
-
/* 4 */
|
446
|
-
font-feature-settings: normal;
|
447
|
-
/* 5 */
|
448
|
-
}
|
449
|
-
|
450
|
-
/*
|
451
|
-
1. Remove the margin in all browsers.
|
452
|
-
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
|
453
|
-
*/
|
454
|
-
body {
|
455
|
-
margin: 0;
|
456
|
-
/* 1 */
|
457
|
-
line-height: inherit;
|
458
|
-
/* 2 */
|
459
|
-
}
|
460
|
-
|
461
|
-
/*
|
462
|
-
1. Add the correct height in Firefox.
|
463
|
-
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
|
464
|
-
3. Ensure horizontal rules are visible by default.
|
465
|
-
*/
|
466
|
-
hr {
|
467
|
-
height: 0;
|
468
|
-
/* 1 */
|
469
|
-
color: inherit;
|
470
|
-
/* 2 */
|
471
|
-
border-top-width: 1px;
|
472
|
-
/* 3 */
|
473
|
-
}
|
474
|
-
|
475
|
-
/*
|
476
|
-
Add the correct text decoration in Chrome, Edge, and Safari.
|
477
|
-
*/
|
478
|
-
abbr:where([title]) {
|
479
|
-
-webkit-text-decoration: underline dotted;
|
480
|
-
text-decoration: underline dotted;
|
481
|
-
}
|
482
|
-
|
483
|
-
/*
|
484
|
-
Remove the default font size and weight for headings.
|
485
|
-
*/
|
486
|
-
h1,
|
487
|
-
h2,
|
488
|
-
h3,
|
489
|
-
h4,
|
490
|
-
h5,
|
491
|
-
h6 {
|
492
|
-
font-size: inherit;
|
493
|
-
font-weight: inherit;
|
494
|
-
}
|
495
|
-
|
496
|
-
/*
|
497
|
-
Reset links to optimize for opt-in styling instead of opt-out.
|
498
|
-
*/
|
499
|
-
a {
|
500
|
-
color: inherit;
|
501
|
-
text-decoration: inherit;
|
502
|
-
}
|
503
|
-
|
504
|
-
/*
|
505
|
-
Add the correct font weight in Edge and Safari.
|
506
|
-
*/
|
507
|
-
b,
|
508
|
-
strong {
|
509
|
-
font-weight: bolder;
|
510
|
-
}
|
511
|
-
|
512
|
-
/*
|
513
|
-
1. Use the user's configured `mono` font family by default.
|
514
|
-
2. Correct the odd `em` font sizing in all browsers.
|
515
|
-
*/
|
516
|
-
code,
|
517
|
-
kbd,
|
518
|
-
samp,
|
519
|
-
pre {
|
520
|
-
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
521
|
-
/* 1 */
|
522
|
-
font-size: 1em;
|
523
|
-
/* 2 */
|
524
|
-
}
|
525
|
-
|
526
|
-
/*
|
527
|
-
Add the correct font size in all browsers.
|
528
|
-
*/
|
529
|
-
small {
|
530
|
-
font-size: 80%;
|
531
|
-
}
|
532
|
-
|
533
|
-
/*
|
534
|
-
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
|
535
|
-
*/
|
536
|
-
sub,
|
537
|
-
sup {
|
538
|
-
font-size: 75%;
|
539
|
-
line-height: 0;
|
540
|
-
position: relative;
|
541
|
-
vertical-align: baseline;
|
542
|
-
}
|
543
|
-
|
544
|
-
sub {
|
545
|
-
bottom: -0.25em;
|
546
|
-
}
|
547
|
-
|
548
|
-
sup {
|
549
|
-
top: -0.5em;
|
550
|
-
}
|
551
|
-
|
552
|
-
/*
|
553
|
-
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
|
554
|
-
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
|
555
|
-
3. Remove gaps between table borders by default.
|
556
|
-
*/
|
557
|
-
table {
|
558
|
-
text-indent: 0;
|
559
|
-
/* 1 */
|
560
|
-
border-color: inherit;
|
561
|
-
/* 2 */
|
562
|
-
border-collapse: collapse;
|
563
|
-
/* 3 */
|
564
|
-
}
|
565
|
-
|
566
|
-
/*
|
567
|
-
1. Change the font styles in all browsers.
|
568
|
-
2. Remove the margin in Firefox and Safari.
|
569
|
-
3. Remove default padding in all browsers.
|
570
|
-
*/
|
571
|
-
button,
|
572
|
-
input,
|
573
|
-
optgroup,
|
574
|
-
select,
|
575
|
-
textarea {
|
576
|
-
font-family: inherit; /* 1 */
|
577
|
-
font-feature-settings: inherit; /* 1 */
|
578
|
-
font-variation-settings: inherit; /* 1 */
|
579
|
-
font-size: 100%; /* 1 */
|
580
|
-
font-weight: inherit; /* 1 */
|
581
|
-
line-height: inherit; /* 1 */
|
582
|
-
color: inherit; /* 1 */
|
583
|
-
margin: 0; /* 2 */
|
584
|
-
padding: 0; /* 3 */
|
585
|
-
}
|
586
|
-
|
587
|
-
/*
|
588
|
-
Remove the inheritance of text transform in Edge and Firefox.
|
589
|
-
*/
|
590
|
-
button,
|
591
|
-
select {
|
592
|
-
text-transform: none;
|
593
|
-
}
|
594
|
-
|
595
|
-
/*
|
596
|
-
1. Correct the inability to style clickable types in iOS and Safari.
|
597
|
-
2. Remove default button styles.
|
598
|
-
*/
|
599
|
-
button,
|
600
|
-
[type=button],
|
601
|
-
[type=reset],
|
602
|
-
[type=submit] {
|
603
|
-
-webkit-appearance: button;
|
604
|
-
/* 1 */
|
605
|
-
background-color: transparent;
|
606
|
-
/* 2 */
|
607
|
-
background-image: none;
|
608
|
-
/* 2 */
|
609
|
-
}
|
610
|
-
|
611
|
-
/*
|
612
|
-
Use the modern Firefox focus style for all focusable elements.
|
613
|
-
*/
|
614
|
-
:-moz-focusring {
|
615
|
-
outline: auto;
|
616
|
-
}
|
617
|
-
|
618
|
-
/*
|
619
|
-
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
|
620
|
-
*/
|
621
|
-
:-moz-ui-invalid {
|
622
|
-
box-shadow: none;
|
623
|
-
}
|
624
|
-
|
625
|
-
/*
|
626
|
-
Add the correct vertical alignment in Chrome and Firefox.
|
627
|
-
*/
|
628
|
-
progress {
|
629
|
-
vertical-align: baseline;
|
630
|
-
}
|
631
|
-
|
632
|
-
/*
|
633
|
-
Correct the cursor style of increment and decrement buttons in Safari.
|
634
|
-
*/
|
635
|
-
::-webkit-inner-spin-button,
|
636
|
-
::-webkit-outer-spin-button {
|
637
|
-
height: auto;
|
638
|
-
}
|
639
|
-
|
640
|
-
/*
|
641
|
-
1. Correct the odd appearance in Chrome and Safari.
|
642
|
-
2. Correct the outline style in Safari.
|
643
|
-
*/
|
644
|
-
[type=search] {
|
645
|
-
-webkit-appearance: textfield;
|
646
|
-
/* 1 */
|
647
|
-
outline-offset: -2px;
|
648
|
-
/* 2 */
|
649
|
-
}
|
650
|
-
|
651
|
-
/*
|
652
|
-
Remove the inner padding in Chrome and Safari on macOS.
|
653
|
-
*/
|
654
|
-
::-webkit-search-decoration {
|
655
|
-
-webkit-appearance: none;
|
656
|
-
}
|
657
|
-
|
658
|
-
/*
|
659
|
-
1. Correct the inability to style clickable types in iOS and Safari.
|
660
|
-
2. Change font properties to `inherit` in Safari.
|
661
|
-
*/
|
662
|
-
::-webkit-file-upload-button {
|
663
|
-
-webkit-appearance: button;
|
664
|
-
/* 1 */
|
665
|
-
font: inherit;
|
666
|
-
/* 2 */
|
667
|
-
}
|
668
|
-
|
669
|
-
/*
|
670
|
-
Add the correct display in Chrome and Safari.
|
671
|
-
*/
|
672
|
-
summary {
|
673
|
-
display: list-item;
|
674
|
-
}
|
675
|
-
|
676
|
-
/*
|
677
|
-
Removes the default spacing and border for appropriate elements.
|
678
|
-
*/
|
679
|
-
blockquote,
|
680
|
-
dl,
|
681
|
-
dd,
|
682
|
-
h1,
|
683
|
-
h2,
|
684
|
-
h3,
|
685
|
-
h4,
|
686
|
-
h5,
|
687
|
-
h6,
|
688
|
-
hr,
|
689
|
-
figure,
|
690
|
-
p,
|
691
|
-
pre {
|
692
|
-
margin: 0;
|
693
|
-
}
|
694
|
-
|
695
|
-
fieldset {
|
696
|
-
margin: 0;
|
697
|
-
padding: 0;
|
698
|
-
}
|
699
|
-
|
700
|
-
legend {
|
701
|
-
padding: 0;
|
702
|
-
}
|
703
|
-
|
704
|
-
ol,
|
705
|
-
ul,
|
706
|
-
menu {
|
707
|
-
list-style: none;
|
708
|
-
margin: 0;
|
709
|
-
padding: 0;
|
710
|
-
}
|
711
|
-
|
712
|
-
dialog {
|
713
|
-
padding: 0;
|
714
|
-
}
|
715
|
-
|
716
|
-
/*
|
717
|
-
Prevent resizing textareas horizontally by default.
|
718
|
-
*/
|
719
|
-
textarea {
|
720
|
-
resize: vertical;
|
721
|
-
}
|
722
|
-
|
723
|
-
/*
|
724
|
-
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
|
725
|
-
2. Set the default placeholder color to the user's configured gray 400 color.
|
726
|
-
*/
|
727
|
-
input::-moz-placeholder,
|
728
|
-
textarea::-moz-placeholder {
|
729
|
-
opacity: 1;
|
730
|
-
/* 1 */
|
731
|
-
color: rgba(var(--ax-color-text-default), 0.5);
|
732
|
-
/* 2 */
|
733
|
-
}
|
734
|
-
|
735
|
-
input::placeholder,
|
736
|
-
textarea::placeholder {
|
737
|
-
opacity: 1;
|
738
|
-
/* 1 */
|
739
|
-
color: rgba(var(--ax-color-text-default), 0.5);
|
740
|
-
/* 2 */
|
741
|
-
}
|
742
|
-
|
743
|
-
/*
|
744
|
-
Set the default cursor for buttons.
|
745
|
-
*/
|
746
|
-
button,
|
747
|
-
[role=button] {
|
748
|
-
cursor: pointer;
|
749
|
-
}
|
750
|
-
|
751
|
-
/*
|
752
|
-
Make sure disabled buttons don't get the pointer cursor.
|
753
|
-
*/
|
754
|
-
:disabled {
|
755
|
-
cursor: default;
|
756
|
-
}
|
757
|
-
|
758
|
-
/*
|
759
|
-
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
|
760
|
-
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
|
761
|
-
This can trigger a poorly considered lint error in some tools but is included by design.
|
762
|
-
*/
|
763
|
-
img,
|
764
|
-
svg,
|
765
|
-
video,
|
766
|
-
canvas,
|
767
|
-
audio,
|
768
|
-
iframe,
|
769
|
-
embed,
|
770
|
-
object {
|
771
|
-
display: block;
|
772
|
-
/* 1 */
|
773
|
-
vertical-align: middle;
|
774
|
-
/* 2 */
|
775
|
-
}
|
776
|
-
|
777
|
-
/*
|
778
|
-
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
|
779
|
-
*/
|
780
|
-
img,
|
781
|
-
video {
|
782
|
-
max-width: 100%;
|
783
|
-
height: auto;
|
784
|
-
}
|
785
|
-
|
786
|
-
/* Make elements with the HTML hidden attribute stay hidden by default */
|
787
|
-
[hidden] {
|
788
|
-
display: none;
|
789
|
-
}
|
790
|
-
|
791
324
|
:root {
|
792
325
|
--ax-overlay-full-width: 93;
|
793
326
|
--ax-color-white: 255, 255, 255;
|
@@ -801,59 +334,15 @@ body {
|
|
801
334
|
}
|
802
335
|
|
803
336
|
.ax-actionsheet-panel {
|
804
|
-
|
805
|
-
-webkit-animation-duration: 100ms;
|
806
|
-
animation-fill-mode: both;
|
807
|
-
-webkit-animation-fill-mode: both;
|
808
|
-
opacity: 0;
|
809
|
-
animation-name: fadeInUp;
|
810
|
-
-webkit-animation-name: fadeInUp;
|
811
|
-
background-color: rgba(var(--ax-color-surface));
|
812
|
-
-webkit-border-top-left-radius: var(--ax-rounded-border-default);
|
813
|
-
-webkit-border-top-right-radius: var(--ax-rounded-border-default);
|
814
|
-
-moz-border-radius-topleft: var(--ax-rounded-border-default);
|
815
|
-
-moz-border-radius-topright: var(--ax-rounded-border-default);
|
816
|
-
border-top-left-radius: var(--ax-rounded-border-default);
|
817
|
-
border-top-right-radius: var(--ax-rounded-border-default);
|
818
|
-
box-shadow: 0 8px 10px -5px rgba(0, 0, 0, 0.2), 0 16px 24px 2px rgba(0, 0, 0, 0.141), 0 6px 30px 5px rgba(0, 0, 0, 0.122);
|
819
|
-
overflow: hidden;
|
820
|
-
}
|
821
|
-
@keyframes fadeInUp {
|
822
|
-
from {
|
823
|
-
transform: translate3d(0, 40px, 0);
|
824
|
-
}
|
825
|
-
to {
|
826
|
-
transform: translate3d(0, 0, 0);
|
827
|
-
opacity: 1;
|
828
|
-
}
|
829
|
-
}
|
830
|
-
@-webkit-keyframes fadeInUp {
|
831
|
-
from {
|
832
|
-
transform: translate3d(0, 40px, 0);
|
833
|
-
}
|
834
|
-
to {
|
835
|
-
transform: translate3d(0, 0, 0);
|
836
|
-
opacity: 1;
|
837
|
-
}
|
337
|
+
@apply ax-animate-2xfaster ax-animate-fadeInUp ax-overflow-hidden ax-rounded-t-default ax-bg-surface ax-shadow-lg;
|
838
338
|
}
|
839
339
|
|
840
340
|
.ax-checkbox {
|
841
|
-
|
842
|
-
height: 1.125rem;
|
843
|
-
border: 1px solid;
|
844
|
-
border-color: rgba(var(--ax-color-border-default));
|
845
|
-
background-color: rgba(var(--ax-color-input-surface));
|
846
|
-
border-radius: 0.2rem;
|
847
|
-
margin: 0;
|
848
|
-
outline: none;
|
849
|
-
vertical-align: middle;
|
850
|
-
appearance: none;
|
341
|
+
@apply ax-m-0 ax-h-4 ax-w-4 ax-cursor-pointer ax-appearance-none ax-rounded ax-border ax-border-default ax-bg-input-surface ax-align-middle ax-outline-none;
|
851
342
|
}
|
852
343
|
.ax-checkbox:checked, .ax-checkbox:indeterminate {
|
853
|
-
border-
|
854
|
-
|
855
|
-
background-repeat: no-repeat;
|
856
|
-
background-size: contain;
|
344
|
+
@apply ax-border-primary-500 ax-bg-primary-500 !important;
|
345
|
+
@apply ax-bg-contain ax-bg-no-repeat;
|
857
346
|
}
|
858
347
|
.ax-checkbox:checked {
|
859
348
|
background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
|
@@ -861,67 +350,50 @@ body {
|
|
861
350
|
.ax-checkbox:indeterminate {
|
862
351
|
background-image: url("data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDE2IDE2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6I2ZmZjt9PC9zdHlsZT48L2RlZnM+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIzIiB5PSI3IiB3aWR0aD0iMTAiIGhlaWdodD0iMiIvPjwvc3ZnPg==");
|
863
352
|
}
|
864
|
-
.ax-checkbox:focus-visible {
|
865
|
-
|
866
|
-
outline-width: 2px;
|
867
|
-
outline-style: solid;
|
868
|
-
outline-color: rgba(var(--ax-color-primary-500));
|
353
|
+
.ax-checkbox:focus-visible, .ax-checkbox:focus {
|
354
|
+
@apply ax-ring-2 ax-ring-primary-500 ax-ring-offset-2;
|
869
355
|
}
|
870
356
|
.ax-checkbox:disabled {
|
871
|
-
cursor
|
872
|
-
opacity: 0.5;
|
357
|
+
@apply ax-cursor-not-allowed ax-opacity-50;
|
873
358
|
}
|
874
359
|
|
875
360
|
.ax-decoration-container,
|
876
361
|
ax-header,
|
877
362
|
ax-footer {
|
878
|
-
|
879
|
-
justify-content: space-between;
|
880
|
-
gap: 0.5rem;
|
363
|
+
@apply ax-flex ax-justify-between ax-gap-2;
|
881
364
|
}
|
882
365
|
.ax-decoration-container > ax-prefix, .ax-decoration-container > ax-suffix,
|
883
366
|
ax-header > ax-prefix,
|
884
367
|
ax-header > ax-suffix,
|
885
368
|
ax-footer > ax-prefix,
|
886
369
|
ax-footer > ax-suffix {
|
887
|
-
|
888
|
-
flex: 1 1 auto;
|
889
|
-
flex-direction: row;
|
890
|
-
gap: 0.5rem;
|
891
|
-
align-items: center;
|
370
|
+
@apply ax-flex ax-flex-1 ax-items-center ax-gap-2;
|
892
371
|
}
|
893
372
|
.ax-decoration-container > ax-prefix,
|
894
373
|
ax-header > ax-prefix,
|
895
374
|
ax-footer > ax-prefix {
|
896
|
-
order
|
897
|
-
justify-content: flex-start;
|
898
|
-
align-items: center;
|
375
|
+
@apply -ax-order-last ax-items-center ax-justify-start;
|
899
376
|
}
|
900
377
|
.ax-decoration-container > ax-suffix,
|
901
378
|
ax-header > ax-suffix,
|
902
379
|
ax-footer > ax-suffix {
|
903
|
-
order
|
904
|
-
justify-content: flex-end;
|
905
|
-
align-items: center;
|
380
|
+
@apply ax-order-last ax-items-center ax-justify-end;
|
906
381
|
}
|
907
382
|
|
908
383
|
ax-close-button button {
|
909
|
-
cursor
|
910
|
-
background-color: transparent;
|
911
|
-
display: flex;
|
384
|
+
@apply ax-flex ax-cursor-pointer ax-bg-transparent;
|
912
385
|
}
|
913
386
|
ax-close-button button i {
|
914
|
-
|
915
|
-
}
|
916
|
-
ax-close-button button:focus {
|
917
|
-
outline: none;
|
918
|
-
opacity: 0.85;
|
387
|
+
@apply ax-text-2xl;
|
919
388
|
}
|
920
389
|
ax-close-button button:hover {
|
921
|
-
opacity
|
390
|
+
@apply ax-opacity-70;
|
391
|
+
}
|
392
|
+
ax-close-button button:focus {
|
393
|
+
@apply ax-opacity-80 ax-outline-none;
|
922
394
|
}
|
923
395
|
ax-close-button button:active {
|
924
|
-
opacity
|
396
|
+
@apply ax-opacity-100;
|
925
397
|
}
|
926
398
|
|
927
399
|
ax-icon {
|
@@ -929,271 +401,188 @@ ax-icon {
|
|
929
401
|
}
|
930
402
|
|
931
403
|
ax-sub-title {
|
932
|
-
font-
|
933
|
-
font-size: 0.875rem;
|
934
|
-
opacity: 0.75;
|
404
|
+
@apply ax-text-sm ax-font-normal ax-opacity-75;
|
935
405
|
}
|
936
406
|
|
937
407
|
ax-form-hint {
|
938
|
-
|
939
|
-
color: rgba(var(--ax-color-text-default), 0.75);
|
940
|
-
margin-top: 0.5rem;
|
941
|
-
display: block;
|
408
|
+
@apply ax-mt-2 ax-block ax-text-sm ax-text-default/75;
|
942
409
|
}
|
943
410
|
|
944
411
|
.ax-drop-down {
|
945
|
-
|
412
|
+
@apply ax-contents;
|
946
413
|
}
|
947
414
|
.ax-drop-down .ax-dropdown-content {
|
948
|
-
|
949
|
-
align-items: center;
|
950
|
-
flex: 1 1 auto;
|
951
|
-
font-size: 0.875rem;
|
952
|
-
overflow-y: hidden;
|
953
|
-
overflow-x: auto;
|
954
|
-
text-transform: capitalize;
|
415
|
+
@apply ax-flex ax-flex-1 ax-items-center ax-overflow-x-auto ax-overflow-y-hidden ax-text-sm ax-capitalize;
|
955
416
|
}
|
956
417
|
.ax-drop-down .ax-dropdown-content.ax-state-disabled {
|
957
|
-
opacity
|
958
|
-
cursor: not-allowed;
|
418
|
+
@apply ax-cursor-not-allowed ax-opacity-50;
|
959
419
|
}
|
960
420
|
|
961
421
|
.ax-overlay-pane {
|
962
|
-
|
963
|
-
background-color: rgba(var(--ax-color-surface));
|
964
|
-
border: 1px solid;
|
965
|
-
border-color: rgba(var(--ax-color-border-default));
|
966
|
-
border-radius: var(--ax-rounded-border-default);
|
967
|
-
box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -2px rgba(0, 0, 0, 0.05);
|
968
|
-
overflow: hidden;
|
969
|
-
margin-top: 0.25rem;
|
422
|
+
@apply ax-mt-1 ax-h-fit ax-overflow-hidden ax-rounded-none ax-border ax-border-default ax-bg-surface ax-shadow-md md:ax-rounded-default;
|
970
423
|
}
|
971
424
|
.ax-overlay-pane ax-header,
|
972
425
|
.ax-overlay-pane ax-footer {
|
973
|
-
|
974
|
-
padding: 0.75rem;
|
975
|
-
}
|
976
|
-
@media (max-width: 599px) {
|
977
|
-
.ax-overlay-pane {
|
978
|
-
border-bottom-right-radius: 0px;
|
979
|
-
border-bottom-left-radius: 0px;
|
980
|
-
}
|
426
|
+
@apply ax-bg-surface ax-p-3;
|
981
427
|
}
|
982
428
|
.ax-overlay-pane.ax-overlay-center {
|
983
|
-
|
984
|
-
max-height: 90vh;
|
985
|
-
width: 80vw;
|
429
|
+
@apply ax-h-fit ax-w-[80vw] ax-max-w-[90vh];
|
986
430
|
}
|
987
431
|
.ax-overlay-pane.ax-overlay-actionsheet {
|
988
|
-
|
989
|
-
width: 100%;
|
990
|
-
height: auto;
|
991
|
-
max-height: 85vh;
|
432
|
+
@apply ax-h-auto ax-max-h-[85vh] ax-w-full ax-bg-surface;
|
992
433
|
}
|
993
434
|
.ax-overlay-pane.ax-overlay-actionsheet.ax-full {
|
994
|
-
max-
|
995
|
-
height: 95vh;
|
435
|
+
@apply ax-h-[95vh] ax-max-h-[95vh];
|
996
436
|
}
|
997
437
|
.ax-overlay-pane.ax-overlay-full {
|
998
438
|
width: 100vw;
|
999
439
|
height: 100vh;
|
440
|
+
@apply ax-h-screen ax-w-screen;
|
1000
441
|
}
|
1001
442
|
|
1002
443
|
.ax-dark .ax-editor-container.ax-look-fill.ax-state-error {
|
1003
|
-
|
444
|
+
@apply ax-bg-danger-500/25;
|
1004
445
|
}
|
1005
446
|
|
1006
447
|
.ax-editor-container {
|
1007
|
-
|
1008
|
-
height: var(--ax-size-default);
|
1009
|
-
display: flex;
|
1010
|
-
align-items: center;
|
1011
|
-
color: rgba(var(--ax-color-input-surface-fore));
|
1012
|
-
font-size: 0.875rem;
|
1013
|
-
overflow: hidden;
|
1014
|
-
line-height: 1;
|
448
|
+
@apply ax-flex ax-h-default ax-w-full ax-items-center ax-overflow-hidden ax-text-sm ax-leading-none ax-text-input-surface-fore;
|
1015
449
|
}
|
1016
450
|
.ax-editor-container.ax-look-solid, .ax-editor-container.ax-look-outline {
|
1017
|
-
|
1018
|
-
border: 1px solid;
|
1019
|
-
border-color: rgba(var(--ax-color-border-default));
|
1020
|
-
border-radius: var(--ax-rounded-border-default);
|
451
|
+
@apply ax-rounded-default ax-border ax-border-default ax-bg-input-surface;
|
1021
452
|
}
|
1022
453
|
.ax-editor-container.ax-look-solid:focus-within, .ax-editor-container.ax-look-outline:focus-within {
|
1023
|
-
border-
|
1024
|
-
box-shadow: 0 0 0 1px rgba(var(--ax-color-primary-500));
|
454
|
+
@apply ax-border-primary ax-ring-1 ax-ring-primary-500;
|
1025
455
|
}
|
1026
456
|
.ax-editor-container.ax-look-solid.ax-state-error, .ax-editor-container.ax-look-outline.ax-state-error {
|
1027
|
-
|
457
|
+
@apply ax-border-danger-500;
|
1028
458
|
}
|
1029
459
|
.ax-editor-container.ax-look-solid.ax-state-error:focus-within, .ax-editor-container.ax-look-outline.ax-state-error:focus-within {
|
1030
|
-
|
460
|
+
@apply ax-ring-1 ax-ring-danger-500;
|
1031
461
|
}
|
1032
462
|
.ax-editor-container.ax-look-solid.ax-state-error .ax-input::placeholder, .ax-editor-container.ax-look-outline.ax-state-error .ax-input::placeholder {
|
1033
|
-
|
463
|
+
@apply ax-text-danger;
|
1034
464
|
}
|
1035
465
|
.ax-editor-container.ax-look-flat {
|
1036
|
-
border-
|
1037
|
-
border-color: rgba(var(--ax-color-border-default));
|
1038
|
-
border-radius: 0;
|
466
|
+
@apply ax-rounded-none ax-border-b ax-border-default;
|
1039
467
|
}
|
1040
468
|
.ax-editor-container.ax-look-flat:focus-within {
|
1041
|
-
|
469
|
+
@apply ax-border-primary-500;
|
1042
470
|
}
|
1043
471
|
.ax-editor-container.ax-look-flat.ax-state-error {
|
1044
|
-
|
472
|
+
@apply ax-border-danger-500;
|
1045
473
|
}
|
1046
474
|
.ax-editor-container.ax-look-flat.ax-state-error .ax-input::placeholder {
|
1047
|
-
|
475
|
+
@apply ax-text-danger-500;
|
1048
476
|
}
|
1049
477
|
.ax-editor-container.ax-look-outline {
|
1050
|
-
|
478
|
+
@apply ax-bg-transparent !important;
|
1051
479
|
}
|
1052
480
|
.ax-editor-container.ax-look-fill {
|
1053
|
-
|
1054
|
-
border-radius: var(--ax-rounded-border-default);
|
481
|
+
@apply ax-rounded-default ax-bg-on-surface;
|
1055
482
|
}
|
1056
483
|
.ax-editor-container.ax-look-fill:focus-within {
|
1057
|
-
|
484
|
+
@apply ax-ring-2 ax-ring-primary-500;
|
1058
485
|
}
|
1059
486
|
.ax-editor-container.ax-look-fill.ax-state-error {
|
1060
|
-
|
487
|
+
@apply ax-bg-danger-200 ax-text-danger-fore-tint;
|
1061
488
|
}
|
1062
489
|
.ax-editor-container.ax-look-fill.ax-state-error:focus-within {
|
1063
|
-
|
490
|
+
@apply ax-ring-2 ax-ring-primary-500;
|
1064
491
|
}
|
1065
492
|
.ax-editor-container.ax-look-fill.ax-state-error .ax-input::placeholder {
|
1066
|
-
|
493
|
+
@apply ax-text-danger-500;
|
1067
494
|
}
|
1068
495
|
.ax-editor-container .ax-editor-input {
|
1069
|
-
|
1070
|
-
flex: 1;
|
496
|
+
@apply ax-h-full ax-flex-1;
|
1071
497
|
}
|
1072
498
|
.ax-editor-container .ax-editor-input .ax-input {
|
1073
|
-
|
499
|
+
@apply ax-h-full;
|
1074
500
|
}
|
1075
501
|
.ax-editor-container .ax-input {
|
1076
|
-
|
502
|
+
@apply ax-px-3;
|
1077
503
|
}
|
1078
504
|
.ax-editor-container .ax-input::placeholder {
|
1079
|
-
color: rgba(var(--ax-color-text-default), 0.5);
|
1080
|
-
font-weight: 500;
|
1081
505
|
font-size: inherit;
|
506
|
+
@apply ax-font-medium ax-text-default/50;
|
1082
507
|
}
|
1083
508
|
.ax-editor-container.ax-xs .ax-input {
|
1084
|
-
|
1085
|
-
line-height: calc(var(--ax-size-base) - 0.75rem);
|
1086
|
-
padding: 0.5rem;
|
509
|
+
@apply ax-p-2 ax-text-xs;
|
1087
510
|
}
|
1088
511
|
.ax-editor-container.ax-sm .ax-input {
|
1089
|
-
|
1090
|
-
line-height: calc(var(--ax-size-base) - 0.5rem);
|
1091
|
-
padding: 0.5rem;
|
512
|
+
@apply ax-p-2 ax-text-sm;
|
1092
513
|
}
|
1093
514
|
.ax-editor-container.ax-md .ax-input {
|
1094
|
-
|
1095
|
-
line-height: var(--ax-size-base);
|
515
|
+
@apply ax-text-sm;
|
1096
516
|
}
|
1097
517
|
.ax-editor-container.ax-lg .ax-input {
|
1098
|
-
|
1099
|
-
line-height: calc(var(--ax-size-base) + 0.5rem);
|
518
|
+
@apply ax-text-lg;
|
1100
519
|
}
|
1101
520
|
.ax-editor-container.ax-xl .ax-input {
|
1102
|
-
|
1103
|
-
line-height: calc(var(--ax-size-base) + 1rem);
|
521
|
+
@apply ax-text-lg;
|
1104
522
|
}
|
1105
523
|
.ax-editor-container .ax-editor-control {
|
1106
|
-
|
1107
|
-
align-items: center;
|
1108
|
-
justify-content: center;
|
1109
|
-
padding-inline-start: 0.5rem;
|
1110
|
-
height: 100%;
|
1111
|
-
font-size: 1.25rem;
|
1112
|
-
line-height: 1.25rem;
|
1113
|
-
color: rgba(var(--ax-color-text-default));
|
524
|
+
@apply ax-flex ax-h-full ax-items-center ax-justify-center ax-ps-2 ax-text-lg ax-text-input-surface-fore;
|
1114
525
|
}
|
1115
526
|
.ax-editor-container.ax-button-icon {
|
1116
|
-
|
1117
|
-
padding-right: 0.5rem;
|
527
|
+
@apply ax-px-2;
|
1118
528
|
}
|
1119
529
|
.ax-editor-container .ax-input,
|
1120
530
|
.ax-editor-container .ax-text-area {
|
1121
|
-
width: 100%;
|
1122
|
-
height: 100%;
|
1123
|
-
background-color: transparent;
|
1124
|
-
flex: 1 1 0%;
|
1125
|
-
border: none;
|
1126
531
|
text-align: inherit;
|
1127
532
|
font-family: inherit;
|
1128
533
|
font-size: inherit;
|
1129
534
|
line-height: inherit;
|
1130
|
-
font-
|
535
|
+
@apply ax-w-full ax-flex-1 ax-bg-transparent ax-font-medium;
|
1131
536
|
}
|
1132
537
|
.ax-editor-container .ax-input:focus,
|
1133
538
|
.ax-editor-container .ax-text-area:focus {
|
1134
|
-
|
539
|
+
@apply ax-shadow-none;
|
1135
540
|
}
|
1136
541
|
.ax-editor-container .ax-text-area {
|
1137
|
-
|
542
|
+
@apply ax-p-2.5;
|
1138
543
|
}
|
1139
544
|
.ax-editor-container > ax-prefix *,
|
1140
545
|
.ax-editor-container > ax-prefix .ax-button,
|
1141
546
|
.ax-editor-container > ax-prefix ax-title {
|
1142
|
-
|
1143
|
-
border-end-start-radius: 0.25rem;
|
547
|
+
@apply ax-rounded-es ax-rounded-ss;
|
1144
548
|
}
|
1145
549
|
.ax-editor-container > ax-prefix ax-icon {
|
1146
|
-
|
550
|
+
@apply ax-ps-3;
|
1147
551
|
}
|
1148
552
|
.ax-editor-container > ax-suffix *,
|
1149
553
|
.ax-editor-container > ax-suffix .ax-button,
|
1150
554
|
.ax-editor-container > ax-suffix ax-title {
|
1151
|
-
|
1152
|
-
border-end-end-radius: 0.25rem;
|
555
|
+
@apply ax-rounded-ee ax-rounded-se;
|
1153
556
|
}
|
1154
557
|
.ax-editor-container > ax-suffix ax-icon {
|
1155
|
-
|
558
|
+
@apply ax-pe-3;
|
1156
559
|
}
|
1157
560
|
.ax-editor-container > ax-prefix, .ax-editor-container > ax-suffix {
|
1158
|
-
|
561
|
+
@apply ax-h-full;
|
1159
562
|
}
|
1160
563
|
.ax-editor-container > ax-prefix *, .ax-editor-container > ax-suffix * {
|
1161
|
-
|
1162
|
-
display: flex;
|
1163
|
-
justify-content: center;
|
1164
|
-
align-items: center;
|
1165
|
-
border-radius: 0;
|
564
|
+
@apply ax-flex ax-h-full ax-items-center ax-justify-center ax-rounded-none;
|
1166
565
|
}
|
1167
566
|
.ax-editor-container > ax-prefix ax-title, .ax-editor-container > ax-suffix ax-title {
|
1168
|
-
|
1169
|
-
padding-right: 1rem;
|
567
|
+
@apply ax-px-4;
|
1170
568
|
}
|
1171
569
|
.ax-editor-container > ax-prefix > ax-text, .ax-editor-container > ax-suffix > ax-text {
|
1172
|
-
|
1173
|
-
background-color: transparent;
|
1174
|
-
display: flex;
|
1175
|
-
align-items: center;
|
1176
|
-
justify-content: center;
|
1177
|
-
padding: 0 0.5rem;
|
1178
|
-
line-height: 1;
|
570
|
+
@apply ax-flex ax-items-center ax-justify-center ax-bg-transparent ax-px-2 ax-text-sm;
|
1179
571
|
}
|
1180
572
|
.ax-editor-container .ax-button {
|
1181
|
-
|
1182
|
-
border-radius: 0;
|
573
|
+
@apply ax-h-full ax-rounded-none !important;
|
1183
574
|
}
|
1184
575
|
.ax-editor-container .ax-button.ax-button-icon {
|
1185
|
-
|
1186
|
-
height: 100%;
|
576
|
+
@apply ax-h-full ax-w-default;
|
1187
577
|
}
|
1188
578
|
.ax-editor-container.ax-state-disabled {
|
1189
|
-
opacity
|
579
|
+
@apply ax-cursor-not-allowed ax-opacity-50;
|
1190
580
|
}
|
1191
581
|
|
1192
582
|
.ax-ripple {
|
1193
|
-
position: absolute;
|
1194
|
-
border-radius: 50%;
|
1195
583
|
transform: scale(0);
|
1196
584
|
animation: ripple 500ms linear;
|
585
|
+
@apply ax-absolute ax-rounded-full;
|
1197
586
|
}
|
1198
587
|
@keyframes ripple {
|
1199
588
|
to {
|
@@ -1203,343 +592,224 @@ ax-form-hint {
|
|
1203
592
|
}
|
1204
593
|
|
1205
594
|
.ax-general-button {
|
1206
|
-
|
1207
|
-
|
1208
|
-
|
1209
|
-
|
1210
|
-
|
1211
|
-
|
1212
|
-
|
1213
|
-
|
1214
|
-
|
1215
|
-
|
1216
|
-
}
|
1217
|
-
.ax-general-button:is(.ax-general-button:hover):not(.ax-general-button:disabled, .ax-state-disabled) {
|
1218
|
-
color: rgba(var(--ax-color-primary-500));
|
1219
|
-
}
|
1220
|
-
.ax-general-button:is(.ax-general-button:focus, .ax-general-button:focus-visible):not(.ax-general-button:disabled, .ax-state-disabled) {
|
1221
|
-
color: rgba(var(--ax-color-primary-700));
|
1222
|
-
}
|
1223
|
-
.ax-general-button:is(.ax-general-button:active):not(.ax-general-button:disabled, .ax-state-disabled) {
|
1224
|
-
background-color: transparent;
|
595
|
+
@apply ax-inline-flex ax-h-default ax-cursor-pointer ax-items-center ax-justify-center ax-rounded-default ax-px-4 ax-text-sm ax-text-default;
|
596
|
+
}
|
597
|
+
.ax-general-button:hover:not(.ax-general-button:hover:disabled, .ax-state-disabled) {
|
598
|
+
@apply ax-text-primary-500;
|
599
|
+
}
|
600
|
+
.ax-general-button:focus:not(.ax-general-button:focus:disabled, .ax-state-disabled, .ax-general-button:focus-visible:disabled), .ax-general-button:focus-visible:not(.ax-general-button:focus:disabled, .ax-state-disabled, .ax-general-button:focus-visible:disabled) {
|
601
|
+
@apply ax-text-primary-700;
|
602
|
+
}
|
603
|
+
.ax-general-button:active:not(.ax-general-button:active:disabled, .ax-state-disabled) {
|
604
|
+
@apply ax-text-primary-300;
|
1225
605
|
}
|
1226
606
|
.ax-general-button.ax-button-icon {
|
1227
|
-
|
1228
|
-
font-size: 1.25rem;
|
607
|
+
@apply ax-px-2 ax-text-lg;
|
1229
608
|
}
|
1230
609
|
.ax-general-button.ax-button-icon > button {
|
1231
|
-
|
610
|
+
@apply ax-flex;
|
1232
611
|
}
|
1233
612
|
.ax-general-button.ax-button-icon ax-icon {
|
1234
|
-
|
613
|
+
@apply ax-text-lg;
|
1235
614
|
}
|
1236
615
|
.ax-general-button.ax-button-rounded {
|
1237
|
-
|
616
|
+
@apply ax-rounded-default;
|
1238
617
|
}
|
1239
618
|
.ax-general-button:disabled, .ax-general-button.ax-state-disabled {
|
1240
|
-
opacity
|
1241
|
-
cursor: not-allowed;
|
619
|
+
@apply ax-cursor-not-allowed ax-opacity-50;
|
1242
620
|
}
|
1243
621
|
|
1244
622
|
.ax-clear-button {
|
1245
|
-
|
1246
|
-
line-height: 1;
|
1247
|
-
color: rgba(var(--ax-color-text-default), 0.6);
|
1248
|
-
height: var(--ax-size-default);
|
1249
|
-
display: inline-flex;
|
1250
|
-
align-items: center;
|
1251
|
-
justify-content: center;
|
1252
|
-
padding: 0 0.5rem;
|
623
|
+
@apply ax-inline-flex ax-h-default ax-items-center ax-justify-center ax-px-2 ax-text-base ax-leading-none ax-text-default;
|
1253
624
|
}
|
1254
625
|
.ax-clear-button > button {
|
1255
|
-
|
626
|
+
@apply ax-flex;
|
1256
627
|
}
|
1257
|
-
.ax-clear-button:
|
1258
|
-
|
628
|
+
.ax-clear-button:hover:not(.ax-clear-button:hover:disabled, .ax-state-disabled) {
|
629
|
+
@apply ax-text-default/75;
|
1259
630
|
}
|
1260
|
-
.ax-clear-button:
|
1261
|
-
|
631
|
+
.ax-clear-button:focus:not(.ax-clear-button:focus:disabled, .ax-state-disabled, .ax-clear-button:focus-visible:disabled), .ax-clear-button:focus-visible:not(.ax-clear-button:focus:disabled, .ax-state-disabled, .ax-clear-button:focus-visible:disabled) {
|
632
|
+
@apply ax-text-default;
|
1262
633
|
}
|
1263
634
|
|
1264
635
|
.ax-input {
|
1265
|
-
outline: none;
|
1266
|
-
padding: 0;
|
1267
636
|
font-size: inherit;
|
637
|
+
@apply ax-p-0 ax-outline-0;
|
1268
638
|
}
|
1269
639
|
.ax-input:focus {
|
1270
|
-
outline-
|
640
|
+
@apply ax-outline-transparent;
|
1271
641
|
}
|
1272
642
|
.ax-input.ax-state-disabled {
|
1273
|
-
cursor
|
1274
|
-
opacity: 0.5;
|
643
|
+
@apply ax-cursor-not-allowed ax-opacity-50;
|
1275
644
|
}
|
1276
645
|
|
1277
646
|
.ax-dark .ax-list-item.ax-state-selected {
|
1278
|
-
|
1279
|
-
color: rgba(var(--ax-color-primary-fore)) !important;
|
647
|
+
@apply ax-bg-primary-800 ax-text-primary-fore !important;
|
1280
648
|
}
|
1281
649
|
.ax-dark .ax-list-item.ax-state-selected .ax-selected-icon {
|
1282
|
-
|
650
|
+
@apply ax-text-primary-fore;
|
1283
651
|
}
|
1284
652
|
|
1285
653
|
.ax-list {
|
1286
|
-
|
1287
|
-
flex-direction: column;
|
1288
|
-
overflow: hidden;
|
1289
|
-
font-size: 0.875rem;
|
1290
|
-
background-color: rgba(var(--ax-color-surface));
|
1291
|
-
height: 100%;
|
1292
|
-
}
|
1293
|
-
@media (min-width: 1200px) {
|
1294
|
-
.ax-list {
|
1295
|
-
max-height: 320px;
|
1296
|
-
}
|
654
|
+
@apply ax-flex ax-h-full ax-flex-col ax-overflow-hidden ax-bg-surface ax-text-sm md:ax-max-h-80;
|
1297
655
|
}
|
1298
656
|
.ax-list ax-header,
|
1299
657
|
.ax-list ax-footer {
|
1300
|
-
|
1301
|
-
justify-content: space-between;
|
1302
|
-
align-items: center;
|
1303
|
-
background-color: rgba(var(--ax-color-surface));
|
1304
|
-
border-color: rgba(var(--ax-color-border-default));
|
658
|
+
@apply ax-flex ax-items-center ax-justify-between ax-border-default ax-bg-surface;
|
1305
659
|
}
|
1306
660
|
.ax-list ax-header {
|
1307
|
-
|
1308
|
-
font-size: 1.125rem;
|
1309
|
-
font-weight: 500;
|
1310
|
-
border-bottom: 1px solid;
|
1311
|
-
border-color: rgba(var(--ax-color-border-default));
|
661
|
+
@apply ax-border-b ax-border-default ax-p-4 ax-text-base ax-font-medium md:ax-text-lg;
|
1312
662
|
}
|
1313
663
|
.ax-list ax-header ax-prefix,
|
1314
664
|
.ax-list ax-header ax-suffix {
|
1315
|
-
|
1316
|
-
flex-direction: column;
|
1317
|
-
justify-content: flex-start;
|
665
|
+
@apply ax-flex ax-flex-col ax-justify-items-start;
|
1318
666
|
}
|
1319
667
|
.ax-list ax-header ax-prefix {
|
1320
|
-
|
668
|
+
@apply ax-items-start;
|
1321
669
|
}
|
1322
670
|
.ax-list ax-header ax-suffix {
|
1323
|
-
|
1324
|
-
}
|
1325
|
-
@media (max-width: 599px) {
|
1326
|
-
.ax-list ax-header {
|
1327
|
-
font-size: 1rem;
|
1328
|
-
}
|
671
|
+
@apply ax-items-end;
|
1329
672
|
}
|
1330
673
|
.ax-list ax-footer {
|
1331
|
-
border-
|
674
|
+
@apply ax-border-t;
|
1332
675
|
}
|
1333
676
|
.ax-list .ax-content {
|
1334
|
-
flex
|
1335
|
-
overflow-y: auto;
|
1336
|
-
overflow-x: hidden;
|
677
|
+
@apply ax-flex-1 ax-overflow-y-auto ax-overflow-x-hidden;
|
1337
678
|
}
|
1338
679
|
.ax-list .ax-content.ax-list-items-container {
|
1339
|
-
|
1340
|
-
padding-bottom: 0.5rem;
|
1341
|
-
overflow-y: auto;
|
1342
|
-
height: 100%;
|
680
|
+
@apply ax-h-full ax-overflow-y-auto ax-py-2;
|
1343
681
|
}
|
1344
682
|
.ax-list .ax-content.ax-list-items-container.ax-vertical {
|
1345
|
-
|
1346
|
-
grid-template-columns: repeat(1, minmax(0, 1fr));
|
683
|
+
@apply ax-grid ax-grid-cols-1;
|
1347
684
|
}
|
1348
685
|
.ax-list .ax-content.ax-list-items-container.ax-vertical.ax-divide {
|
1349
|
-
border-
|
1350
|
-
border-bottom: 1px solid;
|
686
|
+
@apply ax-border-y;
|
1351
687
|
}
|
1352
688
|
.ax-list .ax-content.ax-list-items-container.ax-default {
|
1353
|
-
cursor
|
689
|
+
@apply ax-cursor-pointer;
|
1354
690
|
}
|
1355
691
|
.ax-list .ax-content.ax-list-items-container.ax-default .ax-list-item-group > span {
|
1356
|
-
font-
|
1357
|
-
display: flex;
|
1358
|
-
align-items: center;
|
1359
|
-
padding: 0.75rem;
|
692
|
+
@apply ax-flex ax-items-center ax-p-3 ax-font-medium;
|
1360
693
|
}
|
1361
694
|
.ax-list .ax-content.ax-list-items-container.ax-default .ax-list-item-group > ul {
|
1362
|
-
|
1363
|
-
padding-right: 0.75rem;
|
695
|
+
@apply ax-px-3;
|
1364
696
|
}
|
1365
697
|
.ax-list .ax-content.ax-list-items-container.ax-default .ax-list-item-group .ax-list-item {
|
1366
|
-
|
1367
|
-
margin-bottom: 0.2rem;
|
698
|
+
@apply ax-mb-1 ax-rounded-default;
|
1368
699
|
}
|
1369
700
|
.ax-list .ax-content.ax-list-items-container.ax-default .ax-list-item {
|
1370
|
-
|
1371
|
-
padding-inline-end: 1rem;
|
1372
|
-
position: relative;
|
1373
|
-
height: var(--ax-size-default);
|
1374
|
-
display: flex;
|
1375
|
-
justify-content: space-between;
|
1376
|
-
align-items: center;
|
1377
|
-
user-select: none;
|
1378
|
-
}
|
1379
|
-
@media (max-width: 599px) {
|
1380
|
-
.ax-list .ax-content.ax-list-items-container.ax-default .ax-list-item {
|
1381
|
-
font-size: 1rem;
|
1382
|
-
}
|
701
|
+
@apply ax-relative ax-flex ax-h-default ax-select-none ax-items-center ax-justify-between ax-pe-4 ax-ps-3 ax-text-base;
|
1383
702
|
}
|
1384
703
|
.ax-list .ax-content.ax-list-items-container.ax-default .ax-list-item:focus, .ax-list .ax-content.ax-list-items-container.ax-default .ax-list-item:focus-visible {
|
1385
|
-
outline
|
1386
|
-
outline-offset: 2px;
|
704
|
+
@apply ax-outline-2 ax-outline-offset-2;
|
1387
705
|
}
|
1388
706
|
.ax-list .ax-content.ax-list-items-container.ax-default .ax-list-item.ax-state-checkbox .ax-checkbox-label {
|
1389
|
-
|
707
|
+
@apply ax-ms-2;
|
1390
708
|
}
|
1391
709
|
.ax-list .ax-content.ax-list-items-container.ax-default .ax-list-item.ax-state-selected {
|
1392
|
-
|
1393
|
-
color: rgba(var(--ax-color-primary-fore)) !important;
|
710
|
+
@apply ax-bg-primary-500 ax-text-primary-fore !important;
|
1394
711
|
}
|
1395
712
|
.ax-list .ax-content.ax-list-items-container.ax-default .ax-list-item.ax-state-selected .ax-selected-icon {
|
1396
|
-
|
1397
|
-
font-size: 1.5rem;
|
713
|
+
@apply ax-text-2xl ax-text-primary-500;
|
1398
714
|
}
|
1399
715
|
.ax-list .ax-content.ax-list-items-container.ax-default .ax-list-item.ax-state-disabled {
|
1400
|
-
cursor
|
1401
|
-
opacity: 0.5;
|
716
|
+
@apply ax-cursor-not-allowed ax-opacity-50;
|
1402
717
|
}
|
1403
718
|
.ax-list .ax-content.ax-list-items-container.ax-default .ax-list-item:focus-visible, .ax-list .ax-content.ax-list-items-container.ax-default .ax-list-item:hover {
|
1404
|
-
|
719
|
+
@apply ax-bg-on-surface;
|
1405
720
|
}
|
1406
721
|
.ax-list .ax-content.ax-list-items-container.ax-default .ax-list-item.ax-state-focus {
|
1407
|
-
|
722
|
+
@apply ax-bg-on-surface;
|
1408
723
|
}
|
1409
724
|
.ax-list .ax-content.ax-list-items-container .ax-list-loading-container {
|
1410
|
-
|
1411
|
-
justify-content: center;
|
1412
|
-
padding: 0.5rem;
|
725
|
+
@apply ax-flex ax-justify-center ax-p-2;
|
1413
726
|
}
|
1414
727
|
.ax-list .ax-search-box-container {
|
1415
|
-
|
728
|
+
@apply ax-p-2;
|
1416
729
|
}
|
1417
730
|
.ax-list .ax-search-box-container.ax-state-hidden {
|
1418
|
-
|
731
|
+
@apply ax-hidden;
|
1419
732
|
}
|
1420
733
|
.ax-radio {
|
1421
|
-
|
1422
|
-
height: 1.125rem;
|
1423
|
-
border: 1px solid;
|
1424
|
-
border-color: rgba(var(--ax-color-border-default));
|
1425
|
-
border-radius: 99rem;
|
1426
|
-
background-color: rgba(var(--ax-color-input-surface));
|
1427
|
-
outline: 2px solid transparent;
|
1428
|
-
outline-offset: 2px;
|
1429
|
-
vertical-align: middle;
|
1430
|
-
appearance: none;
|
734
|
+
@apply ax-m-0 ax-h-4 ax-w-4 ax-cursor-pointer ax-appearance-none ax-rounded-full ax-border ax-border-default ax-bg-input-surface ax-align-middle ax-outline-none;
|
1431
735
|
}
|
1432
736
|
.ax-radio:checked {
|
1433
|
-
border-color: rgba(var(--ax-color-primary-500));
|
1434
737
|
background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
|
1435
|
-
|
1436
|
-
|
1437
|
-
background-size: contain;
|
738
|
+
@apply ax-border-primary-500 ax-bg-primary-500 !important;
|
739
|
+
@apply ax-bg-contain ax-bg-no-repeat;
|
1438
740
|
}
|
1439
|
-
.ax-radio:focus-visible {
|
1440
|
-
|
1441
|
-
outline-width: 2px;
|
1442
|
-
outline-style: solid;
|
1443
|
-
outline-color: rgba(var(--ax-color-primary-500));
|
741
|
+
.ax-radio:focus-visible, .ax-radio:focus {
|
742
|
+
@apply ax-ring-2 ax-ring-primary-500 ax-ring-offset-2;
|
1444
743
|
}
|
1445
744
|
.ax-radio:disabled {
|
1446
|
-
opacity
|
1447
|
-
cursor: not-allowed;
|
745
|
+
@apply ax-cursor-not-allowed ax-opacity-50;
|
1448
746
|
}
|
1449
747
|
|
1450
748
|
.ax-dark .ax-table thead {
|
1451
|
-
|
749
|
+
@apply ax-bg-on-surface;
|
1452
750
|
}
|
1453
751
|
|
1454
752
|
.ax-table {
|
1455
|
-
|
1456
|
-
border-radius: var(--ax-rounded-border-default);
|
1457
|
-
border-spacing: 0px;
|
1458
|
-
border-collapse: collapse;
|
1459
|
-
border: 1px solid;
|
1460
|
-
border-color: rgba(var(--ax-color-border-default));
|
1461
|
-
overflow: hidden;
|
1462
|
-
font-size: 0.875rem;
|
753
|
+
@apply ax-w-full ax-border-collapse ax-border-spacing-0 ax-overflow-hidden ax-rounded-default ax-border ax-border-default ax-text-sm;
|
1463
754
|
}
|
1464
755
|
.ax-table td {
|
1465
|
-
border-
|
1466
|
-
border-color: rgba(var(--ax-color-border-default));
|
1467
|
-
padding: 0.875rem 1rem;
|
756
|
+
@apply ax-border-b ax-border-default ax-px-4 ax-py-3;
|
1468
757
|
}
|
1469
758
|
.ax-table thead {
|
1470
|
-
|
1471
|
-
border-bottom: 1px solid;
|
1472
|
-
border-color: rgba(var(--ax-color-border-default));
|
759
|
+
@apply ax-border-b ax-border-default ax-bg-on-surface;
|
1473
760
|
}
|
1474
761
|
.ax-table thead th {
|
1475
|
-
text-
|
1476
|
-
font-weight: 500;
|
1477
|
-
text-align: start;
|
1478
|
-
padding: 0.875rem 1rem;
|
762
|
+
@apply ax-px-4 ax-py-3.5 ax-text-start ax-font-medium ax-uppercase;
|
1479
763
|
}
|
1480
764
|
.ax-table.ax-table-alternate tbody tr:nth-child(even) {
|
1481
|
-
|
765
|
+
@apply ax-bg-on-surface;
|
1482
766
|
}
|
1483
767
|
.ax-table.ax-table-bordered thead th {
|
1484
|
-
border-
|
768
|
+
@apply ax-border-t-0 !important;
|
1485
769
|
}
|
1486
770
|
.ax-table.ax-table-bordered tbody tr:last-child td {
|
1487
|
-
border-
|
771
|
+
@apply ax-border-b-0 !important;
|
1488
772
|
}
|
1489
773
|
.ax-table.ax-table-bordered tbody tr td:last-child {
|
1490
|
-
border-
|
774
|
+
@apply ax-border-b-0 !important;
|
1491
775
|
}
|
1492
776
|
.ax-table.ax-table-bordered td,
|
1493
777
|
.ax-table.ax-table-bordered th {
|
1494
|
-
border
|
1495
|
-
border-color: rgba(var(--ax-color-border-default));
|
778
|
+
@apply ax-border ax-border-default;
|
1496
779
|
}
|
1497
780
|
.ax-table.ax-table-bordered td:first-child,
|
1498
781
|
.ax-table.ax-table-bordered th:first-child {
|
1499
|
-
border-
|
782
|
+
@apply ax-border-s-0;
|
1500
783
|
}
|
1501
784
|
.ax-table.ax-table-bordered td:last-child,
|
1502
785
|
.ax-table.ax-table-bordered th:last-child {
|
1503
|
-
border-
|
786
|
+
@apply ax-border-e-0;
|
1504
787
|
}
|
1505
788
|
@media screen and (max-width: 601px) {
|
1506
789
|
.ax-table.ax-table-responsive {
|
1507
|
-
|
1508
|
-
display: block;
|
1509
|
-
border: 0px;
|
790
|
+
@apply ax-block ax-break-words ax-border-0;
|
1510
791
|
}
|
1511
792
|
.ax-table.ax-table-responsive thead {
|
1512
|
-
|
1513
|
-
inset-inline-start: -100%;
|
1514
|
-
top: -100%;
|
793
|
+
@apply ax-absolute -ax-start-full -ax-top-full;
|
1515
794
|
}
|
1516
795
|
.ax-table.ax-table-responsive td {
|
1517
|
-
display: block;
|
1518
796
|
float: inline-start;
|
1519
|
-
|
1520
|
-
clear: both;
|
1521
|
-
background: rgba(var(--ax-color-surface));
|
1522
|
-
padding: 0.375rem 0.625rem;
|
1523
|
-
box-sizing: border-box;
|
797
|
+
@apply ax-clear-both ax-box-border ax-block ax-w-full ax-px-2.5 ax-py-1.5;
|
1524
798
|
}
|
1525
799
|
.ax-table.ax-table-responsive td:last-child {
|
1526
|
-
border
|
800
|
+
@apply ax-border-0;
|
1527
801
|
}
|
1528
802
|
.ax-table.ax-table-responsive td:before {
|
1529
803
|
content: attr(data-label);
|
1530
|
-
|
1531
|
-
font-weight: bold;
|
804
|
+
@apply ax-block ax-font-bold;
|
1532
805
|
}
|
1533
806
|
.ax-table.ax-table-responsive tr {
|
1534
|
-
border
|
1535
|
-
border-color: rgba(var(--ax-color-border-default));
|
807
|
+
@apply ax-border ax-border-default;
|
1536
808
|
}
|
1537
809
|
.ax-table.ax-table-responsive tr,
|
1538
810
|
.ax-table.ax-table-responsive tbody {
|
1539
|
-
|
1540
|
-
width: 100%;
|
811
|
+
@apply ax-mb-2.5 ax-block ax-w-full;
|
1541
812
|
float: inline-start;
|
1542
|
-
margin-bottom: 0.625rem;
|
1543
813
|
}
|
1544
814
|
}
|
1545
815
|
|
@@ -1548,74 +818,31 @@ ax-form-hint {
|
|
1548
818
|
vertical-align: middle;
|
1549
819
|
}
|
1550
820
|
|
1551
|
-
.ax-w-full {
|
1552
|
-
width: 100%;
|
1553
|
-
}
|
1554
|
-
|
1555
|
-
.ax-h-full {
|
1556
|
-
height: 100%;
|
1557
|
-
}
|
1558
|
-
|
1559
821
|
.ax-fieldset {
|
1560
|
-
border
|
1561
|
-
border-color: rgba(var(--ax-color-border-default));
|
1562
|
-
padding: 0.75rem;
|
1563
|
-
border-radius: var(--ax-rounded-border-default);
|
822
|
+
@apply ax-rounded-default ax-border ax-border-default ax-p-3;
|
1564
823
|
}
|
1565
824
|
.ax-fieldset legend {
|
1566
|
-
|
1567
|
-
padding: 0 0.25rem;
|
825
|
+
@apply ax-px-1 ax-text-sm;
|
1568
826
|
}
|
1569
827
|
|
1570
828
|
.ax-card {
|
1571
|
-
|
1572
|
-
border: 1px solid;
|
1573
|
-
border-color: rgba(var(--ax-color-border-default));
|
1574
|
-
border-radius: var(--ax-rounded-border-default);
|
1575
|
-
}
|
1576
|
-
|
1577
|
-
.ax-hidden {
|
1578
|
-
display: none;
|
829
|
+
@apply ax-rounded-default ax-border ax-border-default ax-bg-surface;
|
1579
830
|
}
|
1580
831
|
|
1581
832
|
.ax-drop-zone > input {
|
1582
|
-
|
1583
|
-
width: 100%;
|
1584
|
-
height: 100%;
|
1585
|
-
opacity: 0;
|
1586
|
-
cursor: pointer;
|
833
|
+
@apply ax-absolute ax-h-full ax-w-full ax-cursor-pointer ax-opacity-0;
|
1587
834
|
}
|
1588
835
|
|
1589
836
|
.ax-uploader-overlay-state {
|
1590
|
-
width: 100%;
|
1591
|
-
height: 100%;
|
1592
|
-
position: absolute;
|
1593
|
-
top: 0;
|
1594
|
-
inset-inline-start: 0;
|
1595
|
-
background-color: rgba(var(--ax-color-primary-500), 0.15);
|
1596
|
-
pointer-events: none;
|
1597
|
-
outline: 2px dashed rgba(var(--ax-color-primary-500));
|
1598
|
-
outline-offset: -4px;
|
1599
837
|
border-radius: inherit;
|
1600
|
-
|
1601
|
-
align-items: center;
|
1602
|
-
justify-content: center;
|
1603
|
-
flex-direction: column;
|
1604
|
-
font-size: 0.875rem;
|
1605
|
-
gap: 0.5rem;
|
1606
|
-
cursor: pointer;
|
1607
|
-
color: rgba(var(--ax-color-primary-700));
|
1608
|
-
transition: all 0.3s;
|
1609
|
-
z-index: 10;
|
838
|
+
@apply ax-pointer-events-none ax-absolute ax-start-0 ax-top-0 ax-z-10 ax-flex ax-h-full ax-w-full ax-cursor-pointer ax-flex-col ax-items-center ax-justify-center ax-gap-2 ax-bg-primary-200/75 ax-text-sm ax-text-primary-fore-tint ax-outline-dashed ax-outline-2 -ax-outline-offset-4 ax-transition-all;
|
1610
839
|
}
|
1611
840
|
.ax-uploader-overlay-state .ax-icon {
|
1612
|
-
|
841
|
+
@apply ax-text-2xl;
|
1613
842
|
}
|
1614
843
|
|
1615
844
|
.ax-dark .ax-uploader-overlay-state {
|
1616
|
-
|
1617
|
-
color: rgba(var(--ax-color-primary-200));
|
1618
|
-
outline: 2px dashed rgba(var(--ax-color-primary-200));
|
845
|
+
@apply ax-bg-primary-800/75 ax-text-primary-fore ax-outline-primary-fore;
|
1619
846
|
}
|
1620
847
|
|
1621
848
|
.ax-xs {
|
@@ -1638,10 +865,6 @@ ax-form-hint {
|
|
1638
865
|
--ax-size-default: calc(var(--ax-size-base) + 1rem);
|
1639
866
|
}
|
1640
867
|
|
1641
|
-
.ax-filp {
|
1642
|
-
transform: scale(-1, 1);
|
1643
|
-
}
|
1644
|
-
|
1645
868
|
.ax-placeholder {
|
1646
869
|
color: rgba(var(--ax-color-text-default), 0.25);
|
1647
870
|
font-weight: 500;
|