File tree 2 files changed +44
-37
lines changed
2 files changed +44
-37
lines changed Original file line number Diff line number Diff line change 7
7
display : none !important ;
8
8
}
9
9
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
+ }
42
48
}
43
49
}
44
50
You can’t perform that action at this time.
0 commit comments