Skip to content

Commit

Permalink
Merge branch 'release/v3.0.0-rc.17'
Browse files Browse the repository at this point in the history
  • Loading branch information
janschoenherr committed Sep 27, 2018
2 parents b2e1ef1 + 8c8060f commit 3bc3737
Show file tree
Hide file tree
Showing 57 changed files with 1,150 additions and 1,040 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Also try to search for your issue. It may have already been answered or even fix
<!-- BUG REPORT TEMPLATE -->
### UIkit version
<!-- Check if the issue is reproducible with the latest stable version. -->
3.0.0-rc.16
3.0.0-rc.17

### Browser

Expand Down
28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,33 @@
# Changelog

## 3.0.0 rc 17 (September 27, 2018)

### Added

- Dom functions support selectors

### Changed

- Viewport Height component no longer sets a `height` except for IE
- Viewport Height component no longer forces `box-sizing: border-box`
- Improve Tooltip performance
- Improve Parallax performance
- Improve Sticky performance

### Removed

- Remove `::-moz-selection` which is not needed anymore
- Remove component `init` hook
- Remove component `ready` hook

### Fixed

- Fix `UIkit.mixin()`
- Fix issue with list bullet in combination with multi column layouts
- Allow for special characters in URI hash in Scroll Component
- Height Match also sets a `height` in IE
- Slideshow sets `min-height` instead of `height`

## 3.0.0 rc 16 (September 12, 2018)

### Fixed
Expand Down
33 changes: 21 additions & 12 deletions dist/css/uikit-rtl.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! UIkit 3.0.0-rc.16 | http://www.getuikit.com | (c) 2014 - 2018 YOOtheme | MIT License */
/*! UIkit 3.0.0-rc.17 | http://www.getuikit.com | (c) 2014 - 2018 YOOtheme | MIT License */
/* ========================================================================
Component: Base
========================================================================== */
Expand Down Expand Up @@ -410,11 +410,6 @@ pre code {
}
/* Selection pseudo-element
========================================================================== */
::-moz-selection {
background: #39f;
color: #fff;
text-shadow: none;
}
::selection {
background: #39f;
color: #fff;
Expand Down Expand Up @@ -448,18 +443,24 @@ template {
/*
* Breakpoints
*/
.var-media-s::before {
.uk-breakpoint-s::before {
content: '640px';
}
.var-media-m::before {
.uk-breakpoint-m::before {
content: '960px';
}
.var-media-l::before {
.uk-breakpoint-l::before {
content: '1200px';
}
.var-media-xl::before {
.uk-breakpoint-xl::before {
content: '1600px';
}
:root {
--uk-breakpoint-s: 640px;
--uk-breakpoint-m: 960px;
--uk-breakpoint-l: 1200px;
--uk-breakpoint-xl: 1600px;
}
/* ========================================================================
Component: Link
========================================================================== */
Expand Down Expand Up @@ -741,6 +742,7 @@ a.uk-link-reset:hover,
}
/*
* Bullet
* 1. Reset display table which causes issues in combination with multi column layouts
*/
.uk-list-bullet > li {
position: relative;
Expand All @@ -756,6 +758,8 @@ a.uk-link-reset:hover,
background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%226%22%20height%3D%226%22%20viewBox%3D%220%200%206%206%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Ccircle%20fill%3D%22%23666%22%20cx%3D%223%22%20cy%3D%223%22%20r%3D%223%22%20%2F%3E%0A%3C%2Fsvg%3E");
background-repeat: no-repeat;
background-position: 50% 50%;
/* 1 */
display: block;
}
/* Size modifier
========================================================================== */
Expand Down Expand Up @@ -5624,10 +5628,15 @@ ul.uk-nav-sub {
.uk-leader-fill.uk-leader-hide::after {
display: none;
}
/* Pass fill character to JS */
.var-leader-fill::before {
/*
* Pass fill character to JS
*/
.uk-leader-fill-content::before {
content: '.';
}
:root {
--uk-leader-fill-content: .;
}
/* ========================================================================
Component: Iconnav
========================================================================== */
Expand Down
2 changes: 1 addition & 1 deletion dist/css/uikit-rtl.min.css

Large diffs are not rendered by default.

33 changes: 21 additions & 12 deletions dist/css/uikit.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! UIkit 3.0.0-rc.16 | http://www.getuikit.com | (c) 2014 - 2018 YOOtheme | MIT License */
/*! UIkit 3.0.0-rc.17 | http://www.getuikit.com | (c) 2014 - 2018 YOOtheme | MIT License */
/* ========================================================================
Component: Base
========================================================================== */
Expand Down Expand Up @@ -410,11 +410,6 @@ pre code {
}
/* Selection pseudo-element
========================================================================== */
::-moz-selection {
background: #39f;
color: #fff;
text-shadow: none;
}
::selection {
background: #39f;
color: #fff;
Expand Down Expand Up @@ -448,18 +443,24 @@ template {
/*
* Breakpoints
*/
.var-media-s::before {
.uk-breakpoint-s::before {
content: '640px';
}
.var-media-m::before {
.uk-breakpoint-m::before {
content: '960px';
}
.var-media-l::before {
.uk-breakpoint-l::before {
content: '1200px';
}
.var-media-xl::before {
.uk-breakpoint-xl::before {
content: '1600px';
}
:root {
--uk-breakpoint-s: 640px;
--uk-breakpoint-m: 960px;
--uk-breakpoint-l: 1200px;
--uk-breakpoint-xl: 1600px;
}
/* ========================================================================
Component: Link
========================================================================== */
Expand Down Expand Up @@ -741,6 +742,7 @@ a.uk-link-reset:hover,
}
/*
* Bullet
* 1. Reset display table which causes issues in combination with multi column layouts
*/
.uk-list-bullet > li {
position: relative;
Expand All @@ -756,6 +758,8 @@ a.uk-link-reset:hover,
background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%226%22%20height%3D%226%22%20viewBox%3D%220%200%206%206%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Ccircle%20fill%3D%22%23666%22%20cx%3D%223%22%20cy%3D%223%22%20r%3D%223%22%20%2F%3E%0A%3C%2Fsvg%3E");
background-repeat: no-repeat;
background-position: 50% 50%;
/* 1 */
display: block;
}
/* Size modifier
========================================================================== */
Expand Down Expand Up @@ -5624,10 +5628,15 @@ ul.uk-nav-sub {
.uk-leader-fill.uk-leader-hide::after {
display: none;
}
/* Pass fill character to JS */
.var-leader-fill::before {
/*
* Pass fill character to JS
*/
.uk-leader-fill-content::before {
content: '.';
}
:root {
--uk-leader-fill-content: .;
}
/* ========================================================================
Component: Iconnav
========================================================================== */
Expand Down
2 changes: 1 addition & 1 deletion dist/css/uikit.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/js/uikit-icons.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/js/uikit-icons.min.js

Large diffs are not rendered by default.

0 comments on commit 3bc3737

Please sign in to comment.