From: Kohei Yoshino Date: Wed, 10 Jan 2018 17:18:29 +0000 (-0500) Subject: Bug 1429290 - Bugs now display too wide to fit in my window; reading bugs is much... X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ea8ed42747c76f5fdf14c6982d80cf6e316d3c6c;p=thirdparty%2Fbugzilla.git Bug 1429290 - Bugs now display too wide to fit in my window; reading bugs is much harder --- diff --git a/skins/standard/global.css b/skins/standard/global.css index 39e6e4654..0b40fcb2a 100644 --- a/skins/standard/global.css +++ b/skins/standard/global.css @@ -63,7 +63,7 @@ /* wrapper (end) */ /* fixed global header (begin) */ - @media screen and (min-width: 1024px) { + @media screen and (min-width: 800px) { #wrapper { overflow: hidden; width: 100%; @@ -572,6 +572,27 @@ } /* header (end) */ +/* narrower global header (begin) */ + @media screen and (max-width: 1024px) { + #header .inner { + width: 800px; + } + + #header-nav .links a { + padding: 0; + width: 32px; + justify-content: center; + text-align: center; + } + + #header-nav .links a .label { + overflow: hidden; + width: 0; + height: 0; + } + } +/* narrower global header (end) */ + /* link lists (begin) */ ul.links { margin: 0;