diff --git a/application/views/scripts/form/setup-requirements.phtml b/application/views/scripts/form/setup-requirements.phtml index 2a1117bc1..2e1e79c1b 100644 --- a/application/views/scripts/form/setup-requirements.phtml +++ b/application/views/scripts/form/setup-requirements.phtml @@ -10,9 +10,9 @@ $requirements = $form->getRequirements(); - title; ?> - description; ?> - description; ?> + message; ?> diff --git a/public/css/icinga/setup.less b/public/css/icinga/setup.less index 07bfdc9ba..da92dc89f 100644 --- a/public/css/icinga/setup.less +++ b/public/css/icinga/setup.less @@ -103,17 +103,33 @@ } #setup table.requirements { + margin-top: -1em; + margin-left: -1em; + border-spacing: 1em; + border-collapse: separate; + td { - &.fulfilled { - background-color: green; + h2 { + margin: 0 1em 0 0; } - &.not-available { - background-color: yellow; - } + &.state { + color: white; + padding: 0.4em; + border-radius: 0.2em; - &.missing { - background-color: red; + &.fulfilled { + background-color: #4fad4b; + } + + &.not-available { + color: black; + background-color: #e8ec70; + } + + &.missing { + background-color: #fd7770; + } } } }