]>
Commit | Line | Data |
---|---|---|
74da6b38 MG |
1 | function set_style(name, trans){ |
2 | if(trans){ | |
3 | document.body.classList.add('transition-color'); | |
4 | setTimeout(() => document.body.classList.remove('transition-color'), 1000); | |
5 | } | |
5eae1f77 | 6 | $('link[title]').each(e => e.disabled = true); |
7093e9ba MG |
7 | $('link[title="' + name + '"]')[0].disabled = false; |
8 | localStorage.setItem("theme", name); | |
65ef5465 MG |
9 | $(function() { |
10 | if(name == 'slate' || name == 'cyborg') | |
11 | $('.logo').each(e => e.classList.remove('logo-light')); | |
12 | else | |
13 | $('.logo').each(e => e.classList.add('logo-light')); | |
7dc32473 | 14 | }); |
7093e9ba | 15 | } |
7dc32473 | 16 | |
7093e9ba | 17 | $(function() { |
81c2ef98 MG |
18 | var theme_ul = '<ul class="list-inline" id="themes">' + |
19 | '<li><a role="button" data-theme="cyborg">Black</a>' + | |
20 | '<li><a role="button" data-theme="slate">Grey</a>' + | |
21 | '<li><a role="button" data-theme="readable">White</a></ul>'; | |
7093e9ba | 22 | var sidebar = $('#sidebar')[0]; |
81c2ef98 | 23 | sidebar.insertBefore(m(theme_ul), sidebar.firstChild); |
74da6b38 | 24 | $('#themes a').on('click', e => set_style(e.target.dataset.theme, true)); |
7093e9ba | 25 | }); |
7dc32473 | 26 | |
8345760a | 27 | let theme = localStorage.getItem("theme"); |
7093e9ba MG |
28 | if(theme) { |
29 | if(theme == "cerulean" || theme == "cosmo") | |
30 | theme = "readable"; | |
74da6b38 | 31 | set_style(theme, false); |
7093e9ba | 32 | } |