Skip to content

Commit

Permalink
Merge pull request #2 from uxrocket/master
Browse files Browse the repository at this point in the history
Update fork
  • Loading branch information
SengitU authored Nov 29, 2016
2 parents 0d043ba + 059e4fc commit 5feaab5
Show file tree
Hide file tree
Showing 10 changed files with 258 additions and 212 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "uxrocket.select",
"version": "3.5.8",
"version": "3.5.9",
"homepage": "https://github.com/uxrocket/uxrocket.select",
"authors": [
"Bilal Çınarlı <[email protected]>"
Expand Down
35 changes: 31 additions & 4 deletions dist/uxrocket.select.css
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@
border-radius: 50%;
border: dashed 2px #ccc;
background-color: #fff;
animation: uxr-select-loading 2s infinite linear;
-webkit-animation: uxr-select-loading 2s infinite linear;
animation: uxr-select-loading 2s infinite linear;
content: "";
}

Expand All @@ -72,7 +73,8 @@

.uxr-select-multiple.uxr-select-opened .uxr-select-selection-text:after {
content: "|";
animation: uxr-select-blink linear infinite 1s;
-webkit-animation: uxr-select-blink linear infinite 1s;
animation: uxr-select-blink linear infinite 1s;
}

.uxr-select-disabled, .uxr-select-disabled:hover {
Expand Down Expand Up @@ -222,6 +224,18 @@
display: none;
}

@-webkit-keyframes uxr-select-blink {
0% {
opacity: 0;
}
50% {
opacity: 0;
}
100% {
opacity: 1;
}
}

@keyframes uxr-select-blink {
0% {
opacity: 0;
Expand All @@ -234,11 +248,24 @@
}
}

@-webkit-keyframes uxr-select-loading {
from {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
to {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}

@keyframes uxr-select-loading {
from {
transform: rotate(0deg);
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
Loading

0 comments on commit 5feaab5

Please sign in to comment.