Skip to content

Commit

Permalink
fix wrong theme class when logged out if default theme is changed (go…
Browse files Browse the repository at this point in the history
…-gitea#22408)

If you don't use the `auto` theme as the default, the `<html>` tag has
`theme-auto` as it's class when users are logged out. This PR changes it
to use the correct theme class for the default theme when logged out.

(cherry picked from commit 9ffaf19)
Signed-off-by: crystal <crystal@noreply.codeberg.org>
  • Loading branch information
crystalcommunication authored and crystal committed Jan 14, 2023
1 parent 5d0e9fd commit 4ad72a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/base/head.tmpl
@@ -1,5 +1,5 @@
<!DOCTYPE html>
<html lang="{{.locale.Lang}}" class="theme-{{if .SignedUser.Theme}}{{.SignedUser.Theme}}{{else}}auto{{end}}">
<html lang="{{.locale.Lang}}" class="theme-{{if .SignedUser.Theme}}{{.SignedUser.Theme}}{{else}}{{DefaultTheme}}{{end}}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
Expand Down

0 comments on commit 4ad72a0

Please sign in to comment.