mirror of
https://github.com/bunkerity/bunkerweb
synced 2026-05-24 09:28:37 +00:00
Refactor CSS transitions for smoother effects and update HTML to support dynamic theme attributes
This commit is contained in:
parent
c6d5061cd4
commit
a0996041d4
5 changed files with 18 additions and 2 deletions
|
|
@ -1215,3 +1215,13 @@ html[dir="rtl"].dark-style .border-primary {
|
|||
.dark-style table.table.dataTable > tbody > tr.selected a {
|
||||
color: initial !important;
|
||||
}
|
||||
|
||||
.dark-style div.dts div.dt-scroll-body table,
|
||||
.dark-style div.dts div.dataTables_scrollBody table {
|
||||
background-color: #0c283a;
|
||||
}
|
||||
|
||||
.dark-style .form-floating > :disabled ~ label,
|
||||
.dark-style .form-floating > .form-control:disabled ~ label {
|
||||
color: #9caeb7;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -30,6 +30,7 @@ $(document).ready(() => {
|
|||
.addClass("bg-dark-subtle")
|
||||
.removeClass("bg-light-subtle");
|
||||
$("#dark-mode-toggle").prop("checked", true);
|
||||
$("html").attr("data-bs-theme", "dark");
|
||||
} else {
|
||||
$("html").removeClass("dark-style").addClass("light-style");
|
||||
$(".bs-toast.bg-dark").addClass("bg-white").removeClass("bg-dark");
|
||||
|
|
@ -37,6 +38,7 @@ $(document).ready(() => {
|
|||
.addClass("bg-light-subtle")
|
||||
.removeClass("bg-dark-subtle");
|
||||
$("#dark-mode-toggle").prop("checked", false);
|
||||
$("html").attr("data-bs-theme", null);
|
||||
}
|
||||
|
||||
// Update input values
|
||||
|
|
|
|||
|
|
@ -423,7 +423,7 @@ $(function () {
|
|||
targets: 5,
|
||||
},
|
||||
],
|
||||
order: [[1, "desc"]],
|
||||
order: [[1, "asc"]],
|
||||
autoFill: false,
|
||||
responsive: true,
|
||||
select: {
|
||||
|
|
|
|||
|
|
@ -438,6 +438,7 @@ $(document).ready(() => {
|
|||
$(".bg-light-subtle")
|
||||
.addClass("bg-dark-subtle")
|
||||
.removeClass("bg-light-subtle");
|
||||
$("html").attr("data-bs-theme", "dark");
|
||||
} else {
|
||||
$("html").removeClass("dark-style").addClass("light-style");
|
||||
$(".btn-outline-light")
|
||||
|
|
@ -448,6 +449,7 @@ $(document).ready(() => {
|
|||
$(".bg-dark-subtle")
|
||||
.addClass("bg-light-subtle")
|
||||
.removeClass("bg-dark-subtle");
|
||||
$("html").attr("data-bs-theme", null);
|
||||
}
|
||||
|
||||
$("#theme").val(darkMode ? "dark" : "light");
|
||||
|
|
@ -457,6 +459,7 @@ $(document).ready(() => {
|
|||
.replace(/\/profile$/, "/set_theme");
|
||||
const csrfToken = $("#csrf_token").val();
|
||||
const theme = darkMode ? "dark" : "light";
|
||||
localStorage.setItem("theme", theme); // Save user preference
|
||||
|
||||
const data = new FormData();
|
||||
data.append("theme", theme);
|
||||
|
|
|
|||
|
|
@ -25,7 +25,8 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en"
|
||||
class="{{ current_user.theme }}-style layout-navbar-fixed layout-menu-fixed"
|
||||
data-theme="theme-default">
|
||||
data-theme="theme-default"
|
||||
{% if current_user.theme == 'dark' %}data-bs-theme="dark"{% endif %}>
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport"
|
||||
|
|
|
|||
Loading…
Reference in a new issue