Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Material Select blinking on iOS

I am trying to create my website in Material Design, however I found one issue with Material Select regardless whether I use MDB (Material Design for Bootstrap) or Materialize CSS framework. Both are working fine on Windows/OSX/Android , however for some reason when I open Material Select component on my iPad and click on it, there is a blinking cursor showing from the Background of the Dropdown.

enter image description here

like image 736
Dawid Adach Avatar asked Aug 09 '16 10:08

Dawid Adach


1 Answers

Try the following code:

input.select-dropdown {
    -webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    -o-user-select:none;
    user-select:none;
}
like image 108
Mattonit Avatar answered Sep 22 '22 06:09

Mattonit