@appartmint/mint 2.9.0 → 2.9.3
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/css/mint.css +63 -27
- package/dist/css/mint.css.map +1 -1
- package/dist/css/mint.min.css +1 -1
- package/dist/css/mint.min.css.map +1 -1
- package/dist/js/imports/util/list.d.ts +6 -0
- package/dist/js/imports/util/list.d.ts.map +1 -1
- package/dist/js/index.js +8 -0
- package/dist/js/index.js.map +1 -1
- package/dist/js/index.min.js +1 -1
- package/dist/js/index.min.js.map +1 -1
- package/package.json +1 -1
- package/src/scss/imports/components/widget/_button.scss +32 -0
- package/src/scss/imports/global/_global.scss +0 -29
- package/src/scss/imports/global/_themes.scss +15 -1
- package/src/scss/imports/util/_util.scss +0 -11
- package/src/scss/imports/util/_vars.scss +1 -1
package/dist/css/mint.css
CHANGED
|
@@ -691,6 +691,58 @@ body.mint-fixed #mint-header {
|
|
|
691
691
|
}
|
|
692
692
|
}
|
|
693
693
|
|
|
694
|
+
button,
|
|
695
|
+
a[routerLink] {
|
|
696
|
+
cursor: pointer;
|
|
697
|
+
}
|
|
698
|
+
|
|
699
|
+
a,
|
|
700
|
+
button,
|
|
701
|
+
.mint-btn,
|
|
702
|
+
:root:root [amplify-button],
|
|
703
|
+
.mint-select,
|
|
704
|
+
.mint-btn-icon,
|
|
705
|
+
.mint-pill {
|
|
706
|
+
font-size: inherit;
|
|
707
|
+
}
|
|
708
|
+
a[disabled],
|
|
709
|
+
button[disabled],
|
|
710
|
+
.mint-btn[disabled],
|
|
711
|
+
:root:root [disabled][amplify-button],
|
|
712
|
+
[disabled].mint-select,
|
|
713
|
+
.mint-btn-icon[disabled],
|
|
714
|
+
.mint-pill[disabled] {
|
|
715
|
+
filter: grayscale(1) brightness(0.75) !important;
|
|
716
|
+
pointer-events: none !important;
|
|
717
|
+
}
|
|
718
|
+
a[disabled].mint-fall-in:not(.mint-show),
|
|
719
|
+
button[disabled].mint-fall-in:not(.mint-show),
|
|
720
|
+
.mint-btn[disabled].mint-fall-in:not(.mint-show),
|
|
721
|
+
:root:root [disabled].mint-fall-in[amplify-button]:not(.mint-show),
|
|
722
|
+
[disabled].mint-fall-in.mint-select:not(.mint-show),
|
|
723
|
+
.mint-btn-icon[disabled].mint-fall-in:not(.mint-show),
|
|
724
|
+
.mint-pill[disabled].mint-fall-in:not(.mint-show) {
|
|
725
|
+
filter: grayscale(1) brightness(0.75) opacity(0%) !important;
|
|
726
|
+
}
|
|
727
|
+
a i:first-child,
|
|
728
|
+
button i:first-child,
|
|
729
|
+
.mint-btn i:first-child,
|
|
730
|
+
:root:root [amplify-button] i:first-child,
|
|
731
|
+
.mint-select i:first-child,
|
|
732
|
+
.mint-btn-icon i:first-child,
|
|
733
|
+
.mint-pill i:first-child {
|
|
734
|
+
margin-right: 0.5em;
|
|
735
|
+
}
|
|
736
|
+
a i:last-child,
|
|
737
|
+
button i:last-child,
|
|
738
|
+
.mint-btn i:last-child,
|
|
739
|
+
:root:root [amplify-button] i:last-child,
|
|
740
|
+
.mint-select i:last-child,
|
|
741
|
+
.mint-btn-icon i:last-child,
|
|
742
|
+
.mint-pill i:last-child {
|
|
743
|
+
margin-left: 0.5em;
|
|
744
|
+
}
|
|
745
|
+
|
|
694
746
|
.mint-btn, :root:root [amplify-button], .mint-select,
|
|
695
747
|
.mint-btn-group,
|
|
696
748
|
.mint-btn-icon,
|
|
@@ -1686,33 +1738,6 @@ nav ul > li > ul {
|
|
|
1686
1738
|
}
|
|
1687
1739
|
}
|
|
1688
1740
|
|
|
1689
|
-
button,
|
|
1690
|
-
a[routerLink] {
|
|
1691
|
-
cursor: pointer;
|
|
1692
|
-
}
|
|
1693
|
-
|
|
1694
|
-
a,
|
|
1695
|
-
button {
|
|
1696
|
-
font-size: inherit;
|
|
1697
|
-
}
|
|
1698
|
-
a[disabled],
|
|
1699
|
-
button[disabled] {
|
|
1700
|
-
filter: grayscale(1) brightness(0.75) !important;
|
|
1701
|
-
pointer-events: none !important;
|
|
1702
|
-
}
|
|
1703
|
-
a[disabled].mint-fall-in:not(.mint-show),
|
|
1704
|
-
button[disabled].mint-fall-in:not(.mint-show) {
|
|
1705
|
-
filter: grayscale(1) brightness(0.75) opacity(0%) !important;
|
|
1706
|
-
}
|
|
1707
|
-
a i:first-child,
|
|
1708
|
-
button i:first-child {
|
|
1709
|
-
margin-right: 0.5em;
|
|
1710
|
-
}
|
|
1711
|
-
a i:last-child,
|
|
1712
|
-
button i:last-child {
|
|
1713
|
-
margin-left: 0.5em;
|
|
1714
|
-
}
|
|
1715
|
-
|
|
1716
1741
|
img,
|
|
1717
1742
|
video {
|
|
1718
1743
|
width: 100%;
|
|
@@ -3443,6 +3468,17 @@ p, .mint-p {
|
|
|
3443
3468
|
--mint-info-4: rgb(168, 206.9565217391, 45.0434782609);
|
|
3444
3469
|
--mint-info-5: rgb(134, 165.0724637681, 35.9275362319);
|
|
3445
3470
|
--mint-info-6: rgb(100, 123.1884057971, 26.8115942029);
|
|
3471
|
+
--mint-tooltip-fore: var(--mint-fore);
|
|
3472
|
+
--mint-tooltip-back: var(--mint-black-2);
|
|
3473
|
+
--mint-tooltip-radius: 1rem;
|
|
3474
|
+
--mint-tooltip-shadow-color: glow-2;
|
|
3475
|
+
--mint-tooltip-shadow-size: 0 0 2rem -0.5rem;
|
|
3476
|
+
--mint-tooltip-padding: 0.5rem 1rem;
|
|
3477
|
+
--mint-tooltip-distance: 0.5rem;
|
|
3478
|
+
--mint-tooltip-max-width: 90vw;
|
|
3479
|
+
--mint-tooltip-line-height: 1.5;
|
|
3480
|
+
--mint-tooltip-font-size: 1rem;
|
|
3481
|
+
--mint-tooltip-arrow-size: 0.5rem;
|
|
3446
3482
|
}
|
|
3447
3483
|
|
|
3448
3484
|
:root {
|