Skip to content

Commit

Permalink
Several ui fixes introduced when migrating to glyphicons
Browse files Browse the repository at this point in the history
Also ability to run jobs from the executions page
  • Loading branch information
Victor Castell committed Dec 13, 2018
1 parent ba80ea5 commit 1afb3df
Show file tree
Hide file tree
Showing 8 changed files with 793 additions and 828 deletions.
747 changes: 362 additions & 385 deletions dkron/bindata.go

Large diffs are not rendered by default.

77 changes: 77 additions & 0 deletions static/css/glyphicon-spinner.css
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);
}
}
125 changes: 0 additions & 125 deletions static/css/highlight.css

This file was deleted.

Loading

0 comments on commit 1afb3df

Please sign in to comment.