Skip to content

Commit

Permalink
Merge branch 'release/v3.4.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
janschoenherr committed May 5, 2020
2 parents e34a1fc + b4cccd8 commit 19d25e9
Show file tree
Hide file tree
Showing 20 changed files with 415 additions and 286 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug-report.md
Expand Up @@ -21,7 +21,7 @@ Please open an issues only for a bug report or feature request. Make sure no one
### UIkit Version

*Check if the issue is reproducible with the latest stable version.*
3.4.2
3.4.3

### Actual Behavior

Expand Down
16 changes: 16 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,21 @@
# Changelog

## 3.4.3 (May 5, 2020)

### Added

- Add list collapse modifier

### Changed

- Improve attribute state observer performance

### Fixed

- Fix Search Icon with large modifier
- Fix Grid divider in RTL mode
- Fix Slider component responsiveness

## 3.4.2 (April 20, 2020)

### Added
Expand Down
19 changes: 14 additions & 5 deletions dist/css/uikit-rtl.css
@@ -1,4 +1,4 @@
/*! UIkit 3.4.2 | https://www.getuikit.com | (c) 2014 - 2020 YOOtheme | MIT License */
/*! UIkit 3.4.3 | https://www.getuikit.com | (c) 2014 - 2020 YOOtheme | MIT License */
/* ========================================================================
Component: Base
========================================================================== */
Expand Down Expand Up @@ -820,24 +820,33 @@ a.uk-link-reset,
.uk-list-large > li > ul {
margin-top: 20px;
}
.uk-list-collapse > li:nth-child(n+2),
.uk-list-collapse > li > ul {
margin-top: 0;
}
/*
* Divider
*/
.uk-list-large.uk-list-divider > li:nth-child(n+2) {
margin-top: 20px;
padding-top: 20px;
}
.uk-list-collapse.uk-list-divider > li:nth-child(n+2) {
margin-top: 0;
padding-top: 0;
}
/*
* Striped
*/
.uk-list-large.uk-list-striped > li {
padding: 20px 10px;
}
.uk-list-large.uk-list-striped > li:nth-of-type(odd) {
border-top: 1px solid #e5e5e5;
border-bottom: 1px solid #e5e5e5;
.uk-list-collapse.uk-list-striped > li {
padding-top: 0;
padding-bottom: 0;
}
.uk-list-large.uk-list-striped > li:nth-child(n+2) {
.uk-list-large.uk-list-striped > li:nth-child(n+2),
.uk-list-collapse.uk-list-striped > li:nth-child(n+2) {
margin-top: 0;
}
/* ========================================================================
Expand Down
2 changes: 1 addition & 1 deletion dist/css/uikit-rtl.min.css

Large diffs are not rendered by default.

19 changes: 14 additions & 5 deletions dist/css/uikit.css
@@ -1,4 +1,4 @@
/*! UIkit 3.4.2 | https://www.getuikit.com | (c) 2014 - 2020 YOOtheme | MIT License */
/*! UIkit 3.4.3 | https://www.getuikit.com | (c) 2014 - 2020 YOOtheme | MIT License */
/* ========================================================================
Component: Base
========================================================================== */
Expand Down Expand Up @@ -820,24 +820,33 @@ a.uk-link-reset,
.uk-list-large > li > ul {
margin-top: 20px;
}
.uk-list-collapse > li:nth-child(n+2),
.uk-list-collapse > li > ul {
margin-top: 0;
}
/*
* Divider
*/
.uk-list-large.uk-list-divider > li:nth-child(n+2) {
margin-top: 20px;
padding-top: 20px;
}
.uk-list-collapse.uk-list-divider > li:nth-child(n+2) {
margin-top: 0;
padding-top: 0;
}
/*
* Striped
*/
.uk-list-large.uk-list-striped > li {
padding: 20px 10px;
}
.uk-list-large.uk-list-striped > li:nth-of-type(odd) {
border-top: 1px solid #e5e5e5;
border-bottom: 1px solid #e5e5e5;
.uk-list-collapse.uk-list-striped > li {
padding-top: 0;
padding-bottom: 0;
}
.uk-list-large.uk-list-striped > li:nth-child(n+2) {
.uk-list-large.uk-list-striped > li:nth-child(n+2),
.uk-list-collapse.uk-list-striped > li:nth-child(n+2) {
margin-top: 0;
}
/* ========================================================================
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 19d25e9

Please sign in to comment.