add styling for warning buttons

This commit is contained in:
Phillip Thelen
2024-07-29 16:12:22 +02:00
parent 174e2c0078
commit abf5629f80
@@ -174,6 +174,31 @@
}
}
.btn-warning {
background: $yellow-10;
border: 1px solid transparent;
&:hover:not(:disabled):not(.disabled) {
background: $yellow-100;
border: 1px solid transparent;
}
&:focus {
background: $yellow-10;
border-color: $purple-400;
}
&:not(:disabled):not(.disabled):active:focus, &:not(:disabled):not(.disabled).active:focus {
box-shadow: none;
border-color: $purple-400;
}
&:not(:disabled):not(.disabled):active, &:not(:disabled):not(.disabled).active {
background: $yellow-10;
border: 1px solid transparent;
}
}
.btn-success {
background: $green-50;
border: 1px solid transparent;