forked from adityatelange/hugo-PaperMod
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/master'
* upstream/master: (51 commits) [PATCH] Fix date format in schema and opengraph templates Fix error with profileMode imageUrl on Windows devices when imageUrl was set with external link resources.Get throws an error Use Nullish Coalescing Operator with Fastsearch (adityatelange#1033) Update bug report template add sketchfab icon (adityatelange#998) Fix spotify icon svg (adityatelange#997) Updating pagination strings for de (adityatelange#1024) Add icons for AniList and osu! (adityatelange#1022) Fix spacing around `rawhtml` shortcode (adityatelange#1018) Add param 'hiddenInHomeList' to hide certain post from home page Fix Code Smell: Unexpected var, use let or const instead. Add social icons for DeviantArt and Patreon (adityatelange#1013) Adding threema as social icon (adityatelange#1012) Feat: Add page nums in list pages pages: use github actions as build source - remove older build config (Classic Pages) Add more ja translations (adityatelange#1004) Updating pagination strings for bn: (adityatelange#1002) Add optional custom "title" for social links (adityatelange#999) Add a meta tag for naver site verification (adityatelange#991) add vimeo icon (adityatelange#975) ...
- Loading branch information
Showing
32 changed files
with
396 additions
and
280 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,6 @@ | |
.profile img { | ||
display: inline-table; | ||
border-radius: 50%; | ||
pointer-events: none; | ||
} | ||
|
||
.buttons { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
/* | ||
PaperMod v6 | ||
License: MIT https://github.com/adityatelange/hugo-PaperMod/blob/master/LICENSE | ||
Copyright (c) 2020 nanxiaobei and adityatelange | ||
Copyright (c) 2021-2022 adityatelange | ||
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
/* from reset */ | ||
::-webkit-scrollbar-track { | ||
background: 0 0; | ||
} | ||
|
||
.list:not(.dark)::-webkit-scrollbar-track { | ||
background: var(--code-bg); | ||
} | ||
|
||
::-webkit-scrollbar-thumb { | ||
background: var(--tertiary); | ||
border: 5px solid var(--theme); | ||
border-radius: var(--radius); | ||
} | ||
|
||
.list:not(.dark)::-webkit-scrollbar-thumb { | ||
border: 5px solid var(--code-bg); | ||
} | ||
|
||
::-webkit-scrollbar-thumb:hover { | ||
background: var(--secondary); | ||
} | ||
|
||
::-webkit-scrollbar:not(.highlighttable, .highlight table, .gist .highlight) { | ||
background: var(--theme); | ||
} | ||
|
||
/* from post-single */ | ||
.post-content .highlighttable td .highlight pre code::-webkit-scrollbar { | ||
display: none; | ||
} | ||
|
||
.post-content :not(table) ::-webkit-scrollbar-thumb { | ||
border: 2px solid var(--hljs-bg); | ||
background: rgb(113, 113, 117); | ||
} | ||
|
||
.post-content :not(table) ::-webkit-scrollbar-thumb:hover { | ||
background: rgb(163, 163, 165); | ||
} | ||
|
||
.gist table::-webkit-scrollbar-thumb { | ||
border: 2px solid rgb(255, 255, 255); | ||
background: rgb(173, 173, 173); | ||
} | ||
|
||
.gist table::-webkit-scrollbar-thumb:hover { | ||
background: rgb(112, 112, 112); | ||
} | ||
|
||
.post-content table::-webkit-scrollbar-thumb { | ||
border-width: 2px; | ||
} | ||
|
||
/* from zmedia */ | ||
@media screen and (min-width: 768px) { | ||
|
||
/* reset */ | ||
::-webkit-scrollbar { | ||
width: 19px; | ||
height: 11px; | ||
} | ||
} |
Oops, something went wrong.