Fix "follow" links z-index
order to avoid overlapping issues
Close #1167
This commit is contained in:
parent
91f38f4450
commit
173f184047
4 changed files with 17 additions and 5 deletions
|
@ -11,6 +11,7 @@
|
||||||
## Bug Fixes
|
## Bug Fixes
|
||||||
|
|
||||||
- Fix positioning of sidebar table of contents when using `layout: splash`. [#1169](https://github.com/mmistakes/minimal-mistakes/issues/1169)
|
- Fix positioning of sidebar table of contents when using `layout: splash`. [#1169](https://github.com/mmistakes/minimal-mistakes/issues/1169)
|
||||||
|
- Fix "follow" links `z-index` order to avoid overlapping issues. [#1167](https://github.com/mmistakes/minimal-mistakes/issues/1167)
|
||||||
|
|
||||||
### Maintenance
|
### Maintenance
|
||||||
|
|
||||||
|
|
|
@ -7,11 +7,16 @@
|
||||||
========================================================================== */
|
========================================================================== */
|
||||||
|
|
||||||
.sidebar {
|
.sidebar {
|
||||||
|
@include clearfix();
|
||||||
|
margin-bottom: 1em;
|
||||||
-webkit-transform: translate3d(0, 0 , 0);
|
-webkit-transform: translate3d(0, 0 , 0);
|
||||||
transform: translate3d(0, 0 , 0);
|
transform: translate3d(0, 0 , 0);
|
||||||
|
|
||||||
@include clearfix();
|
@include breakpoint(max-width $large) {
|
||||||
margin-bottom: 1em;
|
/* fix z-index order of follow links */
|
||||||
|
position: relative;
|
||||||
|
z-index: 10;
|
||||||
|
}
|
||||||
|
|
||||||
@include breakpoint($large) {
|
@include breakpoint($large) {
|
||||||
float: left;
|
float: left;
|
||||||
|
|
|
@ -4,7 +4,7 @@ permalink: /docs/history/
|
||||||
excerpt: "Change log of enhancements and bug fixes made to the theme."
|
excerpt: "Change log of enhancements and bug fixes made to the theme."
|
||||||
sidebar:
|
sidebar:
|
||||||
nav: docs
|
nav: docs
|
||||||
last_modified_at: 2017-08-09T08:30:18-04:00
|
last_modified_at: 2017-08-09T09:02:47-04:00
|
||||||
---
|
---
|
||||||
|
|
||||||
## Unreleased
|
## Unreleased
|
||||||
|
@ -20,6 +20,7 @@ last_modified_at: 2017-08-09T08:30:18-04:00
|
||||||
## Bug Fixes
|
## Bug Fixes
|
||||||
|
|
||||||
- Fix positioning of sidebar table of contents when using `layout: splash`. [#1169](https://github.com/mmistakes/minimal-mistakes/issues/1169)
|
- Fix positioning of sidebar table of contents when using `layout: splash`. [#1169](https://github.com/mmistakes/minimal-mistakes/issues/1169)
|
||||||
|
- Fix "follow" links `z-index` order to avoid overlapping issues. [#1167](https://github.com/mmistakes/minimal-mistakes/issues/1167)
|
||||||
|
|
||||||
### Maintenance
|
### Maintenance
|
||||||
|
|
||||||
|
|
|
@ -7,11 +7,16 @@
|
||||||
========================================================================== */
|
========================================================================== */
|
||||||
|
|
||||||
.sidebar {
|
.sidebar {
|
||||||
|
@include clearfix();
|
||||||
|
margin-bottom: 1em;
|
||||||
-webkit-transform: translate3d(0, 0 , 0);
|
-webkit-transform: translate3d(0, 0 , 0);
|
||||||
transform: translate3d(0, 0 , 0);
|
transform: translate3d(0, 0 , 0);
|
||||||
|
|
||||||
@include clearfix();
|
@include breakpoint(max-width $large) {
|
||||||
margin-bottom: 1em;
|
/* fix z-index order of follow links */
|
||||||
|
position: relative;
|
||||||
|
z-index: 10;
|
||||||
|
}
|
||||||
|
|
||||||
@include breakpoint($large) {
|
@include breakpoint($large) {
|
||||||
float: left;
|
float: left;
|
||||||
|
|
Loading…
Reference in a new issue