Truncate archive item titles' that overflow with an ellipsis
Fixes #1213
This commit is contained in:
parent
2080469952
commit
f9132d8998
4 changed files with 8 additions and 2 deletions
|
@ -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
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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;
|
Loading…
Reference in a new issue