mirror of
https://github.com/flarum/framework.git
synced 2024-12-03 15:43:59 +08:00
Prevent page zoom on input focus in iOS 10. fixes flarum/core#1023
This commit is contained in:
parent
ed0691a071
commit
109782154c
|
@ -194,15 +194,10 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
h3 {
|
||||
&, a, input {
|
||||
font-size: 14px;
|
||||
}
|
||||
input {
|
||||
h3 input {
|
||||
width: 100% !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
.ComposerBody-editor {
|
||||
padding: 15px;
|
||||
}
|
||||
|
@ -331,8 +326,7 @@
|
|||
// ------------------------------------
|
||||
// Text Editor
|
||||
|
||||
.TextEditor {
|
||||
& textarea {
|
||||
.TextEditor textarea {
|
||||
border-radius: 0;
|
||||
padding: 0 0 10px;
|
||||
border: 0;
|
||||
|
@ -345,6 +339,9 @@
|
|||
background: none;
|
||||
border: 0;
|
||||
}
|
||||
|
||||
@media @phone {
|
||||
font-size: 16px; // minimum font-size required to prevent page zoom on focus in iOS 10
|
||||
}
|
||||
}
|
||||
.TextEditor-controls {
|
||||
|
|
|
@ -18,6 +18,10 @@
|
|||
height: 50px;
|
||||
padding: 15px 20px;
|
||||
font-size: 15px;
|
||||
|
||||
@media @phone {
|
||||
font-size: 16px; // minimum font-size required to prevent page zoom on focus in iOS 10
|
||||
}
|
||||
}
|
||||
|
||||
.Form-group {
|
||||
|
|
|
@ -38,6 +38,10 @@
|
|||
textarea& {
|
||||
height: auto;
|
||||
}
|
||||
|
||||
@media @phone {
|
||||
font-size: 16px; // minimum font-size required to prevent page zoom on focus in iOS 10
|
||||
}
|
||||
}
|
||||
.helpText {
|
||||
font-size: 12px;
|
||||
|
|
Loading…
Reference in New Issue
Block a user