summaryrefslogtreecommitdiffstats
path: root/skins
diff options
context:
space:
mode:
authorKohei Yoshino <kohei.yoshino@gmail.com>2018-01-10 18:18:29 +0100
committerDylan William Hardison <dylan@hardison.net>2018-01-10 18:18:29 +0100
commitea8ed42747c76f5fdf14c6982d80cf6e316d3c6c (patch)
treebfff0d72fa87db1a06da70c5f226cfdf74371def /skins
parent6f7bad0e4cca15a01d6abd347eb7ae3754907399 (diff)
downloadbugzilla-ea8ed42747c76f5fdf14c6982d80cf6e316d3c6c.tar.gz
bugzilla-ea8ed42747c76f5fdf14c6982d80cf6e316d3c6c.tar.xz
Bug 1429290 - Bugs now display too wide to fit in my window; reading bugs is much harder
Diffstat (limited to 'skins')
-rw-r--r--skins/standard/global.css23
1 files changed, 22 insertions, 1 deletions
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;