-
Notifications
You must be signed in to change notification settings - Fork 386
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Several ui fixes introduced when migrating to glyphicons
Also ability to run jobs from the executions page
- Loading branch information
Victor Castell
committed
Dec 13, 2018
1 parent
ba80ea5
commit 1afb3df
Showing
8 changed files
with
793 additions
and
828 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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,77 @@ | ||
.glyphicon.fast-right-spinner { | ||
-webkit-animation: glyphicon-spin-r 1s infinite linear; | ||
animation: glyphicon-spin-r 1s infinite linear; | ||
} | ||
|
||
.glyphicon.normal-right-spinner { | ||
-webkit-animation: glyphicon-spin-r 2s infinite linear; | ||
animation: glyphicon-spin-r 2s infinite linear; | ||
} | ||
|
||
.glyphicon.slow-right-spinner { | ||
-webkit-animation: glyphicon-spin-r 3s infinite linear; | ||
animation: glyphicon-spin-r 3s infinite linear; | ||
} | ||
|
||
.glyphicon.fast-left-spinner { | ||
-webkit-animation: glyphicon-spin-l 1s infinite linear; | ||
animation: glyphicon-spin-l 1s infinite linear; | ||
} | ||
|
||
.glyphicon.normal-left-spinner { | ||
-webkit-animation: glyphicon-spin-l 2s infinite linear; | ||
animation: glyphicon-spin-l 2s infinite linear; | ||
} | ||
|
||
.glyphicon.slow-left-spinner { | ||
-webkit-animation: glyphicon-spin-l 3s infinite linear; | ||
animation: glyphicon-spin-l 3s infinite linear; | ||
} | ||
|
||
@-webkit-keyframes glyphicon-spin-r { | ||
0% { | ||
-webkit-transform: rotate(0deg); | ||
transform: rotate(0deg); | ||
} | ||
|
||
100% { | ||
-webkit-transform: rotate(359deg); | ||
transform: rotate(359deg); | ||
} | ||
} | ||
|
||
@keyframes glyphicon-spin-r { | ||
0% { | ||
-webkit-transform: rotate(0deg); | ||
transform: rotate(0deg); | ||
} | ||
|
||
100% { | ||
-webkit-transform: rotate(359deg); | ||
transform: rotate(359deg); | ||
} | ||
} | ||
|
||
@-webkit-keyframes glyphicon-spin-l { | ||
0% { | ||
-webkit-transform: rotate(359deg); | ||
transform: rotate(359deg); | ||
} | ||
|
||
100% { | ||
-webkit-transform: rotate(0deg); | ||
transform: rotate(0deg); | ||
} | ||
} | ||
|
||
@keyframes glyphicon-spin-l { | ||
0% { | ||
-webkit-transform: rotate(359deg); | ||
transform: rotate(359deg); | ||
} | ||
|
||
100% { | ||
-webkit-transform: rotate(0deg); | ||
transform: rotate(0deg); | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.