-
-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(core): add loading spinner to AutoComplete Editor/Filter (#65)
- add SASS styling to use the jQuery UI loading styling (internally jQuery UI will automatically add the CSS class "ui-autocomplete-loading" whenever processing) which shows up after few milliseconds (when using remote calls)
- Loading branch information
1 parent
3156cc5
commit 4ecd2bd
Showing
10 changed files
with
359 additions
and
277 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
@-webkit-keyframes md-spin { | ||
0% { transform: rotate(0deg); } | ||
100% { transform: rotate(360deg); } | ||
} | ||
@keyframes md-spin { | ||
0% { transform: rotate(0deg); } | ||
100% { transform: rotate(360deg); } | ||
} | ||
@mixin md-icon-rotate($degrees, $rotation) { | ||
transform: rotate($degrees); | ||
} | ||
|
||
.mdi { | ||
&.mdi-flip-h { | ||
transform: scaleX(-1); | ||
} | ||
&.mdi-flip-v { | ||
transform: scaleY(-1); | ||
} | ||
&.mdi-pulse { | ||
animation: md-spin 1s infinite steps(8); | ||
} | ||
&.mdi-spin { | ||
animation: md-spin 2s infinite linear; | ||
} | ||
&.mdi-rotate-45 { @include md-icon-rotate(45deg, 1); } | ||
&.mdi-rotate-90 { @include md-icon-rotate(90deg, 1); } | ||
&.mdi-rotate-135 { @include md-icon-rotate(135deg, 2); } | ||
&.mdi-rotate-180 { @include md-icon-rotate(180deg, 2); } | ||
&.mdi-rotate-220 { @include md-icon-rotate(220deg, 3); } | ||
&.mdi-rotate-270 { @include md-icon-rotate(270deg, 3); } | ||
&.mdi-rotate-315 { @include md-icon-rotate(315deg, 3); } | ||
&.mdi-rotate-45, .mdi-rotate-90, .mdi-rotate-135, .mdi-rotate-180, .mdi-rotate-220 .mdi-rotate-270, .mdi-rotate-315 { | ||
filter: none; | ||
} | ||
} |
Oops, something went wrong.