diff options
author | Mario <mario@mariovavti.com> | 2023-01-25 10:59:17 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2023-01-25 10:59:17 +0000 |
commit | 56361fa2fc42eefde4794358986187a508c7054e (patch) | |
tree | 3f31057ea0331143a871840387af69062561f60f /view/theme/redbasic/js | |
parent | fedce4cd74763574492770c2abefc1cbe9bc90ea (diff) | |
download | volse-hubzilla-56361fa2fc42eefde4794358986187a508c7054e.tar.gz volse-hubzilla-56361fa2fc42eefde4794358986187a508c7054e.tar.bz2 volse-hubzilla-56361fa2fc42eefde4794358986187a508c7054e.zip |
theme fixes
Diffstat (limited to 'view/theme/redbasic/js')
-rw-r--r-- | view/theme/redbasic/js/redbasic.js | 27 |
1 files changed, 13 insertions, 14 deletions
diff --git a/view/theme/redbasic/js/redbasic.js b/view/theme/redbasic/js/redbasic.js index 27ad9e15f..b32042668 100644 --- a/view/theme/redbasic/js/redbasic.js +++ b/view/theme/redbasic/js/redbasic.js @@ -4,18 +4,20 @@ let redbasic_dark_mode = localStorage.getItem('redbasic_dark_mode'); -if (redbasic_dark_mode == 1) { - $('html').attr('data-bs-theme', 'light'); - $('#theme-switch-icon').removeClass('fa-sun-o').addClass('fa-moon-o'); -} +$(document).ready(function() { + if (redbasic_dark_mode == 1) { + $('html').attr('data-bs-theme', 'light'); + $('meta[name=theme-color]').attr('content', $('nav').css('background-color')); + $('#theme-switch-icon').removeClass('fa-sun-o').addClass('fa-moon-o'); + } -if (redbasic_dark_mode == 2) { - $('html').attr('data-bs-theme', 'dark'); - $('#theme-switch-icon').removeClass('fa-moon-o').addClass('fa-sun-o'); -} -$(document).ready(function() { + if (redbasic_dark_mode == 2) { + $('html').attr('data-bs-theme', 'dark'); + $('meta[name=theme-color]').attr('content', $('nav').css('background-color')); + $('#theme-switch-icon').removeClass('fa-moon-o').addClass('fa-sun-o'); + } // CSS3 calc() fallback (for unsupported browsers) $('body').append('<div id="css3-calc" style="width: 10px; width: calc(10px + 10px); display: none;"></div>'); @@ -54,8 +56,6 @@ $(document).ready(function() { }); $('#theme-switch').click(function() { - // $('*').addClass('disable-transition'); - if ($('html').attr('data-bs-theme') === 'dark') { $('html').attr('data-bs-theme', 'light'); localStorage.setItem('redbasic_dark_mode', 1); @@ -66,8 +66,7 @@ $(document).ready(function() { localStorage.setItem('redbasic_dark_mode', 2); $('#theme-switch-icon').removeClass('fa-moon-o').addClass('fa-sun-o'); } - - // setTimeout(() => { $('*').removeClass('disable-transition') }, 100); + $('meta[name=theme-color]').attr('content', $('nav').css('background-color')); }); @@ -86,7 +85,7 @@ $(document).ready(function() { }); $("input[data-role=cat-tagsinput]").tagsinput({ - tagClass: 'badge rounded-pill bg-warning text-dark' + tagClass: 'badge rounded-pill bg-warning' }); $('a.disabled').click(function(e) { |