kmaterialize 2.3.3-1.0.7 → 2.3.3-1.0.8
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/components/appbar/appbar.css +7 -1
- package/dist/css/materialize.colors.min.css +1 -1
- package/dist/css/materialize.css +14 -2
- package/dist/css/materialize.min.css +2 -2
- package/dist/js/materialize.cjs.js +2 -2
- package/dist/js/materialize.d.ts +1 -1
- package/dist/js/materialize.js +2 -2
- package/dist/js/materialize.min.js +2 -2
- package/dist/js/materialize.mjs +2 -2
- package/package.json +1 -1
|
@@ -72,7 +72,13 @@
|
|
|
72
72
|
margin-top: -2px;
|
|
73
73
|
margin-left: 15px;
|
|
74
74
|
margin-right: 15px;
|
|
75
|
-
|
|
75
|
+
/* Was inline-block, which overrides .btn's own inline-flex;
|
|
76
|
+
align-items:center and breaks vertical centering of the button's
|
|
77
|
+
text - visually harmless on .btn-large (tall enough that the
|
|
78
|
+
misalignment doesn't stand out) but text nearly clips out the
|
|
79
|
+
bottom on the smaller .btn/.btn-flat/.btn-floating sizes. */
|
|
80
|
+
display: inline-flex;
|
|
81
|
+
align-items: center;
|
|
76
82
|
}
|
|
77
83
|
|
|
78
84
|
.navbar ul:not(.dropdown-content) > li > a.btn > .material-icons,
|
package/dist/css/materialize.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Materialize v2.3.3-1.0.
|
|
2
|
+
* Materialize v2.3.3-1.0.8 (https://materializeweb.com)
|
|
3
3
|
* Copyright 2014-2026 Materialize
|
|
4
4
|
* MIT License (https://raw.githubusercontent.com/materializecss/materialize/master/LICENSE)
|
|
5
5
|
*/
|
|
@@ -6694,7 +6694,19 @@ body.keyboard-focused .dropdown-content li:focus {
|
|
|
6694
6694
|
margin-top: -2px;
|
|
6695
6695
|
margin-left: 15px;
|
|
6696
6696
|
margin-right: 15px;
|
|
6697
|
-
|
|
6697
|
+
/* Was inline-block, which overrides .btn's own inline-flex;
|
|
6698
|
+
align-items:center and breaks vertical centering of the button's
|
|
6699
|
+
text - visually harmless on .btn-large (tall enough that the
|
|
6700
|
+
misalignment doesn't stand out) but text nearly clips out the
|
|
6701
|
+
bottom on the smaller .btn/.btn-flat/.btn-floating sizes. */
|
|
6702
|
+
display: -webkit-inline-box;
|
|
6703
|
+
display: -webkit-inline-flex;
|
|
6704
|
+
display: -ms-inline-flexbox;
|
|
6705
|
+
display: inline-flex;
|
|
6706
|
+
-webkit-box-align: center;
|
|
6707
|
+
-webkit-align-items: center;
|
|
6708
|
+
-ms-flex-align: center;
|
|
6709
|
+
align-items: center;
|
|
6698
6710
|
}
|
|
6699
6711
|
|
|
6700
6712
|
.navbar ul:not(.dropdown-content) > li > a.btn > .material-icons,
|