diff --git a/static/css/style.css b/static/css/style.css index e2d7e61..9871f51 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -116,7 +116,7 @@ input[type="checkbox"].large-checkbox::before { input[type="checkbox"].large-checkbox:checked::before { content: '✓'; - color: #ffc107; + color: #ffffff; } input[type="checkbox"].large-checkbox:disabled::before { @@ -136,3 +136,26 @@ input.form-control { border-top-right-radius: 0; border-bottom-right-radius: 0; } + +.info-bar-fixed { + position: fixed; + left: 0; + right: 0; + bottom: 0; + width: 100%; + color: #f8f9fa; + border-radius: 12px 12px 0 0; + text-align: center; + padding: 10px 8px; + font-size: 0.95rem; + z-index: 9999; + box-sizing: border-box; +} + +@media (max-width: 600px) { + .info-bar-fixed { + font-size: 0.85rem; + padding: 8px 4px; + border-radius: 10px 10px 0 0; + } +} diff --git a/templates/admin/admin_panel.html b/templates/admin/admin_panel.html index e69d6d9..7d18ab4 100644 --- a/templates/admin/admin_panel.html +++ b/templates/admin/admin_panel.html @@ -202,9 +202,9 @@ document.getElementById('select-all').addEventListener('click', function(){ {% endblock %} -
+
Python: {{ python_version.split()[0] }} | {{ system_info }} | RAM app: {{ app_memory }}
+ {% endblock %} diff --git a/templates/admin/list_users.html b/templates/admin/list_users.html index 2d624cd..3c6429f 100644 --- a/templates/admin/list_users.html +++ b/templates/admin/list_users.html @@ -4,6 +4,7 @@

👥 Lista użytkowników

+ ← Powrót do panelu