From ea8ed42747c76f5fdf14c6982d80cf6e316d3c6c Mon Sep 17 00:00:00 2001 From: Kohei Yoshino Date: Wed, 10 Jan 2018 12:18:29 -0500 Subject: [PATCH] Bug 1429290 - Bugs now display too wide to fit in my window; reading bugs is much harder --- skins/standard/global.css | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) 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; -- 2.47.3