diff options
author | Andrea Lepori <aleporia@gmail.com> | 2024-11-15 12:55:36 +0100 |
---|---|---|
committer | Andrea Lepori <aleporia@gmail.com> | 2024-11-15 12:55:36 +0100 |
commit | cceb769696480bb54a7bdb91474932a93c5152fa (patch) | |
tree | 2296cd287e3faa3d84c8142e2b368deab4b8c633 /templates | |
parent | move collapisible outside of modal (diff) | |
download | scout-subs-cceb769696480bb54a7bdb91474932a93c5152fa.tar.gz scout-subs-cceb769696480bb54a7bdb91474932a93c5152fa.zip |
light theme for new style
Diffstat (limited to 'templates')
-rw-r--r-- | templates/registration/base_admin.html | 3 | ||||
-rw-r--r-- | templates/registration/base_client.html | 3 | ||||
-rw-r--r-- | templates/registration/base_simple.html | 3 |
3 files changed, 9 insertions, 0 deletions
diff --git a/templates/registration/base_admin.html b/templates/registration/base_admin.html index e7c56df..f150c35 100644 --- a/templates/registration/base_admin.html +++ b/templates/registration/base_admin.html @@ -5,6 +5,9 @@ <!DOCTYPE html> <html> <head> + <script> + document.documentElement.setAttribute("theme", "light"); + </script> {% load static %} <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"> <link rel="stylesheet" type="text/css" href="{% static request.session.new_css|materialize_css %}"> diff --git a/templates/registration/base_client.html b/templates/registration/base_client.html index 89a7eca..de54445 100644 --- a/templates/registration/base_client.html +++ b/templates/registration/base_client.html @@ -4,6 +4,9 @@ <!DOCTYPE html> <html> <head> + <script> + document.documentElement.setAttribute("theme", "light"); + </script> {% load static %} {% load app_filter %} <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"> diff --git a/templates/registration/base_simple.html b/templates/registration/base_simple.html index 9dc4e35..4aa13e5 100644 --- a/templates/registration/base_simple.html +++ b/templates/registration/base_simple.html @@ -4,6 +4,9 @@ <!DOCTYPE html> <html> <head> + <script> + document.documentElement.setAttribute("theme", "light"); + </script> {% load static %} <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"> <link rel="stylesheet" type="text/css" href="{% static 'materialize.min.css' %}"> |