diff --git a/CHANGELOG.md b/CHANGELOG.md index cdd361b9..4f76f355 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## [4.0.9](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.0.9) + +### Bug Fixes + +- Fix overlapping sidebar navigation lists due to `max-height: 100vh`. [#668](https://github.com/mmistakes/minimal-mistakes/issues/668) + ## [4.0.8](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.0.8) ### Bug Fixes diff --git a/_sass/_navigation.scss b/_sass/_navigation.scss index 08ba30e3..a5b30144 100644 --- a/_sass/_navigation.scss +++ b/_sass/_navigation.scss @@ -431,7 +431,7 @@ @include breakpoint(max-width ($large - 1px)) { position: relative; max-height: 0; - opacity: 0; + opacity: 0%; overflow: hidden; z-index: 10; -webkit-transition: 0.3s ease-in-out; @@ -446,7 +446,7 @@ .nav__list input:checked ~ .nav__items { -webkit-transition: 0.5s ease-in-out; transition: 0.5s ease-in-out; - max-height: 100vh; + max-height: 9999px; // exaggerate max-height to accommodate tall lists overflow: visible; opacity: 1; margin-top: 1em; diff --git a/docs/_data/comments/gemified-theme-beta/comment-1479508047505.yml b/docs/_data/comments/gemified-theme-beta/comment-1479508047505.yml new file mode 100644 index 00000000..61feff3c --- /dev/null +++ b/docs/_data/comments/gemified-theme-beta/comment-1479508047505.yml @@ -0,0 +1,6 @@ +message: wonderful theme! +name: burner +email: 7327e2b38683d37634ada1dfa1d9f6e7 +url: '' +hidden: '' +date: '2016-11-18T22:27:26.851Z' diff --git a/docs/_data/comments/layout-header-image-text-readability/comment-1479253931238.yml b/docs/_data/comments/layout-header-image-text-readability/comment-1479253931238.yml new file mode 100644 index 00000000..130aa6e3 --- /dev/null +++ b/docs/_data/comments/layout-header-image-text-readability/comment-1479253931238.yml @@ -0,0 +1,6 @@ +message: 'Cool, now how do I make a splash page my default home page?' +name: Brett +email: 374ca0d969bee21fb740b11da4182306 +url: '' +hidden: '' +date: '2016-11-15T23:52:10.556Z' diff --git a/docs/_data/comments/layout-header-image-text-readability/comment-1479265677846.yml b/docs/_data/comments/layout-header-image-text-readability/comment-1479265677846.yml new file mode 100644 index 00000000..b485f153 --- /dev/null +++ b/docs/_data/comments/layout-header-image-text-readability/comment-1479265677846.yml @@ -0,0 +1,6 @@ +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." +name: Michael Rose +email: 1ce71bc10b86565464b612093d89707e +url: 'https://mademistakes.com' +hidden: '' +date: '2016-11-16T03:07:57.173Z' diff --git a/docs/_docs/18-history.md b/docs/_docs/18-history.md index 14a87ab9..a6738a38 100644 --- a/docs/_docs/18-history.md +++ b/docs/_docs/18-history.md @@ -4,9 +4,15 @@ permalink: /docs/history/ excerpt: "Change log of enhancements and bug fixes made to the theme." sidebar: nav: docs -modified: 2016-11-21T09:54:38-05:00 +modified: 2016-11-21T16:04:45-05:00 --- +## [4.0.9](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.0.9) + +### Bug Fixes + +- Fix overlapping sidebar navigation lists due to `max-height: 100vh`. [#668](https://github.com/mmistakes/minimal-mistakes/issues/668) + ## [4.0.8](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.0.8) ### Bug Fixes diff --git a/docs/_pages/home.md b/docs/_pages/home.md index 982f2fe8..f1dd3c5d 100644 --- a/docs/_pages/home.md +++ b/docs/_pages/home.md @@ -7,7 +7,7 @@ header: cta_label: " Install Now" cta_url: "/docs/quick-start-guide/" caption: -excerpt: 'A flexible two-column Jekyll theme. Perfect for personal sites, blogs, and portfolios hosted on GitHub or your own server.
Latest release v4.0.8

{::nomarkdown} {:/nomarkdown}' +excerpt: 'A flexible two-column Jekyll theme. Perfect for personal sites, blogs, and portfolios hosted on GitHub or your own server.
Latest release v4.0.9

{::nomarkdown} {:/nomarkdown}' feature_row: - image_path: /assets/images/mm-customizable-feature.png alt: "customizable" diff --git a/docs/_sass/_navigation.scss b/docs/_sass/_navigation.scss index 08ba30e3..a5b30144 100644 --- a/docs/_sass/_navigation.scss +++ b/docs/_sass/_navigation.scss @@ -431,7 +431,7 @@ @include breakpoint(max-width ($large - 1px)) { position: relative; max-height: 0; - opacity: 0; + opacity: 0%; overflow: hidden; z-index: 10; -webkit-transition: 0.3s ease-in-out; @@ -446,7 +446,7 @@ .nav__list input:checked ~ .nav__items { -webkit-transition: 0.5s ease-in-out; transition: 0.5s ease-in-out; - max-height: 100vh; + max-height: 9999px; // exaggerate max-height to accommodate tall lists overflow: visible; opacity: 1; margin-top: 1em; diff --git a/minimal-mistakes-jekyll.gemspec b/minimal-mistakes-jekyll.gemspec index bf188886..51c2eaeb 100644 --- a/minimal-mistakes-jekyll.gemspec +++ b/minimal-mistakes-jekyll.gemspec @@ -2,7 +2,7 @@ Gem::Specification.new do |spec| spec.name = "minimal-mistakes-jekyll" - spec.version = "4.0.8" + spec.version = "4.0.9" spec.authors = ["Michael Rose"] spec.summary = %q{A flexible two-column Jekyll theme.} diff --git a/package.json b/package.json index db0bfa35..79e89fd7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "minimal-mistakes", - "version": "4.0.8", + "version": "4.0.9", "description": "Minimal Mistakes Jekyll theme npm build scripts", "repository": { "type": "git",