@appartmint/mint 2.9.0 → 2.9.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/dist/css/mint.css +52 -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/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/util/_util.scss +0 -11
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%;
|