-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Improve: search implementation * hide the mismatch objects instead of removing it while searching * widen the control range of search result * Improve: gallery layout's key and value now support markdown syntax * Improve: Zooming.js configuration * speed up animations * setup transparent background * Change: for consistency, the names of the following parameters are changed: * page's `collapsibleTOC` => `collapsible_toc` * page's `collapsibleChangelogs` => `collapsible_changelogs` * Change: font-size of html is changed from `18px` to `16px` * Add: `breadcrumbs` shortcode * Add: list layout properties `group_by_year` and `show_date` * Fix: terms-cloud typo ([#4](#4))
- Loading branch information
Showing
40 changed files
with
36,945 additions
and
842 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/*! purgecss start ignore */ | ||
|
||
html { | ||
font-size: 18px; | ||
font-size: 16px; | ||
} | ||
|
||
@import "components/color.pcss"; | ||
|
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 |
---|---|---|
@@ -1,6 +1,9 @@ | ||
import Zooming from 'zooming'; | ||
|
||
document.addEventListener('DOMContentLoaded', function () { | ||
const zooming = new Zooming() | ||
const zooming = new Zooming({ | ||
bgOpacity: 0, | ||
transitionDuration: 0.2, | ||
}) | ||
zooming.listen('#content img') | ||
}); |
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
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
Oops, something went wrong.