Skip to content

Commit d4be115

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

File tree

2 files changed

+44
-37
lines changed

2 files changed

+44
-37
lines changed

app/styles/_core.less

+38-32
Original file line numberDiff line numberDiff line change
@@ -7,38 +7,44 @@
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+
&.modal-open {
16+
overflow-y: auto;
17+
}
18+
19+
// Prevent page from scrolling underneath wizard overlays.
20+
&.overlay-open {
21+
overflow-y: auto;
22+
position: fixed;
23+
}
24+
25+
// Prevent zooming when focusing input fields in mobile Safari. Only
26+
// target iPhones to avoid larger-than-wanted fonts elsewhere.
27+
input[type="text"],
28+
input[type="number"],
29+
input[type="search"],
30+
input[type="url"],
31+
select,
32+
select.form-control,
33+
textarea,
34+
textarea.form-control,
35+
.console-os .ace_editor {
36+
font-size: 16px;
37+
}
38+
39+
// Prevent having to tap tabs twice on iOS.
40+
.nav-tabs > {
41+
li > a:hover:before {
42+
content: none;
43+
}
44+
li.active > a:before {
45+
content: '';
46+
}
47+
}
4248
}
4349
}
4450

dist/styles/main.css

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

0 commit comments

Comments
 (0)