File tree 9 files changed +24
-4
lines changed
content/docs/configuration/site-params
9 files changed +24
-4
lines changed Original file line number Diff line number Diff line change @@ -36,3 +36,5 @@ $numberifyHeadingsEndLevel: {{ default 6 $params.post.numberifyHeadingsEndLevel
36
36
$tocStyleType : ' {{ default "none" $params.post.tocStyleType }}' ;
37
37
38
38
$enable-viewer : {{ default true $params .viewer }};
39
+
40
+ $socialColor : {{ default true $params .socialColor }};
Original file line number Diff line number Diff line change 26
26
}
27
27
}
28
28
}
29
+
30
+ .fa-x-twitter {
31
+ .fa-secondary {
32
+ opacity : 1 ;
33
+ }
34
+ }
Original file line number Diff line number Diff line change 1
1
.social-link {
2
2
position : relative ;
3
- opacity : 0.8 ;
4
3
5
4
& :hover {
6
- opacity : 1 ;
7
5
top : -2px ;
8
6
transition : top ease 0.5s ;
9
7
}
8
+
9
+ @if $socialColor {
10
+ opacity : 0.8 ;
11
+
12
+ & :hover {
13
+ opacity : 1 ;
14
+ }
15
+ }
10
16
}
Original file line number Diff line number Diff line change @@ -74,6 +74,8 @@ viewer = true # Image Viewer
74
74
75
75
# externalLinkIcon = false
76
76
77
+ socialColor = false # Remove color from social links if false.
78
+
77
79
[sidebar ]
78
80
# fixed = true
79
81
# archives = true # Enable archives widget
@@ -300,6 +302,7 @@ reduceFontSize = true
300
302
[feeds ]
301
303
# content = true
302
304
305
+ # Set socialColor as false to disable the color.
303
306
[social ]
304
307
305
308
# facebook = "yourfacebookusername"
Original file line number Diff line number Diff line change @@ -74,6 +74,7 @@ The site parameters are located in `config/_default/params.toml` by default.
74
74
| ` fontSize.large ` | String | ` 1.1rem ` | Large font size.
75
75
| ` fontSize.extraLarge ` | String | ` 1.2rem ` | Extra large font size.
76
76
| ` social ` | Object | - | [ Social Links] ({{< ref "/docs/widgets/social-links" >}}).
77
+ | ` socialColor ` | Boolean | ` true ` | Remove color from social links if ` false ` . |
77
78
| ` socialShare ` | Boolean | ` true ` | Turn on/off built-on social share button.
78
79
| ` searchBar ` | Boolean | ` true ` | Turn on/off built-on search bar.
79
80
| ` archive ` | Object | - | [ Archive] ({{< ref "/docs/layouts/archives" >}}).
Original file line number Diff line number Diff line change @@ -75,6 +75,7 @@ authors = ["RazonYang"]
75
75
| ` fontSize.large ` | String | ` 1.1rem ` | 大字体
76
76
| ` fontSize.extraLarge ` | String | ` 1.2rem ` | 更大的字体
77
77
| ` social ` | Object | - | [ 社交链接] ({{< ref "/docs/widgets/social-links" >}})。
78
+ | ` socialColor ` | Boolean | ` true ` | 为 ` false ` 时,移除社交链接的颜色。 |
78
79
| ` socialShare ` | Boolean | ` true ` | 启用/禁用内置的分享按钮
79
80
| ` searchBar ` | Boolean | ` true ` | 启用/禁用搜索栏
80
81
| ** Archive**
Original file line number Diff line number Diff line change @@ -75,6 +75,7 @@ authors = ["RazonYang"]
75
75
| ` fontSize.large ` | String | ` 1.1rem ` | 大字體
76
76
| ` fontSize.extraLarge ` | String | ` 1.2rem ` | 更大的字體
77
77
| ` social ` | Object | - | [ 社交鏈接] ({{< ref "/docs/widgets/social-links" >}})。
78
+ | ` socialColor ` | Boolean | ` true ` | 為 ` false ` 時間,移除社交鏈接的顏色。 |
78
79
| ` socialShare ` | Boolean | ` true ` | 啟用/禁用內置的分享按鈕
79
80
| ` searchBar ` | Boolean | ` true ` | 啟用/禁用搜索欄
80
81
| ** Archive**
Original file line number Diff line number Diff line change 11
11
"class" (cond (isset .Site.Menus "footer") "justify-content-between mb-2 mt-3" "mb-2 mt-3")
12
12
"linkClass" "p-0 me-1 mb-2"
13
13
"OutputFormats" $.OutputFormats
14
- "home" (.GetPage "/") "params" .Site.Params)
14
+ "home" (.GetPage "/") "params" .Site.Params)
15
15
-}}
Original file line number Diff line number Diff line change 40
40
-}}
41
41
{{- $size := default "" .size }}
42
42
{{- $linkClass := default "" .linkClass }}
43
- {{- $color := default true .color }}
43
+ {{- $color := default (default true site.Params.socialColor) .color }}
44
44
{{- $iconText := default false .iconText }}
45
45
{{- $iconTextClass := default "ms-1" .iconTextClass }}
46
46
You can’t perform that action at this time.
0 commit comments