diff --git a/static/css/tailwind.css b/static/css/tailwind.css index 8efe320b..da14dc3b 100644 --- a/static/css/tailwind.css +++ b/static/css/tailwind.css @@ -2399,6 +2399,10 @@ select { top: 50%; } +.z-10 { + z-index: 10; +} + .col-span-2 { grid-column: span 2 / span 2; } @@ -3152,11 +3156,6 @@ select { color: rgb(55 65 81 / var(--tw-text-opacity)); } -.text-gray-800 { - --tw-text-opacity: 1; - color: rgb(31 41 55 / var(--tw-text-opacity)); -} - .text-gray-900 { --tw-text-opacity: 1; color: rgb(17 24 39 / var(--tw-text-opacity)); @@ -3731,6 +3730,11 @@ select { background-color: rgb(107 114 128 / var(--tw-bg-opacity)); } +.dark\:hover\:bg-gray-600:hover:is(.dark *) { + --tw-bg-opacity: 1; + background-color: rgb(75 85 99 / var(--tw-bg-opacity)); +} + .dark\:hover\:bg-gray-700:hover:is(.dark *) { --tw-bg-opacity: 1; background-color: rgb(55 65 81 / var(--tw-bg-opacity)); diff --git a/thrillwiki/__pycache__/settings.cpython-312.pyc b/thrillwiki/__pycache__/settings.cpython-312.pyc index 7b479f92..dff70412 100644 Binary files a/thrillwiki/__pycache__/settings.cpython-312.pyc and b/thrillwiki/__pycache__/settings.cpython-312.pyc differ diff --git a/thrillwiki/settings.py b/thrillwiki/settings.py index 7f1a552c..c6ffcc40 100644 --- a/thrillwiki/settings.py +++ b/thrillwiki/settings.py @@ -12,6 +12,7 @@ SECRET_KEY = 'django-insecure-=0)^0#h#k$0@$8$ys=^$0#h#k$0@$8$ys=^' # SECURITY WARNING: don't run with debug turned on in production! DEBUG = True +CSRF_TRUSTED_ORIGINS = ['https://beta.thrillwiki.com'] ALLOWED_HOSTS = ['*'] #ALLOWED_HOSTS = ['localhost', '127.0.0.1', 'thrillwiki.com', 'beta.thrillwiki.com', '192.168.86.6', 'syn.thewesker.com'] @@ -68,6 +69,7 @@ MIDDLEWARE = [ ROOT_URLCONF = 'thrillwiki.urls' + TEMPLATES = [ { 'BACKEND': 'django.template.backends.django.DjangoTemplates',