Skip to content

Commit 29b2c92

Browse files
committedAug 2, 2019
Fix overlapping links in post link type
Close mmistakes#2222
1 parent beb9c3e commit 29b2c92

File tree

3 files changed

+18
-1
lines changed

3 files changed

+18
-1
lines changed
 

‎CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44

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

7+
### Bug Fixes
8+
9+
- Fix overlapping links (linked to and post's permalink) in post link type. [#2222](https://github.com/mmistakes/minimal-mistakes/issues/2222)
10+
711
## [4.16.5](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.16.5)
812

913
### Enhancements

‎_sass/minimal-mistakes/_archive.scss

+9
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,15 @@
2020

2121
.archive__item {
2222
position: relative;
23+
24+
a {
25+
position: relative;
26+
z-index: 10;
27+
}
28+
29+
a[rel="permalink"] {
30+
position: static;
31+
}
2332
}
2433

2534
.archive__subtitle {

‎docs/_docs/18-history.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ permalink: /docs/history/
55
excerpt: "Change log of enhancements and bug fixes made to the theme."
66
sidebar:
77
nav: docs
8-
last_modified_at: 2019-07-24T10:09:19-04:00
8+
last_modified_at: 2019-08-02T12:31:31-04:00
99
toc: false
1010
---
1111

@@ -15,6 +15,10 @@ toc: false
1515

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

18+
### Bug Fixes
19+
20+
- Fix overlapping links (linked to and post's permalink) in post link type. [#2222](https://github.com/mmistakes/minimal-mistakes/issues/2222)
21+
1822
## [4.16.5](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.16.5)
1923

2024
### Enhancements

0 commit comments

Comments
 (0)
Please sign in to comment.