Skip to content

Commit

Permalink
Fixes #12814: The generation status does not show ongoing generation …
Browse files Browse the repository at this point in the history
…anymore
  • Loading branch information
RaphaelGauthier committed Jun 26, 2018
1 parent 953b8fc commit 8bee835
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ class AsyncDeployment extends CometActor with CometListener with Loggable {
"bg-error"
}
case _ =>
"bg-neutral"
"bg-refresh"
}
}

Expand Down
17 changes: 17 additions & 0 deletions rudder-web/src/main/webapp/style/rudder/rudder-menu.css
Original file line number Diff line number Diff line change
Expand Up @@ -855,6 +855,23 @@ a.sidebar-toggle{
-webkit-font-smoothing: antialiased;
content: "\e085";
}
/* REFRESH */
.tw-bs .main-header .navbar .nav li.notifications-menu.bg-refresh, .tw-bs .main-header .navbar .nav li.notifications-menu.bg-refresh #generation-status{
background-color:#abacac;
}
.tw-bs .main-header .navbar .nav li.notifications-menu.bg-refresh:hover #generation-status,.tw-bs .main-header .navbar .nav li.notifications-menu.bg-refresh.open #generation-status{
background-color:#9a9b9b;
}
.tw-bs .main-header .navbar .nav li.notifications-menu.bg-refresh #generation-status > span:after{
display: inline-block;
font: normal normal normal 14px/1 FontAwesome;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
content: "\f021";
-webkit-animation: fa-spin 2s infinite linear;
animation: fa-spin 2s infinite linear;
}
/* ---- */
#generation-status.label-success{
background-color: #9bc832 !important;
Expand Down

0 comments on commit 8bee835

Please sign in to comment.