Skip to content

Commit

Permalink
setup.less: Fix outdated color macros
Browse files Browse the repository at this point in the history
refs #5543
  • Loading branch information
Johannes Meyer committed Oct 1, 2015
1 parent df58940 commit 5d20e2c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions public/css/icinga/setup.less
Expand Up @@ -83,7 +83,7 @@
}

&.complete {
background-color: @colorOk ;
background-color: @color-ok;
}

&.visited {
Expand Down Expand Up @@ -190,7 +190,7 @@ form#setup_requirements {
padding: 0.4em;

&.fulfilled {
background-color: @colorOk;
background-color: @color-ok;
}

&.not-available {
Expand All @@ -199,7 +199,7 @@ form#setup_requirements {
}

&.missing {
background-color: @colorCritical;
background-color: @color-critical;
}
}
}
Expand Down Expand Up @@ -275,11 +275,11 @@ form#setup_requirements {
color: white;

&.success {
background-color: @colorOk;
background-color: @color-ok;
}

&.failure {
background-color: @colorCritical;
background-color: @color-critical;
}
}

Expand Down Expand Up @@ -330,7 +330,7 @@ form#setup_requirements {
padding: 0.2em;
margin: -1em -1em 1em;
text-align: center;
color: @colorTextDefault;
color: @text-color;
background-color: #f6fafa;
}

Expand Down

0 comments on commit 5d20e2c

Please sign in to comment.