#31576: Navigation sidebar hides some elements on small windows.
---------------------------------+--------------------------------------
Reporter: felixxm | Owner: felixxm
Type: Bug | Status: assigned
Component: contrib.admin | Version: 3.1
Severity: Release blocker | Resolution:
Keywords: | Triage Stage: Unreviewed
Has patch: 0 | Needs documentation: 0
Needs tests: 0 | Patch needs improvement: 0
Easy pickings: 0 | UI/UX: 0
---------------------------------+--------------------------------------
Comment (by felixxm):
Proposed solution:
{{{
diff --git a/django/contrib/admin/static/admin/css/nav_sidebar.css
b/django/contrib/admin/static/admin/css/nav_sidebar.css
index 6fcfb26131..6968863e7c 100644
--- a/django/contrib/admin/static/admin/css/nav_sidebar.css
+++ b/django/contrib/admin/static/admin/css/nav_sidebar.css
@@ -93,7 +93,7 @@
background: #ffc;
}
-@media (max-width: 767px) {
+@media (max-width: 1024px) {
#nav-sidebar, #toggle-nav-sidebar {
display: none;
}
}}}
--
Ticket URL: <https://code.djangoproject.com/ticket/31576#comment:1>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.
--
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/django-updates/065.b3ac6ff9bf95caabf1d11398310bcef6%40djangoproject.com.