File tree Expand file tree Collapse file tree 3 files changed +21
-3
lines changed Expand file tree Collapse file tree 3 files changed +21
-3
lines changed Original file line number Diff line number Diff line change 879879 transform : translateY (-50% );
880880}
881881
882+ /* Loading */
883+ .ui.labeled.icon.button > .icon.loading {
884+ animation : none ;
885+ }
886+ .ui.labeled.icon.button > .icon.loading :before {
887+ animation : labeled- button- icon- loading @loadingIconDuration linear infinite ;
888+ }
889+
890+ @keyframes labeled- button- icon- loading {
891+ from {
892+ transform : translateY (-50% ) rotate (0deg );
893+ }
894+ to {
895+ transform : translateY (-50% ) rotate (360deg );
896+ }
897+ }
898+
882899.ui.labeled.icon.buttons .button > .icon {
883900 border-radius : 0em ;
884901}
Original file line number Diff line number Diff line change @@ -73,16 +73,16 @@ i.icon.loading {
7373 line-height : 1 ;
7474}
7575
76- i .icon.loading :before {
76+ i .icon.loading {
7777 animation : icon- loading @loadingDuration linear infinite ;
7878}
7979
8080@keyframes icon- loading {
8181 from {
82- transform : translateY ( -50 % ) rotate (0deg );
82+ transform : rotate (0deg );
8383 }
8484 to {
85- transform : translateY ( -50 % ) rotate (360deg );
85+ transform : rotate (360deg );
8686 }
8787}
8888
Original file line number Diff line number Diff line change 162162
163163/* Icon */
164164@iconButtonOpacity: 0.9;
165+ @loadingIconDuration: 2s;
165166
166167/* Labeled */
167168@labeledLabelFontSize: @medium;
You can’t perform that action at this time.
0 commit comments