kmaterialize 2.3.3-1.0.7 → 2.3.3-1.0.9

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,
@@ -130,7 +136,8 @@
130
136
  .navbar .brand-logo {
131
137
  color: var(--md-sys-color-on-surface);
132
138
  font-size: var(--appbar-title-font-size);
133
- display: inline-block;
139
+ display: inline-flex;
140
+ align-items: center;
134
141
  padding: 0;
135
142
  }
136
143
 
@@ -151,7 +158,13 @@
151
158
  .navbar .brand-logo i.material-symbols-outlined,
152
159
  .navbar .brand-logo i.material-symbols-rounded,
153
160
  .navbar .brand-logo i.material-symbols-sharp {
154
- float: left;
161
+ /* Was float:left, paired with an explicit height/line-height (from
162
+ the general .navbar i rule) sized to the whole navbar row height,
163
+ inside a brand-logo that's only ever as tall as its own text.
164
+ Floating a block that tall out of a small inline-block parent
165
+ with nothing to clear it let it render outside/clipped by the
166
+ navbar row - invisible in practice. brand-logo is flex now, so
167
+ this just needs to be a normal flex item. */
155
168
  margin-right: 15px;
156
169
  }
157
170
 
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Materialize v2.3.3-1.0.7 (https://materializeweb.com)
2
+ * Materialize v2.3.3-1.0.9 (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.9 (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,
@@ -6752,7 +6764,14 @@ body.keyboard-focused .dropdown-content li:focus {
6752
6764
  .navbar .brand-logo {
6753
6765
  color: var(--md-sys-color-on-surface);
6754
6766
  font-size: var(--appbar-title-font-size);
6755
- display: inline-block;
6767
+ display: -webkit-inline-box;
6768
+ display: -webkit-inline-flex;
6769
+ display: -ms-inline-flexbox;
6770
+ display: inline-flex;
6771
+ -webkit-box-align: center;
6772
+ -webkit-align-items: center;
6773
+ -ms-flex-align: center;
6774
+ align-items: center;
6756
6775
  padding: 0;
6757
6776
  }
6758
6777
 
@@ -6774,7 +6793,13 @@ body.keyboard-focused .dropdown-content li:focus {
6774
6793
  .navbar .brand-logo i.material-symbols-outlined,
6775
6794
  .navbar .brand-logo i.material-symbols-rounded,
6776
6795
  .navbar .brand-logo i.material-symbols-sharp {
6777
- float: left;
6796
+ /* Was float:left, paired with an explicit height/line-height (from
6797
+ the general .navbar i rule) sized to the whole navbar row height,
6798
+ inside a brand-logo that's only ever as tall as its own text.
6799
+ Floating a block that tall out of a small inline-block parent
6800
+ with nothing to clear it let it render outside/clipped by the
6801
+ navbar row - invisible in practice. brand-logo is flex now, so
6802
+ this just needs to be a normal flex item. */
6778
6803
  margin-right: 15px;
6779
6804
  }
6780
6805