mirror of
https://github.com/imfing/hextra.git
synced 2025-08-23 05:37:32 -04:00

* feat(navbar): language switcher * docs: add language-switch * chore: just for the demo * fix: drop conflicting CSS * fix: use constant * fix: pre-existing bug with rtl on mobile * docs: add comment to explain the algo * chore: more readable algo * review Co-authored-by: Xin <5097752+imfing@users.noreply.github.com> * feat: different icons * feat: icon as param * fix: inconsitency with rtl * fix: render inside the sidebar * chore: remove the demo --------- Co-authored-by: Xin <5097752+imfing@users.noreply.github.com>
23 lines
1.3 KiB
HTML
23 lines
1.3 KiB
HTML
{{- $hideLabel := .hideLabel -}}
|
|
{{- $iconHeight := .iconHeight | default 12 -}}
|
|
{{- $class := .class | default "hx:h-7 hx:px-2 hx:text-xs hx:hover:bg-gray-100 hx:hover:text-gray-900 hx:dark:hover:bg-primary-100/5 hx:dark:hover:text-gray-50 hx:font-medium hx:text-gray-600 hx:transition-colors hx:dark:text-gray-400" -}}
|
|
|
|
{{- $changeTheme := (T "changeTheme") | default "Change theme" -}}
|
|
{{- $light := (T "light") | default "Light" -}}
|
|
{{- $dark := (T "dark") | default "Dark" -}}
|
|
|
|
<button
|
|
title="{{ $changeTheme }}"
|
|
data-theme="light"
|
|
class="hextra-theme-toggle hx:cursor-pointer hx:group hx:rounded-md hx:text-left {{ $class }}"
|
|
type="button"
|
|
aria-label="{{ $changeTheme }}"
|
|
>
|
|
<div class="hx:flex hx:items-center hx:gap-2 hx:capitalize">
|
|
{{- partial "utils/icon.html" (dict "name" "sun" "attributes" (printf "height=%d class=\"hx:group-data-[theme=light]:hidden\"" $iconHeight)) -}}
|
|
{{- if not $hideLabel }}<span class="hx:group-data-[theme=light]:hidden">{{ $light }}</span>{{ end -}}
|
|
{{- partial "utils/icon.html" (dict "name" "moon" "attributes" (printf "height=%d class=\"hx:group-data-[theme=dark]:hidden\"" $iconHeight)) -}}
|
|
{{- if not $hideLabel }}<span class="hx:group-data-[theme=dark]:hidden">{{ $dark }}</span>{{ end -}}
|
|
</div>
|
|
</button>
|