Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Jérome Perrin
gitlab-ce
Commits
257c58eb
Commit
257c58eb
authored
Oct 18, 2016
by
Bryce Johnson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Set webkit-overflow-scrolling to auto for children of body.
parent
d9273364
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13 additions
and
2 deletions
+13
-2
CHANGELOG.md
CHANGELOG.md
+1
-0
app/assets/stylesheets/framework/files.scss
app/assets/stylesheets/framework/files.scss
+0
-1
app/assets/stylesheets/framework/layout.scss
app/assets/stylesheets/framework/layout.scss
+12
-0
app/assets/stylesheets/pages/diff.scss
app/assets/stylesheets/pages/diff.scss
+0
-1
No files found.
CHANGELOG.md
View file @
257c58eb
...
...
@@ -126,6 +126,7 @@ Please view this file on the master branch, on stable branches it's out of date.
-
API: all unknown routing will be handled with 404 Not Found
-
Add docs for request profiling
-
Delete dynamic environments
-
Fix buggy iOS tooltip layering behavior.
-
Make guests unable to view MRs on private projects
## 8.12.7
...
...
app/assets/stylesheets/framework/files.scss
View file @
257c58eb
...
...
@@ -167,7 +167,6 @@
*/
&
.code
{
padding
:
0
;
-webkit-overflow-scrolling
:
auto
;
// See https://gitlab.com/gitlab-org/gitlab-ce/issues/13987
}
}
}
...
...
app/assets/stylesheets/framework/layout.scss
View file @
257c58eb
...
...
@@ -27,3 +27,15 @@ body {
.container-limited
{
max-width
:
$fixed-layout-width
;
}
/* The following prevents side effects related to iOS Safari's implementation of -webkit-overflow-scrolling: touch,
which is applied to the body by jquery.nicescroling plugin to force hardware acceleration for momentum scrolling. Side
effects are commonly related to inconsisent z-index behavior (e.g. tooltips). By applying the following to direct children
of the body element here, we negate cascading side effects but allow momentum scrolling to be applied to the body */
.navbar
,
.page-gutter
,
.page-with-sidebar
{
-webkit-overflow-scrolling
:
auto
;
}
app/assets/stylesheets/pages/diff.scss
View file @
257c58eb
...
...
@@ -52,7 +52,6 @@
background
:
#fff
;
color
:
#333
;
border-radius
:
0
0
3px
3px
;
-webkit-overflow-scrolling
:
auto
;
.unfold
{
cursor
:
pointer
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment