From 342df0eeecce1c1b499c98906c05553bef887bd3 Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Sun, 25 Aug 2024 00:17:28 +0200 Subject: [PATCH] [UI] Added common `disabled` style to buttons. --- platypush/backend/http/webapp/src/style/components.scss | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/platypush/backend/http/webapp/src/style/components.scss b/platypush/backend/http/webapp/src/style/components.scss index f821f62b7a..0b046bdcd9 100644 --- a/platypush/backend/http/webapp/src/style/components.scss +++ b/platypush/backend/http/webapp/src/style/components.scss @@ -18,6 +18,13 @@ button, .btn, .btn-default { .icon { margin-right: .5em; } + + &:disabled, + &[disabled] { + background: none !important; + color: $disabled-fg !important; + cursor: not-allowed; + } } input[type=text], input[type=password] {