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.
- package/components/appbar/appbar.css +16 -3
- package/dist/css/materialize.colors.min.css +1 -1
- package/dist/css/materialize.css +29 -4
- 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,
|
|
@@ -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-
|
|
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:
|
|
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
|
|
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.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
|
-
|
|
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-
|
|
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:
|
|
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
|
|