Skip to content

Commit e64cfa7

Browse files
authored
Merge pull request #444 from materializecss/release-2.0.3
Release 2.0.3 🥶 Winter Edition
2 parents b2051ea + 41a8824 commit e64cfa7

31 files changed

+1416
-2867
lines changed

.npmignore

+5
Original file line numberDiff line numberDiff line change
@@ -45,3 +45,8 @@ yarn.lock
4545
# Compiled docs
4646
/docs/*.html
4747
!/docs/fab-toolbar-demo.html
48+
49+
# Source Files
50+
src/
51+
52+
Gruntfile.js

dist/css/materialize.css

+37-15
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* Materialize v2.0.3-beta (https://materializecss.github.io/materialize)
2+
* Materialize v2.0.3 (https://materializecss.github.io/materialize)
33
* Copyright 2014-2023 Materialize
44
* MIT License (https://raw.githubusercontent.com/materializecss/materialize/master/LICENSE)
55
*/
@@ -5564,23 +5564,33 @@ small {
55645564
}
55655565
}
55665566
.material-tooltip {
5567-
padding: 10px 8px;
5568-
font-size: 1rem;
5569-
z-index: 2000;
5570-
border-radius: 2px;
5571-
color: var(--tooltip-font-color);
5572-
min-height: 36px;
5573-
line-height: 120%;
5567+
padding: 0 8px;
5568+
border-radius: 4px;
5569+
background-color: var(--md-sys-color-inverse-surface);
5570+
color: var(--md-sys-color-inverse-on-surface);
5571+
font-family: var(--md-sys-typescale-body-small-font-family-name);
5572+
font-size: var(--md-sys-typescale-body-small-font-size);
5573+
line-height: var(--md-sys-typescale-body-small-line-height);
5574+
font-weight: var(--md-sys-typescale-body-small-font-weight);
5575+
min-height: 24px;
55745576
opacity: 0;
5575-
position: absolute;
55765577
text-align: center;
5578+
position: absolute;
55775579
max-width: calc(100% - 4px);
55785580
overflow: hidden;
55795581
left: 0;
55805582
top: 0;
55815583
pointer-events: none;
5584+
display: -webkit-box;
5585+
display: -webkit-flex;
5586+
display: -ms-flexbox;
5587+
display: flex;
5588+
-webkit-box-align: center;
5589+
-webkit-align-items: center;
5590+
-ms-flex-align: center;
5591+
align-items: center;
55825592
visibility: hidden;
5583-
background-color: var(--tooltip-background-color);
5593+
z-index: 2000;
55845594
}
55855595

55865596
.backdrop {
@@ -5589,7 +5599,7 @@ small {
55895599
height: 7px;
55905600
width: 14px;
55915601
border-radius: 0 0 50% 50%;
5592-
background-color: var(--tooltip-background-color);
5602+
background-color: var(--md-sys-color-inverse-surface);
55935603
z-index: -1;
55945604
-webkit-transform-origin: 50% 0;
55955605
transform-origin: 50% 0;
@@ -6157,16 +6167,28 @@ body.keyboard-focused .dropdown-content li:focus {
61576167
margin-right: 1rem;
61586168
}
61596169

6170+
.collapsible-header::after {
6171+
content: "▾";
6172+
text-align: right;
6173+
margin-right: 0.25rem;
6174+
width: 100%;
6175+
}
6176+
6177+
.active .collapsible-header::after {
6178+
content: "▴";
6179+
}
6180+
61606181
.keyboard-focused .collapsible-header:focus {
61616182
background-color: var(--focus-color);
61626183
}
61636184

61646185
.collapsible-body {
6165-
display: none;
6186+
max-height: 0;
61666187
border-bottom: 1px solid var(--separator-color);
61676188
-webkit-box-sizing: border-box;
61686189
box-sizing: border-box;
6169-
padding: 2rem;
6190+
padding: 0 2rem;
6191+
overflow: hidden;
61706192
background-color: var(--surface-color);
61716193
}
61726194

@@ -6353,15 +6375,15 @@ body.keyboard-focused .dropdown-content li:focus {
63536375
right: 0;
63546376
bottom: 0;
63556377
left: 0;
6356-
background-color: #292929;
6378+
background-color: var(--md-sys-color-background);
63576379
z-index: 1000;
63586380
will-change: opacity;
63596381
}
63606382

63616383
.materialbox-caption {
63626384
position: fixed;
63636385
display: none;
6364-
color: #fff;
6386+
color: var(--font-color-main);
63656387
line-height: 50px;
63666388
bottom: 0;
63676389
left: 0;

dist/css/materialize.min.css

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)