From e12d12524f34dbdc775789646c43948f1ee9f64c Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Fri, 4 Apr 2025 22:23:31 +0200 Subject: [PATCH] CSS: Display menu on modern iPads (fix #985) https://www.ios-resolution.com/ --- adminer/static/default.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adminer/static/default.css b/adminer/static/default.css index d018f1cc..9d5f77c0 100644 --- a/adminer/static/default.css +++ b/adminer/static/default.css @@ -114,7 +114,7 @@ input.wayoff { left: -1000px; position: absolute; } .rtl #lang, .rtl #menu { left: auto; right: 0; } .rtl pre, .rtl code { direction: ltr; } -@media all and (max-width: 880px) { +@media all and (max-width: 800px) { .pages { left: auto; } .js .logout { top: 1.667em; } #menu { position: static; width: auto; min-width: 23em; background: var(--bg); border: 1px solid var(--fg); margin-top: 9px; box-shadow: 0 0 20px rgb(from var(--fg) r g b / .7); }