Skip to content

Commit 0e6d532

Browse files
committed
Merge branch 'hotfix/4.0.9' into develop
2 parents 656bcda + f3bc19a commit 0e6d532

File tree

10 files changed

+38
-8
lines changed

10 files changed

+38
-8
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## [4.0.9](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.0.9)
2+
3+
### Bug Fixes
4+
5+
- Fix overlapping sidebar navigation lists due to `max-height: 100vh`. [#668](https://github.com/mmistakes/minimal-mistakes/issues/668)
6+
17
## [4.0.8](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.0.8)
28

39
### Bug Fixes

_sass/_navigation.scss

+2-2
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,7 @@
431431
@include breakpoint(max-width ($large - 1px)) {
432432
position: relative;
433433
max-height: 0;
434-
opacity: 0;
434+
opacity: 0%;
435435
overflow: hidden;
436436
z-index: 10;
437437
-webkit-transition: 0.3s ease-in-out;
@@ -446,7 +446,7 @@
446446
.nav__list input:checked ~ .nav__items {
447447
-webkit-transition: 0.5s ease-in-out;
448448
transition: 0.5s ease-in-out;
449-
max-height: 100vh;
449+
max-height: 9999px; // exaggerate max-height to accommodate tall lists
450450
overflow: visible;
451451
opacity: 1;
452452
margin-top: 1em;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
message: wonderful theme!
2+
name: burner
3+
email: 7327e2b38683d37634ada1dfa1d9f6e7
4+
url: ''
5+
hidden: ''
6+
date: '2016-11-18T22:27:26.851Z'
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
message: 'Cool, now how do I make a splash page my default home page?'
2+
name: Brett
3+
email: 374ca0d969bee21fb740b11da4182306
4+
url: ''
5+
hidden: ''
6+
date: '2016-11-15T23:52:10.556Z'
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
message: "Simple. Save it in your site root folder as `index.md` or you can also save it in `_pages` folder with whatever name you want and set `permalink: /` in its YAML Front Matter.\r\n\r\nIf you want to see an example check [`_pages/home.md`](https://github.com/mmistakes/minimal-mistakes/blob/master/docs/_pages/home.md) used for this demo site."
2+
name: Michael Rose
3+
email: 1ce71bc10b86565464b612093d89707e
4+
url: 'https://mademistakes.com'
5+
hidden: ''
6+
date: '2016-11-16T03:07:57.173Z'

docs/_docs/18-history.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,15 @@ permalink: /docs/history/
44
excerpt: "Change log of enhancements and bug fixes made to the theme."
55
sidebar:
66
nav: docs
7-
modified: 2016-11-21T09:54:38-05:00
7+
modified: 2016-11-21T16:04:45-05:00
88
---
99

10+
## [4.0.9](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.0.9)
11+
12+
### Bug Fixes
13+
14+
- Fix overlapping sidebar navigation lists due to `max-height: 100vh`. [#668](https://github.com/mmistakes/minimal-mistakes/issues/668)
15+
1016
## [4.0.8](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.0.8)
1117

1218
### Bug Fixes

docs/_pages/home.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ header:
77
cta_label: "<i class='fa fa-download'></i> Install Now"
88
cta_url: "/docs/quick-start-guide/"
99
caption:
10-
excerpt: 'A flexible two-column Jekyll theme. Perfect for personal sites, blogs, and portfolios hosted on GitHub or your own server.<br /> <small><a href="https://github.com/mmistakes/minimal-mistakes/releases/tag/4.0.8">Latest release v4.0.8</a></small><br /><br /> {::nomarkdown}<iframe style="display: inline-block;" src="https://ghbtns.com/github-btn.html?user=mmistakes&repo=minimal-mistakes&type=star&count=true&size=large" frameborder="0" scrolling="0" width="160px" height="30px"></iframe> <iframe style="display: inline-block;" src="https://ghbtns.com/github-btn.html?user=mmistakes&repo=minimal-mistakes&type=fork&count=true&size=large" frameborder="0" scrolling="0" width="158px" height="30px"></iframe>{:/nomarkdown}'
10+
excerpt: 'A flexible two-column Jekyll theme. Perfect for personal sites, blogs, and portfolios hosted on GitHub or your own server.<br /> <small><a href="https://github.com/mmistakes/minimal-mistakes/releases/tag/4.0.9">Latest release v4.0.9</a></small><br /><br /> {::nomarkdown}<iframe style="display: inline-block;" src="https://ghbtns.com/github-btn.html?user=mmistakes&repo=minimal-mistakes&type=star&count=true&size=large" frameborder="0" scrolling="0" width="160px" height="30px"></iframe> <iframe style="display: inline-block;" src="https://ghbtns.com/github-btn.html?user=mmistakes&repo=minimal-mistakes&type=fork&count=true&size=large" frameborder="0" scrolling="0" width="158px" height="30px"></iframe>{:/nomarkdown}'
1111
feature_row:
1212
- image_path: /assets/images/mm-customizable-feature.png
1313
alt: "customizable"

docs/_sass/_navigation.scss

+2-2
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,7 @@
431431
@include breakpoint(max-width ($large - 1px)) {
432432
position: relative;
433433
max-height: 0;
434-
opacity: 0;
434+
opacity: 0%;
435435
overflow: hidden;
436436
z-index: 10;
437437
-webkit-transition: 0.3s ease-in-out;
@@ -446,7 +446,7 @@
446446
.nav__list input:checked ~ .nav__items {
447447
-webkit-transition: 0.5s ease-in-out;
448448
transition: 0.5s ease-in-out;
449-
max-height: 100vh;
449+
max-height: 9999px; // exaggerate max-height to accommodate tall lists
450450
overflow: visible;
451451
opacity: 1;
452452
margin-top: 1em;

minimal-mistakes-jekyll.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Gem::Specification.new do |spec|
44
spec.name = "minimal-mistakes-jekyll"
5-
spec.version = "4.0.8"
5+
spec.version = "4.0.9"
66
spec.authors = ["Michael Rose"]
77

88
spec.summary = %q{A flexible two-column Jekyll theme.}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "minimal-mistakes",
3-
"version": "4.0.8",
3+
"version": "4.0.9",
44
"description": "Minimal Mistakes Jekyll theme npm build scripts",
55
"repository": {
66
"type": "git",

0 commit comments

Comments
 (0)