Skip to content

Commit 059e4fc

Browse files
committed
Drop position while virtual keyboard opened in mobile devices
1 parent a9a21d0 commit 059e4fc

10 files changed

Lines changed: 258 additions & 212 deletions

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "uxrocket.select",
3-
"version": "3.5.8",
3+
"version": "3.5.9",
44
"homepage": "https://github.com/uxrocket/uxrocket.select",
55
"authors": [
66
"Bilal Çınarlı <bcinarli@gmail.com>"

dist/uxrocket.select.css

Lines changed: 31 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@
5050
border-radius: 50%;
5151
border: dashed 2px #ccc;
5252
background-color: #fff;
53-
animation: uxr-select-loading 2s infinite linear;
53+
-webkit-animation: uxr-select-loading 2s infinite linear;
54+
animation: uxr-select-loading 2s infinite linear;
5455
content: "";
5556
}
5657

@@ -72,7 +73,8 @@
7273

7374
.uxr-select-multiple.uxr-select-opened .uxr-select-selection-text:after {
7475
content: "|";
75-
animation: uxr-select-blink linear infinite 1s;
76+
-webkit-animation: uxr-select-blink linear infinite 1s;
77+
animation: uxr-select-blink linear infinite 1s;
7678
}
7779

7880
.uxr-select-disabled, .uxr-select-disabled:hover {
@@ -222,6 +224,18 @@
222224
display: none;
223225
}
224226

227+
@-webkit-keyframes uxr-select-blink {
228+
0% {
229+
opacity: 0;
230+
}
231+
50% {
232+
opacity: 0;
233+
}
234+
100% {
235+
opacity: 1;
236+
}
237+
}
238+
225239
@keyframes uxr-select-blink {
226240
0% {
227241
opacity: 0;
@@ -234,11 +248,24 @@
234248
}
235249
}
236250

251+
@-webkit-keyframes uxr-select-loading {
252+
from {
253+
-webkit-transform: rotate(0deg);
254+
transform: rotate(0deg);
255+
}
256+
to {
257+
-webkit-transform: rotate(360deg);
258+
transform: rotate(360deg);
259+
}
260+
}
261+
237262
@keyframes uxr-select-loading {
238263
from {
239-
transform: rotate(0deg);
264+
-webkit-transform: rotate(0deg);
265+
transform: rotate(0deg);
240266
}
241267
to {
242-
transform: rotate(360deg);
268+
-webkit-transform: rotate(360deg);
269+
transform: rotate(360deg);
243270
}
244271
}

0 commit comments

Comments
 (0)