Hide inactive drawer buttons
Hi everyone,
I'd like to ask if anyone knows / could write some custom .css / .js that would hide inactive drawer buttons and show them when they become active? See the example below:
We'd like to hide the previous / save buttons on this page (and on the next one save, as this is a multipage ARO , etc.)
We'd like to do this across the whole portal not just on RO forms so if you guys come up with anything like this we'd be very grateful! 😊
Regards,
G.
Best Answer
-
Justin_Workman Cireson Support Super IT Monkey ✭✭✭✭✭
There might be a case I'm not thinking about where this might be undesirable, but putting this in your custom.css should work:
button:disabled {display: none}
6
Answers
There might be a case I'm not thinking about where this might be undesirable, but putting this in your custom.css should work:
button:disabled {display: none}
This seemed to have been super easy, it works just fine, thanks a lot Justin! :)