summaryrefslogtreecommitdiffstats
path: root/skins
diff options
context:
space:
mode:
authorKohei Yoshino <kohei.yoshino@gmail.com>2018-01-10 04:04:46 +0100
committerDylan William Hardison <dylan@hardison.net>2018-01-10 04:04:46 +0100
commit76d96009af68d8dd982f7915ccc8c0eab48093a0 (patch)
tree39367f3394c29194c01f2cc83b53a02a52bf3544 /skins
parent16268ef69b2c75f58865e37bce29250ff1aa8f03 (diff)
downloadbugzilla-76d96009af68d8dd982f7915ccc8c0eab48093a0.tar.gz
bugzilla-76d96009af68d8dd982f7915ccc8c0eab48093a0.tar.xz
Bug 1429220 - Issues with the new fixed header implementation
Diffstat (limited to 'skins')
-rw-r--r--skins/standard/global.css18
1 files changed, 13 insertions, 5 deletions
diff --git a/skins/standard/global.css b/skins/standard/global.css
index 7804bfe06..051cd864d 100644
--- a/skins/standard/global.css
+++ b/skins/standard/global.css
@@ -37,7 +37,6 @@
/* global (begin) */
body {
position: absolute;
- overflow: hidden;
margin: 0;
width: 100%;
height: 100%;
@@ -60,15 +59,22 @@
display: flex;
flex-direction: column;
position: absolute;
- width: 100%;
- height: 100%;
}
/* wrapper (end) */
+/* fixed global header (begin) */
+ @media screen and (min-width: 1024px) {
+ #wrapper {
+ overflow: hidden;
+ width: 100%;
+ height: 100%;
+ }
+ }
+/* fixed global header (end) */
+
/* header (begin) */
#header {
flex: none;
- overflow: auto;
border-bottom: 1px solid rgba(0, 0, 0, 0.2);
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
color: #555;
@@ -1271,7 +1277,9 @@ hr {
position: relative;
outline: none;
padding: 0 15px;
- overflow: auto;
+ overflow-x: auto;
+ overflow-y: scroll;
+ -webkit-overflow-scrolling: touch; /* Enable lazy scrolling on iOS */
scroll-behavior: smooth;
}