1
0
mirror of https://github.com/cotes2020/jekyll-theme-chirpy.git synced 2025-12-18 13:44:15 +00:00

Simplify checkbox with fontawesome icon

This commit is contained in:
Cotes Chung
2020-12-15 15:20:03 +08:00
parent 0225d28fd3
commit cb984aa021
4 changed files with 10 additions and 31 deletions

View File

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