Skip to content

Commit

Permalink
Fix .masthead and .page__footer overlapping full screen video ele…
Browse files Browse the repository at this point in the history
…ments.

- Close mmistakes#933
  • Loading branch information
mmistakes committed Apr 5, 2017
1 parent bb65049 commit 4ecc32c
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@

### Bug Fixes

- Fix `.masthead` and `.page__footer` overlapping full screen video elements. [#933](https://github.com/mmistakes/minimal-mistakes/issues/933)
- Correctly show Related Posts heading when UI Text data file is omitted and `related: true` in YAML Front Matter. [#901](https://github.com/mmistakes/minimal-mistakes/pull/901)

## [4.3.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.3.0)
Expand Down
8 changes: 7 additions & 1 deletion _sass/_utilities.scss
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,7 @@ a.reversefootnote {

/*
Responsive Video Embed
========================================================================== */
========================================================================== */

.responsive-video-container {
position: relative;
Expand All @@ -504,3 +504,9 @@ a.reversefootnote {
}
}

// full screen video fixes
:-webkit-full-screen-ancestor {
.masthead,
.page__footer {
position: static;
}
3 changes: 2 additions & 1 deletion docs/_docs/18-history.md
Original file line number Diff line number Diff line change
Expand Up @@ -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-04-04T12:47:59-04:00
last_modified_at: 2017-04-05T12:40:09-04:00
---

## Unreleased
Expand All @@ -24,6 +24,7 @@ last_modified_at: 2017-04-04T12:47:59-04:00

### Bug Fixes

- Fix `.masthead` and `.page__footer` overlapping full screen video elements. [#933](https://github.com/mmistakes/minimal-mistakes/issues/933)
- Correctly show Related Posts heading when UI Text data file is omitted and `related: true` in YAML Front Matter. [#901](https://github.com/mmistakes/minimal-mistakes/pull/901)

## [4.3.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.3.0)
Expand Down
8 changes: 7 additions & 1 deletion docs/_sass/_utilities.scss
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,7 @@ a.reversefootnote {

/*
Responsive Video Embed
========================================================================== */
========================================================================== */

.responsive-video-container {
position: relative;
Expand All @@ -504,3 +504,9 @@ a.reversefootnote {
}
}

// full screen video fixes
:-webkit-full-screen-ancestor {
.masthead,
.page__footer {
position: static;
}

0 comments on commit 4ecc32c

Please sign in to comment.