From 7be2e554af0bb8f84f6bd939352da50536f65844 Mon Sep 17 00:00:00 2001 From: Sukhwinder Dhillon Date: Tue, 14 Jun 2022 16:31:58 +0200 Subject: [PATCH] setup.less: Make visible that the button is disabled (cherry picked from commit 62d7ca8e97fc4e7aa1e0bcfb56c9a8bc49c83b76) --- public/css/icinga/setup.less | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/public/css/icinga/setup.less b/public/css/icinga/setup.less index 7e66d1bce..c848bc7dd 100644 --- a/public/css/icinga/setup.less +++ b/public/css/icinga/setup.less @@ -147,6 +147,19 @@ .button(); } + .control-button[disabled] { + background: none; + cursor: default; + color: @control-disabled-color; + border: 1px solid @control-disabled-color; + + &:hover { + color: @control-disabled-color; + background: none; + border: 1px solid @control-disabled-color; + } + } + button.finish, a.button-like.login { min-width: 25em; }