I am creating buttons using Bootstrap button generator. Those are fluent design buttons and I noticed that when :disabled
the button still casts shadow on :hover
.
My questions:
- How do I stop the shadow when button is disabled?
- Is it OK to do that? It seems to be good choice to me, but is it somewhere documented for Fluent Design buttons?
I tried:
.btn.disabled:hover { box-shadow: none; }
but it doesn't work.