Skip to content

Commit d84c5b5

Browse files
committed
Closes academicpages#1917 with with icon, FA bump to 6.5.2
1 parent fb28163 commit d84c5b5

22 files changed

+37
-484
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# Ignore the contents of the _site directory
22
_site/
33

4+
# Ignore the directory for local files during development
5+
local/
6+
47
# Ignore the Gemfile that is generated
58
Gemfile.lock
69

_config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ author:
6464
steam : # Username
6565
telegram : # URL
6666
tumblr : # Username
67-
twitter : "UniofOxford" # Replace this with your X / Twitter handle
67+
twitter : # Username for X / Twitter
6868
vine : # Username
6969
weibo : # Username
7070
wikipedia : # Username

_includes/author-profile.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ <h3 class="author__name">{{ author.name }}</h3>
7979

8080
<!-- Font Awesome icons / Social media -->
8181
{% if author.bluesky %}
82-
<li><a href="https://bsky.app/profile/{{ author.bluesky }}"><i class="fa-solid fa-square icon-pad-right" style="color: #1184fe" aria-hidden="true"></i>Bluesky</a></li>
82+
<li><a href="https://bsky.app/profile/{{ author.bluesky }}"><i class="fab fa-fw fa-bluesky icon-pad-right" aria-hidden="true"></i>Bluesky</a></li>
8383
{% endif %}
8484
{% if author.facebook %}
8585
<li><a href="https://www.facebook.com/{{ author.facebook }}"><i class="fab fa-fw fa-facebook-f icon-pad-right" aria-hidden="true"></i>Facebook</a></li>

_sass/vendor/font-awesome/_animated.scss

-1
Original file line numberDiff line numberDiff line change
@@ -150,4 +150,3 @@
150150
0% { transform: rotate(0deg); }
151151
100% { transform: rotate(360deg); }
152152
}
153-

_sass/vendor/font-awesome/_bordered-pulled.scss

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@
99
padding: var(--#{$fa-css-prefix}-border-padding, #{$fa-border-padding});
1010
}
1111

12-
.#{$fa-css-prefix}-pull-left {
12+
.#{$fa-css-prefix}-pull-left {
1313
float: left;
1414
margin-right: var(--#{$fa-css-prefix}-pull-margin, #{$fa-pull-margin});
1515
}
1616

17-
.#{$fa-css-prefix}-pull-right {
17+
.#{$fa-css-prefix}-pull-right {
1818
float: right;
1919
margin-left: var(--#{$fa-css-prefix}-pull-margin, #{$fa-pull-margin});
2020
}

_sass/vendor/font-awesome/_mixins.scss

-3
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@
5454
content: unquote("\"#{ $fa-var }\"");
5555
}
5656
}
57-
5857
@mixin fa-icon-regular($fa-var) {
5958
@extend %fa-icon;
6059
@extend .fa-regular;
@@ -63,7 +62,6 @@
6362
content: unquote("\"#{ $fa-var }\"");
6463
}
6564
}
66-
6765
@mixin fa-icon-brands($fa-var) {
6866
@extend %fa-icon;
6967
@extend .fa-brands;
@@ -72,4 +70,3 @@
7270
content: unquote("\"#{ $fa-var }\"");
7371
}
7472
}
75-

_sass/vendor/font-awesome/_rotated-flipped.scss

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@
2222
}
2323

2424
.#{$fa-css-prefix}-flip-both,
25-
.#{$fa-css-prefix}-flip-horizontal.#{$fa-css-prefix}-flip-vertical {
25+
.#{$fa-css-prefix}-flip-horizontal.#{$fa-css-prefix}-flip-vertical {
2626
transform: scale(-1, -1);
2727
}
2828

2929
.#{$fa-css-prefix}-rotate-by {
30-
transform: rotate(var(--#{$fa-css-prefix}-rotate-angle, none));
30+
transform: rotate(var(--#{$fa-css-prefix}-rotate-angle, 0));
3131
}

0 commit comments

Comments
 (0)