mirror of
https://github.com/hugo-fixit/FixIt.git
synced 2026-08-24 15:28:57 +00:00
3926cc0220
* refactor: CSS variables to use fixit-var for consistency across styles * refactor: reorganize CSS structure and consolidate imports for improved maintainability * refactor: unify CSS variable usage and improve structure across stylesheets * refactor: standardize CSS variable usage for layout * refactor: standardize CSS variable usage for archive and special pages * refactor: standardize CSS variable usage for single page * refactor: standardize CSS variable usage for widgets * refactor(css): refactors the border-radius mixin and adds the .rounded-full utility class * refactor: standardize z-index usage across components * refactor(css): removes deprecated compatibility mixins and replaces them with native CSS properties * feat: unify color variable naming and update theme color values - Rename `global-font-secondary-color` to `global-placeholder-color` for more accurate description of its purpose - Update multiple style references to use the new `secondary` theme color variable - Update theme color mapping to the new color values for improved visual consistency - Fixed the use of search box placeholder colors and removed hard-coded transparency values - Added color preview test documentation for easier verification of color rendering - Cleaned up some duplicate dark mode styles and replaced them with unified CSS variables * refactor: remove the `hr-background-color` variable and uses `global-border-color` uniformly * feat(CSE): add dark theme style to Google CSE search box and results container * fix(task-lists): fixed styling and rendering issues with nested task lists
56 lines
2.2 KiB
HTML
56 lines
2.2 KiB
HTML
{{- /* Task lists rendering */ -}}
|
|
{{- /* If Hugo supports the list rendering hook, refactor this snippet. */ -}}
|
|
|
|
{{- $iconMap := dict
|
|
" " "fa-regular fa-square"
|
|
"x" "fa-solid fa-check-square"
|
|
"/" "fa-regular fa-square"
|
|
"-" "fa-solid fa-square-xmark"
|
|
"<" "fa-regular fa-calendar-plus"
|
|
">" "fa-regular fa-calendar-minus"
|
|
"!" "fa-solid fa-circle-exclamation"
|
|
"\\?" "fa-regular fa-circle-question"
|
|
-}}
|
|
{{- /* Custom Task lists */ -}}
|
|
{{- $iconMap = site.Params.taskList | merge $iconMap -}}
|
|
|
|
{{- /* Get the extended signs */ -}}
|
|
{{- $extendedSigns := slice -}}
|
|
{{- range $sign, $icon := $iconMap -}}
|
|
{{- $extendedSigns = $extendedSigns | append $sign -}}
|
|
{{- end -}}
|
|
|
|
{{- /*
|
|
The basic syntax is compatible with GitHub, Obsidian, and Typora.
|
|
The basic format is as follows:
|
|
- [ ] Unchecked
|
|
- [x] Checked
|
|
*/ -}}
|
|
{{- $icon := dict "Class" (add "checkbox-icon " (index $iconMap " ")) | partial "plugin/icon.html" -}}
|
|
{{- $label := T (printf "taskList.%v" " ") -}}
|
|
{{- $content := replaceRE `(?s)<li>((\n<p>)*)<input disabled="" type="checkbox">` (printf `<li data-task=" " title=%q>$1%s` $label $icon) . -}}
|
|
{{- $label := T (printf "taskList.%v" "x") -}}
|
|
{{- $icon := dict "Class" (add "checkbox-icon " (index $iconMap "x")) | partial "plugin/icon.html" -}}
|
|
{{- $content = replaceRE `(?s)<li>((\n<p>)*)<input checked="" disabled="" type="checkbox">` (printf `<li data-task="x" title=%q>$1%s` $label $icon) $content -}}
|
|
|
|
{{- /*
|
|
The extended syntax is compatible with Obsidian.
|
|
The extended format is as follows:
|
|
- [-] Cancelled
|
|
- [/] In Progress
|
|
- [<] Scheduled
|
|
- [>] Rescheduled
|
|
- [!] Important
|
|
- [?] Question
|
|
*/ -}}
|
|
{{- range $extendedSigns -}}
|
|
{{- $class := index $iconMap . | default "fa-solid fa-check-square" -}}
|
|
{{- $icon := dict "Class" (add "checkbox-icon " $class) | partial "plugin/icon.html" -}}
|
|
{{- $sign := htmlEscape . -}}
|
|
{{- $originSign := replace . "\\" "" -}}
|
|
{{- $label := (T (printf "taskList.%v" $originSign)) | default (T (printf "taskList.%v" " ")) -}}
|
|
{{- $content = replaceRE (printf `(?s)<li>((\n<p>)*)\[%s\]` $sign) (printf `<li data-task=%q title=%q>$1%s` $originSign $label $icon) $content -}}
|
|
{{- end -}}
|
|
|
|
{{- return $content -}}
|