setup.less: Make visible that the button is disabled

(cherry picked from commit 62d7ca8e97fc4e7aa1e0bcfb56c9a8bc49c83b76)
This commit is contained in:
Sukhwinder Dhillon 2022-06-14 16:31:58 +02:00 committed by Johannes Meyer
parent 2ce1e47404
commit 7be2e554af

View File

@ -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;
}