1
0
mirror of https://github.com/cotes2020/jekyll-theme-chirpy.git synced 2025-12-24 08:37:13 +00:00

perf: modify checkbox icon with Liquid

Also optimize list padding start
This commit is contained in:
Cotes Chung
2022-10-24 20:56:15 +08:00
parent e48d66e525
commit 1fd665bf49
6 changed files with 26 additions and 28 deletions

View File

@@ -1,12 +0,0 @@
/*
* Create a more beautiful checkbox
*/
$(function() {
/* hide browser default checkbox */
$("input[type=checkbox]").addClass("unloaded");
/* create checked checkbox */
$("input[type=checkbox][checked]").before("<i class=\"fas fa-check-circle checked\"></i>");
/* create normal checkbox */
$("input[type=checkbox]:not([checked])").before("<i class=\"far fa-circle\"></i>");
});