Skip to content

Commit c314550

Browse files
authored
feat: add the socialColor parameter, remove color from social links if false (#1104)
Closes #1103
1 parent 6bc646e commit c314550

File tree

9 files changed

+24
-4
lines changed

9 files changed

+24
-4
lines changed

assets/main/scss/_config.scss

+2
Original file line numberDiff line numberDiff line change
@@ -36,3 +36,5 @@ $numberifyHeadingsEndLevel: {{ default 6 $params.post.numberifyHeadingsEndLevel
3636
$tocStyleType: '{{ default "none" $params.post.tocStyleType }}';
3737

3838
$enable-viewer: {{ default true $params.viewer }};
39+
40+
$socialColor: {{ default true $params.socialColor }};

assets/main/scss/_icons.scss

+6
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,9 @@
2626
}
2727
}
2828
}
29+
30+
.fa-x-twitter {
31+
.fa-secondary {
32+
opacity: 1;
33+
}
34+
}

assets/main/scss/_social-links.scss

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
11
.social-link {
22
position: relative;
3-
opacity: 0.8;
43

54
&:hover {
6-
opacity: 1;
75
top: -2px;
86
transition: top ease 0.5s;
97
}
8+
9+
@if $socialColor {
10+
opacity: 0.8;
11+
12+
&:hover {
13+
opacity: 1;
14+
}
15+
}
1016
}

exampleSite/config/_default/params.toml

+3
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,8 @@ viewer = true # Image Viewer
7474

7575
# externalLinkIcon = false
7676

77+
socialColor = false # Remove color from social links if false.
78+
7779
[sidebar]
7880
# fixed = true
7981
# archives = true # Enable archives widget
@@ -300,6 +302,7 @@ reduceFontSize = true
300302
[feeds]
301303
# content = true
302304

305+
# Set socialColor as false to disable the color.
303306
[social]
304307
305308
# facebook = "yourfacebookusername"

exampleSite/content/docs/configuration/site-params/index.md

+1
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ The site parameters are located in `config/_default/params.toml` by default.
7474
| `fontSize.large` | String | `1.1rem` | Large font size.
7575
| `fontSize.extraLarge` | String | `1.2rem` | Extra large font size.
7676
| `social` | Object | - | [Social Links]({{< ref "/docs/widgets/social-links" >}}).
77+
| `socialColor` | Boolean | `true` | Remove color from social links if `false`. |
7778
| `socialShare` | Boolean | `true` | Turn on/off built-on social share button.
7879
| `searchBar` | Boolean | `true` | Turn on/off built-on search bar.
7980
| `archive` | Object | - | [Archive]({{< ref "/docs/layouts/archives" >}}).

exampleSite/content/docs/configuration/site-params/index.zh-hans.md

+1
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ authors = ["RazonYang"]
7575
| `fontSize.large` | String | `1.1rem` | 大字体
7676
| `fontSize.extraLarge` | String | `1.2rem` | 更大的字体
7777
| `social` | Object | - | [社交链接]({{< ref "/docs/widgets/social-links" >}})。
78+
| `socialColor` | Boolean | `true` |`false` 时,移除社交链接的颜色。 |
7879
| `socialShare` | Boolean | `true` | 启用/禁用内置的分享按钮
7980
| `searchBar` | Boolean | `true` | 启用/禁用搜索栏
8081
| **Archive**

exampleSite/content/docs/configuration/site-params/index.zh-hant.md

+1
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ authors = ["RazonYang"]
7575
| `fontSize.large` | String | `1.1rem` | 大字體
7676
| `fontSize.extraLarge` | String | `1.2rem` | 更大的字體
7777
| `social` | Object | - | [社交鏈接]({{< ref "/docs/widgets/social-links" >}})。
78+
| `socialColor` | Boolean | `true` |`false` 時間,移除社交鏈接的顏色。 |
7879
| `socialShare` | Boolean | `true` | 啟用/禁用內置的分享按鈕
7980
| `searchBar` | Boolean | `true` | 啟用/禁用搜索欄
8081
| **Archive**

layouts/partials/footer/social-links.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@
1111
"class" (cond (isset .Site.Menus "footer") "justify-content-between mb-2 mt-3" "mb-2 mt-3")
1212
"linkClass" "p-0 me-1 mb-2"
1313
"OutputFormats" $.OutputFormats
14-
"home" (.GetPage "/") "params" .Site.Params)
14+
"home" (.GetPage "/") "params" .Site.Params)
1515
-}}

layouts/partials/helpers/social-links.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
-}}
4141
{{- $size := default "" .size }}
4242
{{- $linkClass := default "" .linkClass }}
43-
{{- $color := default true .color }}
43+
{{- $color := default (default true site.Params.socialColor) .color }}
4444
{{- $iconText := default false .iconText }}
4545
{{- $iconTextClass := default "ms-1" .iconTextClass }}
4646

0 commit comments

Comments
 (0)