Skip to content

Commit

Permalink
1.0.0-beta Release
Browse files Browse the repository at this point in the history
  • Loading branch information
acburst committed Mar 22, 2018
1 parent 0644cbd commit 708e235
Show file tree
Hide file tree
Showing 11 changed files with 954 additions and 642 deletions.
40 changes: 40 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,46 @@ Changelog
=======
Bolded styling surrounded by emojis indicates a breaking change.

## 1.0.0-beta (March 21st, 2018)
- Autocomplete
- Now uses dropdown

- Carousel
- Added numVisible option

- Collapsible
- Added keyboard support

- Dropdown
- Fixed scrolling dropdown bug on touch devices

- Javascript Initialization
- Added AutoInit function

- Modals
- Focus now stays within open modal

- Pickers
- Standardized action buttons to match those on android
- Added support for date and time input types
- **fromnow renamed to fromNow**

- Select
- Dropdown scrolls to selected option

- Sidenav
- Now detects vertical scrolling

- Tabs
- Fixed tab preselection on swipeable tabs

- TapTarget
- **Reverted name change from FeatureDiscovery**

- Tooltips
- Added keyboard support


## 1.0.0-alpha.4 (February 18th, 2018)
- Badge
- Fixed display issue when used in a table
Expand Down
43 changes: 21 additions & 22 deletions dist/css/materialize.css
@@ -1,5 +1,5 @@
/*!
* Materialize v1.0.0-alpha.4 (http://materializecss.com)
* Materialize v1.0.0-beta (http://materializecss.com)
* Copyright 2014-2017 Materialize
* MIT License (https://raw.githubusercontent.com/Dogfalo/materialize/master/LICENSE)
*/
Expand Down Expand Up @@ -4903,8 +4903,9 @@ small {
}

.card .card-action {
position: relative;
background-color: inherit;
border-top: 1px solid rgba(160, 160, 160, 0.2);
position: relative;
padding: 16px 24px;
}

Expand Down Expand Up @@ -5083,8 +5084,13 @@ small {
font-size: 14px;
text-overflow: ellipsis;
overflow: hidden;
-webkit-transition: color .28s ease;
transition: color .28s ease;
-webkit-transition: color .28s ease, background-color .28s ease;
transition: color .28s ease, background-color .28s ease;
}

.tabs .tab a:focus, .tabs .tab a:focus.active {
background-color: rgba(246, 178, 181, 0.2);
outline: none;
}

.tabs .tab a:hover, .tabs .tab a.active {
Expand Down Expand Up @@ -6524,6 +6530,14 @@ textarea.materialize-textarea + label:after, .select-wrapper + label:after {
transform-origin: 0 0;
}

.input-field > input[type=date]:not(.browser-default) + label,
.input-field > input[type=time]:not(.browser-default) + label {
-webkit-transform: translateY(-14px) scale(0.8);
transform: translateY(-14px) scale(0.8);
-webkit-transform-origin: 0 0;
transform-origin: 0 0;
}

.input-field .helper-text {
position: relative;
min-height: 18px;
Expand Down Expand Up @@ -6585,6 +6599,8 @@ textarea.materialize-textarea + label:after, .select-wrapper + label:after {
.input-field input[type=search] {
display: block;
line-height: inherit;
-webkit-transition: .3s background-color;
transition: .3s background-color;
}

.nav-wrapper .input-field input[type=search] {
Expand Down Expand Up @@ -6661,13 +6677,6 @@ textarea.materialize-textarea {
}

/* Autocomplete */
.autocomplete-content {
margin-top: -8px;
margin-bottom: 8px;
opacity: 1;
position: static;
}

.autocomplete-content li .highlight {
color: #444;
}
Expand Down Expand Up @@ -7123,17 +7132,6 @@ select {
height: 3rem;
}

.input-field select {
display: block;
position: absolute;
width: 0;
pointer-events: none;
height: 0;
bottom: 0;
left: 0;
opacity: 0;
}

.select-label {
position: absolute;
}
Expand Down Expand Up @@ -8786,6 +8784,7 @@ input[type=range].focused:focus:not(.active)::-ms-thumb {
justify-content: space-between;
}

.datepicker-cancel,
.datepicker-clear,
.datepicker-today,
.datepicker-done {
Expand Down
6 changes: 3 additions & 3 deletions dist/css/materialize.min.css

Large diffs are not rendered by default.

0 comments on commit 708e235

Please sign in to comment.