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.
@@ -72,7 +72,13 @@
72
72
  margin-top: -2px;
73
73
  margin-left: 15px;
74
74
  margin-right: 15px;
75
- display: inline-block;
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,
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Materialize v2.3.3-1.0.7 (https://materializeweb.com)
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
  */
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Materialize v2.3.3-1.0.7 (https://materializeweb.com)
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
- display: inline-block;
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,