Skip to content

Commit 708e235

Browse files
committed
1.0.0-beta Release
1 parent 0644cbd commit 708e235

File tree

11 files changed

+954
-642
lines changed

11 files changed

+954
-642
lines changed

CHANGELOG.md

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

5+
## 1.0.0-beta (March 21st, 2018)
6+
- Autocomplete
7+
- Now uses dropdown
8+
9+
- Carousel
10+
- Added numVisible option
11+
12+
- Collapsible
13+
- Added keyboard support
14+
15+
- Dropdown
16+
- Fixed scrolling dropdown bug on touch devices
17+
18+
- Javascript Initialization
19+
- Added AutoInit function
20+
21+
- Modals
22+
- Focus now stays within open modal
23+
24+
- Pickers
25+
- Standardized action buttons to match those on android
26+
- Added support for date and time input types
27+
- **fromnow renamed to fromNow**
28+
29+
- Select
30+
- Dropdown scrolls to selected option
31+
32+
- Sidenav
33+
- Now detects vertical scrolling
34+
35+
- Tabs
36+
- Fixed tab preselection on swipeable tabs
37+
38+
- TapTarget
39+
- **Reverted name change from FeatureDiscovery**
40+
41+
- Tooltips
42+
- Added keyboard support
43+
44+
545
## 1.0.0-alpha.4 (February 18th, 2018)
646
- Badge
747
- Fixed display issue when used in a table

dist/css/materialize.css

Lines changed: 21 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* Materialize v1.0.0-alpha.4 (http://materializecss.com)
2+
* Materialize v1.0.0-beta (http://materializecss.com)
33
* Copyright 2014-2017 Materialize
44
* MIT License (https://raw.githubusercontent.com/Dogfalo/materialize/master/LICENSE)
55
*/
@@ -4903,8 +4903,9 @@ small {
49034903
}
49044904

49054905
.card .card-action {
4906-
position: relative;
4906+
background-color: inherit;
49074907
border-top: 1px solid rgba(160, 160, 160, 0.2);
4908+
position: relative;
49084909
padding: 16px 24px;
49094910
}
49104911

@@ -5083,8 +5084,13 @@ small {
50835084
font-size: 14px;
50845085
text-overflow: ellipsis;
50855086
overflow: hidden;
5086-
-webkit-transition: color .28s ease;
5087-
transition: color .28s ease;
5087+
-webkit-transition: color .28s ease, background-color .28s ease;
5088+
transition: color .28s ease, background-color .28s ease;
5089+
}
5090+
5091+
.tabs .tab a:focus, .tabs .tab a:focus.active {
5092+
background-color: rgba(246, 178, 181, 0.2);
5093+
outline: none;
50885094
}
50895095

50905096
.tabs .tab a:hover, .tabs .tab a.active {
@@ -6524,6 +6530,14 @@ textarea.materialize-textarea + label:after, .select-wrapper + label:after {
65246530
transform-origin: 0 0;
65256531
}
65266532

6533+
.input-field > input[type=date]:not(.browser-default) + label,
6534+
.input-field > input[type=time]:not(.browser-default) + label {
6535+
-webkit-transform: translateY(-14px) scale(0.8);
6536+
transform: translateY(-14px) scale(0.8);
6537+
-webkit-transform-origin: 0 0;
6538+
transform-origin: 0 0;
6539+
}
6540+
65276541
.input-field .helper-text {
65286542
position: relative;
65296543
min-height: 18px;
@@ -6585,6 +6599,8 @@ textarea.materialize-textarea + label:after, .select-wrapper + label:after {
65856599
.input-field input[type=search] {
65866600
display: block;
65876601
line-height: inherit;
6602+
-webkit-transition: .3s background-color;
6603+
transition: .3s background-color;
65886604
}
65896605

65906606
.nav-wrapper .input-field input[type=search] {
@@ -6661,13 +6677,6 @@ textarea.materialize-textarea {
66616677
}
66626678

66636679
/* Autocomplete */
6664-
.autocomplete-content {
6665-
margin-top: -8px;
6666-
margin-bottom: 8px;
6667-
opacity: 1;
6668-
position: static;
6669-
}
6670-
66716680
.autocomplete-content li .highlight {
66726681
color: #444;
66736682
}
@@ -7123,17 +7132,6 @@ select {
71237132
height: 3rem;
71247133
}
71257134

7126-
.input-field select {
7127-
display: block;
7128-
position: absolute;
7129-
width: 0;
7130-
pointer-events: none;
7131-
height: 0;
7132-
bottom: 0;
7133-
left: 0;
7134-
opacity: 0;
7135-
}
7136-
71377135
.select-label {
71387136
position: absolute;
71397137
}
@@ -8786,6 +8784,7 @@ input[type=range].focused:focus:not(.active)::-ms-thumb {
87868784
justify-content: space-between;
87878785
}
87888786

8787+
.datepicker-cancel,
87898788
.datepicker-clear,
87908789
.datepicker-today,
87918790
.datepicker-done {

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)