Skip to content

Commit

Permalink
[mobile] Prevent the IDE from scrolling along with the text (e.g. on …
Browse files Browse the repository at this point in the history
…iPad)

Ref: #3557

Signed-off-by: Jan Keromnes <[email protected]>
  • Loading branch information
jankeromnes committed Jul 18, 2019
1 parent 613069f commit 768bd76
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
- [plugin] added support of debug activation events [#5645](https://github.com/theia-ide/theia/pull/5645)
- [security] Bump lodash.mergewith from 4.6.1 to 4.6.2
- [plugin] Fixed `Converting circular structure to JSON` Error [#5661](https://github.com/theia-ide/theia/pull/5661)
- [core] prevent the IDE from scrolling along with the text (e.g. on iPad)

Breaking changes:

Expand Down
5 changes: 3 additions & 2 deletions packages/core/src/browser/style/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
body {
margin: 0;
padding: 0;
position: fixed;
overflow: hidden;
font-family: var(--theia-ui-font-family);
background: var(--theia-layout-color0);
Expand All @@ -42,7 +43,7 @@ body {
}

.theia-ApplicationShell {
position: absolute;
position: fixed;
top: 0;
left: 0;
right: 0;
Expand All @@ -51,7 +52,7 @@ body {
}

.theia-preload {
position: absolute;
position: fixed;
top: 0;
left: 0;
right: 0;
Expand Down

0 comments on commit 768bd76

Please sign in to comment.