You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
523 B

4 years ago
.#{$namespace}android.#{$namespace}android-4-0 {
input,
textarea{
&:focus{
//修复4.0.x系统的输入框无法正常输入文字
-webkit-user-modify: inherit;
}
}
}
.#{$namespace}android.#{$namespace}android-4-2,.#{$namespace}android.#{$namespace}android-4-3 {
input,
textarea{
-webkit-user-select: text;
}
}
//解决ios list 过多(height>20000px) crash的bug
.#{$namespace}ios .#{$namespace}table-view-cell {
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
}