Skip to content

Commit 7276fda

Browse files
committed
Fixed ListBox - In Mobile (IOS) the select field was treated as textfield. #832
1 parent eda0e39 commit 7276fda

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

gwt-material/src/main/resources/gwt/material/design/public/css/overridecss.css

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -835,6 +835,18 @@ input:-webkit-autofill {
835835
vertical-align: middle;
836836
}
837837

838+
/**
839+
* ListBox - Fixed for Safari9+ Issue with Blinking Indicator on IOS Devices
840+
* Read More - https://stackoverflow.com/questions/38848742/material-select-blinking-on-ios
841+
**/
842+
input.select-dropdown {
843+
-webkit-user-select: none;
844+
-moz-user-select: none;
845+
-ms-user-select: none;
846+
-o-user-select: none;
847+
user-select: none;
848+
}
849+
838850
/** Loader */
839851
.loader-wrapper {
840852
width: 100%;

0 commit comments

Comments
 (0)