Skip to content

Commit 3694046

Browse files
committed
1.0.0-alpha.3 Release
1 parent adfefba commit 3694046

File tree

14 files changed

+1380
-1344
lines changed

14 files changed

+1380
-1344
lines changed

CHANGELOG.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,15 @@ Changelog
22
=======
33
Bolded styling surrounded by emojis indicates a breaking change.
44

5-
## 1.0.0-alpha.3 (TBD)
6-
- *Initialization code for components changed. E.g. Change`new M.Tooltip(el, options)` to `M.Tooltip.init(el, options)`*
5+
## 1.0.0-alpha.3 (December 29th, 2017)
6+
- *Initialization code for all components changed. E.g. Change`new M.Tooltip(el, options)` to `M.Tooltip.init(el, options)`*
77
- This was done so that the same initialization code can be used to initialize single Elements as well as NodeLists and jQuery element objects
88

9+
- Added in onOpen and OnClose callbacks for appropriate plugins
10+
11+
- Datepicker
12+
- Destroy function added
13+
914
- Feature Discovery
1015
- Added open and close callbacks
1116

@@ -16,6 +21,10 @@ Bolded styling surrounded by emojis indicates a breaking change.
1621
- Added open and close callbacks for consistency
1722
- Removed ready and complete callbacks
1823

24+
- Parallax
25+
- Has responsiveThreshold option
26+
- Destroy function added
27+
1928
- Pushpin
2029
- added onPositionChange callback
2130

dist/css/materialize.css

Lines changed: 17 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* Materialize v1.0.0-alpha.2 (http://materializecss.com)
2+
* Materialize v1.0.0-alpha.3 (http://materializecss.com)
33
* Copyright 2014-2017 Materialize
44
* MIT License (https://raw.githubusercontent.com/Dogfalo/materialize/master/LICENSE)
55
*/
@@ -2253,7 +2253,9 @@ abbr[title] {
22532253
/* 1 */
22542254
text-decoration: underline;
22552255
/* 2 */
2256-
text-decoration: underline dotted;
2256+
-webkit-text-decoration: underline dotted;
2257+
-moz-text-decoration: underline dotted;
2258+
text-decoration: underline dotted;
22572259
/* 2 */
22582260
}
22592261

@@ -2966,11 +2968,6 @@ table {
29662968
border-spacing: 0;
29672969
}
29682970

2969-
table.bordered > thead > tr,
2970-
table.bordered > tbody > tr {
2971-
border-bottom: 1px solid rgba(0, 0, 0, 0.12);
2972-
}
2973-
29742971
table.striped tr {
29752972
border-bottom: none;
29762973
}
@@ -3060,27 +3057,13 @@ td, th {
30603057
text-align: left;
30613058
}
30623059
table.responsive-table tr {
3060+
border-bottom: none;
30633061
padding: 0 10px;
30643062
}
30653063
table.responsive-table thead {
30663064
border: 0;
30673065
border-right: 1px solid rgba(0, 0, 0, 0.12);
30683066
}
3069-
table.responsive-table.bordered th {
3070-
border-bottom: 0;
3071-
border-left: 0;
3072-
}
3073-
table.responsive-table.bordered td {
3074-
border-left: 0;
3075-
border-right: 0;
3076-
border-bottom: 0;
3077-
}
3078-
table.responsive-table.bordered tr {
3079-
border: 0;
3080-
}
3081-
table.responsive-table.bordered tbody tr {
3082-
border-right: 1px solid rgba(0, 0, 0, 0.12);
3083-
}
30843067
}
30853068

30863069
.collection {
@@ -4577,10 +4560,6 @@ small {
45774560
font-weight: 200;
45784561
}
45794562

4580-
.flow-text {
4581-
font-weight: 300;
4582-
}
4583-
45844563
@media only screen and (min-width: 360px) {
45854564
.flow-text {
45864565
font-size: 1.2rem;
@@ -4893,7 +4872,6 @@ small {
48934872

48944873
.card .card-content p {
48954874
margin: 0;
4896-
color: inherit;
48974875
}
48984876

48994877
.card .card-content .card-title {
@@ -4908,7 +4886,6 @@ small {
49084886

49094887
.card .card-action {
49104888
position: relative;
4911-
background-color: inherit;
49124889
border-top: 1px solid rgba(160, 160, 160, 0.2);
49134890
padding: 16px 24px;
49144891
}
@@ -5951,7 +5928,7 @@ button.btn-floating {
59515928
border: 0;
59525929
color: rgba(0, 0, 0, 0.6);
59535930
display: inline-block;
5954-
font-size: 1rem;
5931+
font-size: 16px;
59555932
height: 3rem;
59565933
line-height: 32px;
59575934
outline: 0;
@@ -6054,6 +6031,9 @@ label {
60546031
:-ms-input-placeholder {
60556032
color: #d1d1d1;
60566033
}
6034+
::-ms-input-placeholder {
6035+
color: #d1d1d1;
6036+
}
60576037
::placeholder {
60586038
color: #d1d1d1;
60596039
}
@@ -6079,15 +6059,17 @@ textarea.materialize-textarea {
60796059
outline: none;
60806060
height: 3rem;
60816061
width: 100%;
6082-
font-size: 1rem;
6062+
font-size: 16px;
60836063
margin: 0 0 8px 0;
60846064
padding: 0;
60856065
-webkit-box-shadow: none;
60866066
box-shadow: none;
60876067
-webkit-box-sizing: content-box;
60886068
box-sizing: content-box;
6089-
-webkit-transition: all 0.3s;
6090-
transition: all 0.3s;
6069+
-webkit-transition: border .3s, -webkit-box-shadow .3s;
6070+
transition: border .3s, -webkit-box-shadow .3s;
6071+
transition: box-shadow .3s, border .3s;
6072+
transition: box-shadow .3s, border .3s, -webkit-box-shadow .3s;
60916073
}
60926074

60936075
input:not([type]):disabled, input:not([type])[readonly="readonly"],
@@ -6605,8 +6587,6 @@ textarea.materialize-textarea {
66056587
min-height: 3rem;
66066588
-webkit-box-sizing: border-box;
66076589
box-sizing: border-box;
6608-
-webkit-transition: none;
6609-
transition: none;
66106590
}
66116591

66126592
.hiddendiv {
@@ -6771,16 +6751,6 @@ textarea.materialize-textarea {
67716751

67726752
/* Checkboxes
67736753
========================================================================== */
6774-
/* CUSTOM CSS CHECKBOXES */
6775-
form p {
6776-
margin-bottom: 10px;
6777-
text-align: left;
6778-
}
6779-
6780-
form p:last-child {
6781-
margin-bottom: 0;
6782-
}
6783-
67846754
/* Remove default checkbox */
67856755
[type="checkbox"]:not(:checked),
67866756
[type="checkbox"]:checked {
@@ -7131,14 +7101,15 @@ select {
71317101
height: 3rem;
71327102
line-height: 3rem;
71337103
width: 100%;
7134-
font-size: 1rem;
7104+
font-size: 16px;
71357105
margin: 0 0 8px 0;
71367106
padding: 0;
71377107
display: block;
71387108
-webkit-user-select: none;
71397109
-moz-user-select: none;
71407110
-ms-user-select: none;
71417111
user-select: none;
7112+
z-index: 1;
71427113
}
71437114

71447115
.select-wrapper input.select-dropdown:focus {
@@ -7151,7 +7122,7 @@ select {
71517122
top: 0;
71527123
bottom: 0;
71537124
margin: auto 0;
7154-
z-index: -1;
7125+
z-index: 0;
71557126
fill: rgba(0, 0, 0, 0.87);
71567127
}
71577128

dist/css/materialize.min.css

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)