Skip to content

Commit c23d8f7

Browse files
committed
Prevent page scrolling under wizard dialogs on iOS
1 parent 1d3a73b commit c23d8f7

File tree

3 files changed

+103
-92
lines changed

3 files changed

+103
-92
lines changed

app/styles/_core.less

+40-32
Original file line numberDiff line numberDiff line change
@@ -7,38 +7,46 @@
77
display: none !important;
88
}
99

10-
// Prevent zooming when focusing input fields in mobile Safari. Try to only
11-
// target mobile devices to avoid larger-than-wanted fonts elsewhere.
12-
@media only screen and (max-device-width: 736px) and (-webkit-min-device-pixel-ratio: 0) {
13-
input[type="text"],
14-
input[type="number"],
15-
input[type="search"],
16-
input[type="url"],
17-
select,
18-
select.form-control,
19-
textarea,
20-
textarea.form-control,
21-
.console-os .ace_editor {
22-
font-size: 16px;
23-
}
24-
25-
// Fix Bootstrap modal dialog zoom on the iPhone
26-
// See http://stackoverflow.com/questions/32675849/screen-zooms-in-when-a-bootstrap-modal-is-opened-on-ios-9-safari
27-
body {
28-
padding-right: 0px !important
29-
}
30-
.modal-open {
31-
overflow-y: auto;
32-
}
33-
}
34-
35-
// Prevent having to tap tabs twice on iOS.
36-
.ios .nav-tabs > {
37-
li > a:hover:before {
38-
content: none;
39-
}
40-
li.active > a:before {
41-
content: '';
10+
@media only screen and (max-device-width: 736px) {
11+
body.ios {
12+
// Fix Bootstrap modal dialog zoom on the iPhone
13+
// See http://stackoverflow.com/questions/32675849/screen-zooms-in-when-a-bootstrap-modal-is-opened-on-ios-9-safari
14+
padding-right: 0px !important;
15+
16+
// Prevent page from scrolling underneath modals and wizard overlays.
17+
&.modal-open, &.overlay-open {
18+
overflow-y: auto;
19+
position: fixed;
20+
}
21+
22+
// Prevent zooming when focusing input fields in mobile Safari. Only
23+
// target iPhones to avoid larger-than-wanted fonts elsewhere.
24+
input[type="text"],
25+
input[type="number"],
26+
input[type="search"],
27+
input[type="url"],
28+
select,
29+
select.form-control,
30+
textarea,
31+
textarea.form-control,
32+
.console-os .ace_editor {
33+
font-size: 16px;
34+
}
35+
36+
// Make sure buttons are visible always on iPhone X.
37+
.catalogs-overlay-panel .wizard-pf-main {
38+
max-height: calc(100vh ~"-" 275px);
39+
}
40+
41+
// Prevent having to tap tabs twice on iOS.
42+
.nav-tabs > {
43+
li > a:hover:before {
44+
content: none;
45+
}
46+
li.active > a:before {
47+
content: '';
48+
}
49+
}
4250
}
4351
}
4452

app/styles/_scrollbars.less

+47-45
Original file line numberDiff line numberDiff line change
@@ -2,59 +2,61 @@
22
// Scrollbars for main flex containers
33
// ------------------------------------------------------
44

5-
::-webkit-scrollbar {
6-
height: 10px;
7-
overflow: visible;
8-
width: @scrollbar-width;
9-
}
10-
11-
::-webkit-scrollbar-corner {
12-
background: transparent;
13-
}
14-
15-
::-webkit-scrollbar-thumb {
16-
background-clip: padding-box;
17-
background-color: @scrollbar-thumb;
18-
border: solid transparent;
19-
border-width: 1px 1px 1px 1px;
20-
box-shadow: inset 1px 1px 0 rgba(0,0,0,.1),inset 0 -1px 0 rgba(0,0,0,.07);
21-
max-height: 60px;
22-
min-height: 28px;
23-
padding: 100px 0 0;
24-
&:active,
25-
&:hover {
26-
background-color: @scrollbar-thumb-hover;
5+
not(.ios) {
6+
::-webkit-scrollbar {
7+
height: 10px;
8+
overflow: visible;
9+
width: @scrollbar-width;
2710
}
28-
}
2911

30-
::-webkit-scrollbar-track {
31-
background-clip:padding-box;
32-
background-color: @scrollbar-track;
33-
}
12+
::-webkit-scrollbar-corner {
13+
background: transparent;
14+
}
3415

35-
.chromeless .middle,
36-
.landing,
37-
.landing-side-bar,
38-
.log-view .log-view-output,
39-
.project-bar .dropdown-menu {
40-
&::-webkit-scrollbar-thumb {
41-
background-color: @scrollbar-thumb-inverse;
42-
box-shadow: inset 1px 1px 0 rgba(255,255,255,.1),inset 0 -1px 0 rgba(255,255,255,.07);
16+
::-webkit-scrollbar-thumb {
17+
background-clip: padding-box;
18+
background-color: @scrollbar-thumb;
19+
border: solid transparent;
20+
border-width: 1px 1px 1px 1px;
21+
box-shadow: inset 1px 1px 0 rgba(0,0,0,.1),inset 0 -1px 0 rgba(0,0,0,.07);
22+
max-height: 60px;
23+
min-height: 28px;
24+
padding: 100px 0 0;
4325
&:active,
4426
&:hover {
45-
background-color: @scrollbar-thumb-hover-inverse;
27+
background-color: @scrollbar-thumb-hover;
4628
}
4729
}
48-
}
4930

50-
.landing::-webkit-scrollbar-track {
51-
background-color: @scrollbar-track-landing;
52-
}
31+
::-webkit-scrollbar-track {
32+
background-clip:padding-box;
33+
background-color: @scrollbar-track;
34+
}
5335

54-
.landing-side-bar::-webkit-scrollbar-track {
55-
background-color: @scrollbar-track-landing-side-bar;
56-
}
36+
.chromeless .middle,
37+
.landing,
38+
.landing-side-bar,
39+
.log-view .log-view-output,
40+
.project-bar .dropdown-menu {
41+
&::-webkit-scrollbar-thumb {
42+
background-color: @scrollbar-thumb-inverse;
43+
box-shadow: inset 1px 1px 0 rgba(255,255,255,.1),inset 0 -1px 0 rgba(255,255,255,.07);
44+
&:active,
45+
&:hover {
46+
background-color: @scrollbar-thumb-hover-inverse;
47+
}
48+
}
49+
}
5750

58-
.project-bar ::-webkit-scrollbar-track {
59-
background-color: @scrollbar-track-inverse;
51+
.landing::-webkit-scrollbar-track {
52+
background-color: @scrollbar-track-landing;
53+
}
54+
55+
.landing-side-bar::-webkit-scrollbar-track {
56+
background-color: @scrollbar-track-landing-side-bar;
57+
}
58+
59+
.project-bar ::-webkit-scrollbar-track {
60+
background-color: @scrollbar-track-inverse;
61+
}
6062
}

dist/styles/main.css

+16-15
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)