Skip to content

Commit

Permalink
Fix Font Awesome icon color in various skins
Browse files Browse the repository at this point in the history
  • Loading branch information
mmistakes committed Nov 2, 2020
1 parent 1321ad7 commit 7cfb4bf
Show file tree
Hide file tree
Showing 8 changed files with 29 additions and 7 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## Unreleased

### Bug Fixes

- Fix Font Awesome icon color in `contrast`, `dark`, `mint`, `neon`, `plum`, and `sunrise` skins. [#2724](https://github.com/mmistakes/minimal-mistakes/issues/2724)

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

### Bug Fixes
Expand Down
3 changes: 2 additions & 1 deletion _sass/minimal-mistakes/skins/_contrast.scss
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ $base0f: #b18a3d !default;
color: #fff !important; // override
}

.page__footer-follow .social-icons .svg-inline--fa {
.page__footer-follow .social-icons i,
.page__footer-follow .social-icons .svg-inline--fa {
color: inherit;
}
4 changes: 3 additions & 1 deletion _sass/minimal-mistakes/skins/_dark.scss
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,10 @@ $masthead-link-color: $text-color !default;
$masthead-link-color-hover: mix(#000, $text-color, 20%) !default;
$navicon-link-color-hover: mix(#000, $background-color, 30%) !default;

.author__urls.social-icons i,
.author__urls.social-icons .svg-inline--fa,
.page__footer-follow .social-icons .svg-inline--fa {
.page__footer-follow .social-icons i,
.page__footer-follow .social-icons .svg-inline--fa {
color: inherit;
}

Expand Down
1 change: 1 addition & 0 deletions _sass/minimal-mistakes/skins/_mint.scss
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ $navicon-link-color-hover: mix(#fff, $text-color, 80%) !default;
color: #fff !important; // override
}

.page__footer-follow .social-icons i,
.page__footer-follow .social-icons .svg-inline--fa {
color: inherit;
}
4 changes: 3 additions & 1 deletion _sass/minimal-mistakes/skins/_neon.scss
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,10 @@ $base0d: #3777e6 !default;
$base0e: #ad00a1 !default;
$base0f: #cc6633 !default;

.author__urls.social-icons i,
.author__urls.social-icons .svg-inline--fa,
.page__footer-follow .social-icons .svg-inline--fa {
.page__footer-follow .social-icons i,
.page__footer-follow .social-icons .svg-inline--fa {
color: inherit;
}

Expand Down
4 changes: 3 additions & 1 deletion _sass/minimal-mistakes/skins/_plum.scss
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,10 @@ $base0d: #3777e6 !default;
$base0e: #ad00a1 !default;
$base0f: #cc6633 !default;

.author__urls.social-icons i,
.author__urls.social-icons .svg-inline--fa,
.page__footer-follow .social-icons .svg-inline--fa {
.page__footer-follow .social-icons i,
.page__footer-follow .social-icons .svg-inline--fa {
color: inherit;
}

Expand Down
6 changes: 4 additions & 2 deletions _sass/minimal-mistakes/skins/_sunrise.scss
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,9 @@ $base0d: #81a2be !default;
$base0e: #b294bb !default;
$base0f: #a3685a !default;

.author__urls.social-icons .fa,
.page__footer-follow .social-icons .svg-inline--fa {
.author__urls.social-icons i,
.author__urls.social-icons .svg-inline--fa,
.page__footer-follow .social-icons i,
.page__footer-follow .social-icons .svg-inline--fa {
color: inherit;
}
8 changes: 7 additions & 1 deletion docs/_docs/18-history.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,16 @@ permalink: /docs/history/
excerpt: "Change log of enhancements and bug fixes made to the theme."
sidebar:
nav: docs
last_modified_at: 2020-11-02T11:34:40-05:00
last_modified_at:2020-11-02T11:53:43-05:00
toc: false
---

## Unreleased

### Bug Fixes

- Fix Font Awesome icon color in `contrast`, `dark`, `mint`, `neon`, `plum`, and `sunrise` skins. [#2724](https://github.com/mmistakes/minimal-mistakes/issues/2724)

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

### Bug Fixes
Expand Down

0 comments on commit 7cfb4bf

Please sign in to comment.