From 22f0a5ded86267e0d7f874def73240c62d2890f0 Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Wed, 8 May 2013 11:27:20 -0700 Subject: [PATCH] Display navigation bellow main content on mobile browsers --- adminer/static/default.css | 10 ++++++++++ changes.txt | 1 + 2 files changed, 11 insertions(+) diff --git a/adminer/static/default.css b/adminer/static/default.css index 7aab444f..3963a7d4 100644 --- a/adminer/static/default.css +++ b/adminer/static/default.css @@ -71,6 +71,16 @@ input.default { background: #ddf; } .rtl #breadcrumb { left: auto; right: 21em; margin: 0 -18px 0 0; } .rtl #lang, .rtl #menu { left: auto; right: 0; } +@media all and (max-device-width: 880px) { + .pages { left: auto; } + #menu { position: static; width: auto; } + #content { margin-left: 10px; } + #lang { position: static; border-top: 1px solid #999; } + #breadcrumb { left: auto; } + .rtl #content { margin-right: 10px; } + .rtl #breadcrumb { right: auto; } +} + @media print { #lang, #menu { display: none; } #content { margin-left: 1em; } diff --git a/changes.txt b/changes.txt index 8a32627f..ef0479d2 100644 --- a/changes.txt +++ b/changes.txt @@ -9,6 +9,7 @@ Remove bzip2 compression support Constraint memory used in TAR export Allow exporting views dependent on each other (bug #3459151) Fix resetting search (bug #3612507) +Display navigation bellow main content on mobile browsers MySQL: Optimize create table page and Editor navigation MySQL: Display bit type as binary number MySQL: Improve export of binary data types