Skip to content

Commit

Permalink
Fix overlapping links in post link type
Browse files Browse the repository at this point in the history
Close #2222
  • Loading branch information
mmistakes committed Aug 2, 2019
1 parent bd2d947 commit a2255d0
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@

- Allow Markdown in author bio. [#2215](https://github.com/mmistakes/minimal-mistakes/pull/2215)

### Bug Fixes

- Fix overlapping links (linked to and post's permalink) in post link type. [#2222](https://github.com/mmistakes/minimal-mistakes/issues/2222)

## [4.16.5](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.16.5)

### Enhancements
Expand Down
9 changes: 9 additions & 0 deletions _sass/minimal-mistakes/_archive.scss
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,15 @@

.archive__item {
position: relative;

a {
position: relative;
z-index: 10;
}

a[rel="permalink"] {
position: static;
}
}

.archive__subtitle {
Expand Down
6 changes: 5 additions & 1 deletion docs/_docs/18-history.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ permalink: /docs/history/
excerpt: "Change log of enhancements and bug fixes made to the theme."
sidebar:
nav: docs
last_modified_at: 2019-07-24T10:09:19-04:00
last_modified_at: 2019-08-02T12:31:31-04:00
toc: false
---

Expand All @@ -15,6 +15,10 @@ toc: false

- Allow Markdown in author bio. [#2215](https://github.com/mmistakes/minimal-mistakes/pull/2215)

### Bug Fixes

- Fix overlapping links (linked to and post's permalink) in post link type. [#2222](https://github.com/mmistakes/minimal-mistakes/issues/2222)

## [4.16.5](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.16.5)

### Enhancements
Expand Down

0 comments on commit a2255d0

Please sign in to comment.