Commit 9ebb8ab4 authored by hbcui1984's avatar hbcui1984

解决H5模式日期控件在部分Android 5.0手机上无法滚动的问题

parent bf46a02b
...@@ -10,6 +10,19 @@ ...@@ -10,6 +10,19 @@
bottom: 0px; bottom: 0px;
-webkit-transform: translateY(300px); -webkit-transform: translateY(300px);
} }
.mui-dtpicker.mui-active {
-webkit-transform: translateY(0px);
}
.mui-android-5-1 .mui-dtpicker {
bottom: -300px;
-webkit-transition-property: bottom;
-webkit-transform: none;
}
.mui-android-5-1 .mui-dtpicker.mui-active {
bottom: 0px;
-webkit-transition-property: bottom;
-webkit-transform: none;
}
.mui-dtpicker-header { .mui-dtpicker-header {
padding: 6px; padding: 6px;
font-size: 14px; font-size: 14px;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment