diff --git a/app.py b/app.py index ad79080..5701dea 100644 --- a/app.py +++ b/app.py @@ -771,7 +771,7 @@ def advanced_schedule(): @app.route('/toggle_dark_mode') def toggle_dark_mode(): - current_mode = session.get('dark_mode', False) + current_mode = session.get('dark_mode', True) session['dark_mode'] = not current_mode return redirect(request.referrer or url_for('index')) diff --git a/templates/base.html b/templates/base.html index 2b6ac70..e13abab 100644 --- a/templates/base.html +++ b/templates/base.html @@ -1,5 +1,5 @@ - + Backup RouterOS App @@ -7,49 +7,135 @@ - - {% block head %}{% endblock %} + /* Dodatkowe nadpisanie styli diff2html w trybie ciemnym */ + .dark-mode .d2h-wrapper, + .dark-mode .d2h-file-header, + .dark-mode .d2h-file-info, + .dark-mode .d2h-file-diff, + .dark-mode .d2h-diff-table, + .dark-mode .d2h-code-line, + .dark-mode .d2h-code-line-ctn, + .dark-mode .d2h-code-side-linenumber { + background-color: #333 !important; + color: #ddd !important; + border-color: #444 !important; + } + + + + + + {% block head %}{% endblock %} +
{% with messages = get_flashed_messages() %} {% if messages %} @@ -64,27 +150,26 @@ {% block content %}{% endblock %}
- -