diff --git a/CHANGELOG.md b/CHANGELOG.md index b13eb1dc..c221b2e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,7 @@ - Add note to Quick-Start Guide about GitHub Pages hosting alternatives that allow 3rd party gem themes and Jekyll plugins. - Add note to configuration documentation about Cloudflare minification as an alternative to `layout: compress`. [#1217](https://github.com/mmistakes/minimal-mistakes/pull/1217) - Show 4 latest posts in "You May Also Enjoy" module when `related: true` and no related posts are found due to `lsi` ([latent semantic indexing](https://en.wikipedia.org/wiki/Latent_semantic_analysis#Latent_semantic_indexing)) being disabled on GitHub Pages. [#554](https://github.com/mmistakes/minimal-mistakes/issues/554) +- Truncate archive item titles' that overflow with an ellipsis. [#1213] ### Bug Fixes @@ -876,4 +877,4 @@ - Google Analytics, Google Authorship, webmaster verifies, and Twitter card meta are now optional. -## [1.0.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/v1.0.1) +## [1.0.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/v1.0.1) \ No newline at end of file diff --git a/_sass/minimal-mistakes/_archive.scss b/_sass/minimal-mistakes/_archive.scss index 27f2871f..d6ab5f66 100644 --- a/_sass/minimal-mistakes/_archive.scss +++ b/_sass/minimal-mistakes/_archive.scss @@ -37,6 +37,8 @@ .archive__item-title { margin-bottom: 0.25em; font-family: $sans-serif-narrow; + overflow: hidden; + text-overflow: ellipsis; a + a { opacity: 0.5; diff --git a/docs/_docs/18-history.md b/docs/_docs/18-history.md index 76888604..787fb395 100644 --- a/docs/_docs/18-history.md +++ b/docs/_docs/18-history.md @@ -4,7 +4,7 @@ permalink: /docs/history/ excerpt: "Change log of enhancements and bug fixes made to the theme." sidebar: nav: docs -last_modified_at: 2017-09-05T12:58:56-04:00 +last_modified_at: 2017-09-06T15:01:51-04:00 --- ## Unreleased @@ -21,6 +21,7 @@ last_modified_at: 2017-09-05T12:58:56-04:00 - Add note to Quick-Start Guide about GitHub Pages hosting alternatives that allow 3rd party gem themes and Jekyll plugins. - Add note to configuration documentation about Cloudflare minification as an alternative to `layout: compress`. [#1217](https://github.com/mmistakes/minimal-mistakes/pull/1217) - Show 4 latest posts in "You May Also Enjoy" module when `related: true` and no related posts are found due to `lsi` ([latent semantic indexing](https://en.wikipedia.org/wiki/Latent_semantic_analysis#Latent_semantic_indexing)) being disabled on GitHub Pages. [#554](https://github.com/mmistakes/minimal-mistakes/issues/554) +- Truncate archive item titles' that overflow with an ellipsis. [#1213] ### Bug Fixes diff --git a/docs/_sass/minimal-mistakes/_archive.scss b/docs/_sass/minimal-mistakes/_archive..scss similarity index 99% rename from docs/_sass/minimal-mistakes/_archive.scss rename to docs/_sass/minimal-mistakes/_archive..scss index 27f2871f..d6ab5f66 100644 --- a/docs/_sass/minimal-mistakes/_archive.scss +++ b/docs/_sass/minimal-mistakes/_archive..scss @@ -37,6 +37,8 @@ .archive__item-title { margin-bottom: 0.25em; font-family: $sans-serif-narrow; + overflow: hidden; + text-overflow: ellipsis; a + a { opacity: 0.5;