setup.less: Make visible that the button is disabled

This commit is contained in:
Sukhwinder Dhillon 2022-06-14 16:31:58 +02:00 committed by Johannes Meyer
parent fbd4434b40
commit 62d7ca8e97
1 changed files with 13 additions and 0 deletions

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